/* ════════════════════════════════════════════════════════════
   BOSTANCI SPOR KULÜBÜ
   Maximalist · high-contrast · KIRMIZI-BEYAZ
   Red carries the structure. Black is type, rules and shadows only.
   ════════════════════════════════════════════════════════════ */

:root {
  --red:       #B4141A;   /* primary slab */
  --red-deep:  #7E0D12;   /* heavier slab */
  --red-dark:  #5C0A0E;   /* texture floor */
  --red-hot:   #E01B22;   /* accent on white only — too low-contrast on red */

  --white:     #FBFAF7;
  --white-2:   #EFEAE1;
  --white-3:   #D8D0C4;

  --ink:       #0A0708;   /* type, rules, offset shadows */
  --grey:      #857A74;

  --on-red:    rgba(251, 250, 247, .74);
  --line-red:  rgba(251, 250, 247, .26);

  --display: "Anton", "Haettenschweiler", "Impact", sans-serif;
  --mono:    "Space Mono", "SFMono-Regular", Menlo, monospace;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --gut: clamp(1.1rem, 4.5vw, 4.5rem);
  --max: 1440px;

  --e:  cubic-bezier(.22, 1, .36, 1);
  --e2: cubic-bezier(.7, 0, .2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .88;
  text-transform: uppercase;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: .9rem 1.3rem; font-family: var(--mono); font-size: .78rem;
}
.skip:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.sec-red :focus-visible, .hero :focus-visible,
.sec-deep :focus-visible,
.foot :focus-visible { outline-color: var(--white); }

.sec-in {
  width: 100%; max-width: var(--max);
  margin-inline: auto; padding-inline: var(--gut);
}

/* ── Film grain ─────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 4;
  pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Scroll progress ────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0; z-index: 250;
  height: 3px; width: 100%;
  background: var(--white);
  transform: scaleX(0); transform-origin: left;
}

/* ── Custom cursor ──────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 260;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red-hot);
  pointer-events: none; opacity: 0;
  display: grid; place-items: center;
  transition: width .35s var(--e), height .35s var(--e),
              background .35s var(--e), opacity .3s;
  mix-blend-mode: difference;
}
.cursor span {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; color: var(--white);
  opacity: 0; transform: scale(.7);
  transition: opacity .3s var(--e), transform .35s var(--e);
  white-space: nowrap;
}
.cursor.on { opacity: 1; }
.cursor.big { width: 82px; height: 82px; background: var(--ink); mix-blend-mode: normal; }
.cursor.big span { opacity: 1; transform: none; }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ── Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(38px);
  transition: opacity .85s var(--e), transform .85s var(--e);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .mq-t, .hero-badge svg, .blob, .scroll-hint i, .next-vs { animation: none !important; }
  .cursor { display: none; }
  .mega-l > span { transform: none !important; opacity: 1 !important; }
}

/* ══════════════════════  HEADER  ══════════════════════ */
/* Sits over red slabs throughout, so its type stays white and the
   pinned state is red glass rather than white. */

.head {
  position: fixed; inset: 0 0 auto; z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .45s var(--e), border-color .45s var(--e);
  color: var(--white);
}
.head.pin {
  background: rgba(126, 13, 18, .88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line-red);
}

.head-in {
  max-width: var(--max); margin-inline: auto;
  padding: .85rem var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand { display: flex; align-items: center; gap: .75rem; }
.brand-crest { color: var(--white); width: 28px; flex: none; transition: transform .5s var(--e); }
.brand:hover .brand-crest { transform: rotate(-6deg) scale(1.08); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--display); font-size: 1.3rem; font-weight: 400; letter-spacing: .015em; }
.brand-txt i {
  font-family: var(--mono); font-style: normal; font-size: .53rem;
  letter-spacing: .19em; color: var(--on-red); margin-top: .3rem;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  position: relative; overflow: hidden;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; padding-block: .35rem;
}
.nav a[data-i]::before {
  content: attr(data-i);
  position: absolute; top: -2px; left: -.85rem;
  font-size: .5rem; color: var(--white); opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s var(--e), transform .35s var(--e);
}
.nav a[data-i]:hover::before { opacity: .7; transform: none; }
.nav a[data-i]::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--white);
  transform: translateX(-101%);
  transition: transform .5s var(--e);
}
.nav a[data-i]:hover::after { transform: none; }

.nav-cta {
  border: 1.5px solid var(--white); padding: .62rem 1.1rem !important;
  position: relative; z-index: 1;
}
.nav-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--white); transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--e);
}
.nav-cta { transition: color .4s var(--e); }
.nav-cta:hover { color: var(--red-deep); }
.nav-cta:hover::after { transform: none; }

.burger {
  display: none; width: 42px; height: 42px; border: 0; background: none;
  cursor: pointer; padding: 0; position: relative;
}
.burger span {
  position: absolute; left: 9px; width: 24px; height: 2px;
  background: var(--white);
  transition: transform .45s var(--e), opacity .3s var(--e);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; width: 15px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

/* ══════════════════════  HERO  ══════════════════════ */

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: 8.5rem 3rem;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* White halftone over red — the inverse of the old scheme */
.halftone {
  position: absolute; inset: -10%;
  background-image: radial-gradient(var(--white) 1.5px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: .3;
  mask-image: radial-gradient(ellipse 70% 65% at 78% 40%, #000 10%, transparent 66%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 78% 40%, #000 10%, transparent 66%);
}

.stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    100deg,
    transparent 0 62px,
    rgba(251, 250, 247, .1) 62px 124px
  );
  mask-image: linear-gradient(180deg, transparent, #000 55%, #000);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 55%, #000);
}

.blob { position: absolute; border-radius: 50%; filter: blur(95px); }
.blob-1 {
  width: 46vw; aspect-ratio: 1; right: -8vw; top: -6vw;
  background: var(--red-dark); opacity: .62;
  animation: drift1 22s var(--e) infinite alternate;
}
.blob-2 {
  width: 32vw; aspect-ratio: 1; left: -10vw; bottom: -12vw;
  background: var(--red-hot); opacity: .34;
  animation: drift2 27s var(--e) infinite alternate;
}
@keyframes drift1 { to { transform: translate(-7vw, 8vw) scale(1.22); } }
@keyframes drift2 { to { transform: translate(9vw, -6vw) scale(1.16); } }

.hero-in {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; width: 100%;
  padding-inline: var(--gut);
}

.hero-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }

.tag {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .17em; padding: .4rem .75rem;
  border: 1px solid var(--line-red);
  color: var(--white);
}
.tag-red { background: var(--white); border-color: var(--white); color: var(--red-deep); }

/* ── Mega headline ──────────────────────────────────── */
.mega {
  font-size: clamp(4rem, 17.5vw, 17rem);
  line-height: .82; letter-spacing: -.022em;
  margin: 0 0 2.6rem;
}
.mega-l { display: block; overflow: hidden; }
.mega-l > span {
  display: inline-block;
  transform: translateY(105%); opacity: 0;
  transition: transform 1s var(--e), opacity .7s var(--e);
}
.mega-l.up > span { transform: none; opacity: 1; }
.mega-l:nth-child(2) > span { transition-delay: .1s; }
.mega-l:nth-child(3) > span { transition-delay: .2s; }

.mega-out > span {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  paint-order: stroke fill;
}
@supports not (-webkit-text-stroke: 1px red) {
  .mega-out > span { color: var(--white); opacity: .55; }
}

.hero-foot {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.2rem; align-items: end;
  border-top: 2px solid var(--line-red); padding-top: 1.8rem;
}

.hero-lede {
  margin: 0; max-width: 40ch;
  font-size: clamp(.95rem, 1.25vw, 1.1rem);
  color: var(--on-red);
}

.hero-cta { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── Buttons: sweep fill ────────────────────────────── */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; padding: 1.1rem 2rem;
  border: 2px solid currentColor; white-space: nowrap;
  transition: color .4s var(--e), border-color .4s var(--e);
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  transform: translateY(101%);
  transition: transform .5s var(--e2);
}
.btn:hover::before { transform: none; }

/* Solid white on red */
.btn-red { background: var(--white); border-color: var(--white); color: var(--red-deep); }
.btn-red::before { background: var(--ink); }
.btn-red:hover { color: var(--white); border-color: var(--ink); }

/* Outlined, inherits the slab's text colour */
.btn-line { background: none; color: currentColor; }
.btn-line::before { background: var(--white); }
.btn-line:hover { color: var(--red-deep); border-color: var(--white); }

/* ── Rotating badge ─────────────────────────────────── */
.hero-badge {
  position: absolute; right: var(--gut); top: -6.5rem;
  width: 150px; aspect-ratio: 1;
  color: var(--white);
  display: grid; place-items: center;
}
.hero-badge svg { position: absolute; inset: 0; animation: spin 26s linear infinite; opacity: .8; }
.hero-badge b {
  font-family: var(--display); font-size: 2.4rem; line-height: .8;
  color: var(--white); display: flex; flex-direction: column; align-items: center;
}
.hero-badge i {
  font-family: var(--mono); font-style: normal; font-size: .5rem;
  letter-spacing: .19em; color: var(--on-red); margin-top: .35rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 1100px) { .hero-badge { display: none; } }

.scroll-hint {
  position: absolute; left: var(--gut); bottom: 2.6rem; z-index: 2;
  display: none; align-items: center; gap: .65rem;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .24em;
  color: var(--on-red);
}
.scroll-hint i {
  width: 38px; height: 2px; background: var(--white);
  transform-origin: left; animation: sweep 2.2s var(--e) infinite;
}
@keyframes sweep { 0%,100% { transform: scaleX(.15); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }
@media (min-width: 1024px) { .scroll-hint { display: flex; } }

/* ══════════════════════  MARQUEES  ══════════════════════ */

.mq { overflow: hidden; padding-block: .95rem; }
.mq-white {
  background: var(--white); color: var(--ink);
  border-block: 2px solid var(--ink);
}
.mq-deep {
  background: var(--red-deep); color: var(--white);
  border-block: 2px solid var(--red-dark);
}
.mq-t {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content; animation: slide 30s linear infinite;
}
.mq-rev .mq-t { animation-name: slide-rev; animation-duration: 38s; }
.mq-t span {
  font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.4rem);
  white-space: nowrap; text-transform: uppercase; letter-spacing: .01em;
}
.mq-t em { font-style: normal; font-size: .8rem; }
.mq-white .mq-t em { color: var(--red); }
.mq-deep .mq-t em { color: var(--white); opacity: .6; }
.hollow { color: transparent; -webkit-text-stroke: 1.4px var(--white); }
@supports not (-webkit-text-stroke: 1px red) { .hollow { color: var(--white); opacity: .6; } }
@keyframes slide { to { transform: translateX(-50%); } }
@keyframes slide-rev { from { transform: translateX(-50%); } to { transform: none; } }

/* ══════════════════════  SECTION SHELL  ══════════════════════ */

.sec { position: relative; padding-block: clamp(4.5rem, 10vw, 9rem); }

.sec-white { background: var(--white); color: var(--ink); }
.sec-red   { background: var(--red); color: var(--white); }
.sec-deep  { background: var(--red-deep); color: var(--white); }

.sec-head {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 4rem);
}
.sec-num {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  flex: none; padding: .3rem .55rem;
  background: var(--red); color: var(--white);
}
.sec-red .sec-num, .sec-deep .sec-num { background: var(--white); color: var(--red-deep); }
.sec-t { font-size: clamp(2.2rem, 6.5vw, 5.5rem); flex: none; letter-spacing: -.012em; }
.sec-rule { flex: 1; height: 2px; background: currentColor; opacity: .2; }
.sec-note {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .17em;
  opacity: .6; flex: none;
}
@media (max-width: 700px) { .sec-note { display: none; } }

.sec-lede {
  max-width: 48ch; margin: -1rem 0 clamp(2.2rem, 4.5vw, 3.5rem);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: .85;
}

/* ══════════════════════  01 KULÜP  ══════════════════════ */

.split {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}

.prose p {
  margin: 0 0 1.4rem;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  max-width: 58ch; color: #241C1D;
}
.prose b { font-weight: 600; color: var(--red); }
.drop::first-letter {
  float: left;
  font-family: var(--display); font-size: 4.6em; line-height: .74;
  color: var(--red); padding: .04em .1em 0 0;
}
.sign {
  font-family: var(--mono); font-size: .72rem !important; letter-spacing: .17em;
  color: var(--grey) !important; margin-top: 2.2rem !important;
}

.figures { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.fig {
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  border: 2px solid var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px;
  transition: transform .5s var(--e), box-shadow .5s var(--e),
              background .4s var(--e), color .4s var(--e), border-color .4s var(--e);
  will-change: transform;
}
.fig-n {
  font-family: var(--display); font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: .85; font-variant-numeric: tabular-nums;
}
.fig-l {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .17em;
  margin-top: .6rem; color: var(--grey);
  transition: color .4s var(--e), opacity .4s var(--e);
}

/* Outlined by default → floods red on hover, black shadow does the lifting */
.fig:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}
.fig:hover .fig-l { color: var(--white); opacity: .8; }

.fig-red { background: var(--red); border-color: var(--red); color: var(--white); }
.fig-red .fig-l { color: var(--white); opacity: .8; }
.fig-red:hover { background: var(--red-deep); border-color: var(--red-deep); }

.fig-solid { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }
.fig-solid .fig-l { color: var(--white); opacity: .75; }
.fig-solid:hover { background: var(--red); border-color: var(--red); }

/* ══════════════════════  02 TAKIMLAR  (red slab)  ══════════ */

.squads { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--line-red); }
.squad {
  position: relative; isolation: isolate;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1.2fr) 1fr 1fr .8fr 2rem;
  gap: clamp(.7rem, 2vw, 2rem);
  align-items: center;
  padding-block: clamp(1.4rem, 2.8vw, 2.1rem);
  border-bottom: 2px solid var(--line-red);
  overflow: hidden;
  transition: color .45s var(--e);
}
/* Inversion: white wipes up, type flips to red */
.squad::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--white); transform: translateY(101%);
  transition: transform .55s var(--e2);
}
@media (hover: hover) and (min-width: 900px) {
  .squad:hover { color: var(--red-deep); }
  .squad:hover::before { transform: none; }
  .squad:hover .squad-k { color: var(--red); }
  .squad:hover .squad-c, .squad:hover .squad-p, .squad:hover .squad-d { color: var(--grey); }
  .squad:hover .squad-x { opacity: 1; transform: none; color: var(--red); }
  .squad:hover h3 { transform: translateX(.7rem); }
}
.squad-k {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; color: var(--white);
  transition: color .4s var(--e);
}
.squad h3 { font-size: clamp(1.5rem, 3.4vw, 2.6rem); transition: transform .5s var(--e); }
.squad-c, .squad-p, .squad-d {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em;
  color: var(--on-red); transition: color .4s var(--e);
}
.squad-x {
  font-size: 1.5rem; text-align: right;
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .4s var(--e), transform .5s var(--e), color .4s var(--e);
}

/* ══════════════════════  03 FİKSTÜR  ══════════════════════ */

.next {
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--red);
  padding: clamp(1.4rem, 3.4vw, 2.8rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.next-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}
.next .tag-red { background: var(--red); border-color: var(--red); color: var(--white); }
.next-cd {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; color: var(--red);
  font-variant-numeric: tabular-nums;
}
.next-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(.8rem, 3vw, 2.5rem); align-items: center; }
.next-side { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.next-away { text-align: right; align-items: flex-end; }
.next-club { font-family: var(--display); font-size: clamp(1.5rem, 4.2vw, 3.4rem); line-height: .9; text-transform: uppercase; }
.next-role { font-family: var(--mono); font-size: .58rem; letter-spacing: .17em; color: var(--grey); }
.next-vs {
  font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--white); background: var(--red);
  width: 2.6em; height: 2.6em; border-radius: 50%;
  display: grid; place-items: center;
  animation: pulse 2.8s var(--e) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180,20,26,.5); }
  50%      { box-shadow: 0 0 0 16px rgba(180,20,26,0); }
}
.next-foot {
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 4vw, 3rem);
  margin-top: clamp(1.6rem, 3.5vw, 2.4rem); padding-top: 1.3rem;
  border-top: 2px solid var(--white-3);
}
.next-foot span {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .06em;
  display: flex; flex-direction: column; gap: .3rem;
}
.next-foot b { font-size: .55rem; letter-spacing: .19em; color: var(--red); }

/* ── Form strip ─────────────────────────────────────── */
.form-strip {
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: clamp(2rem, 4vw, 3rem); flex-wrap: wrap;
}
.form-lbl, .form-note {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .19em; color: var(--grey);
}
.form-lbl { margin-right: .5rem; }
.form-note { margin-left: .6rem; }
.form-strip b {
  width: 2.3rem; height: 2.3rem; display: grid; place-items: center;
  font-family: var(--display); font-size: 1.05rem;
  border: 2px solid var(--ink);
  transition: transform .35s var(--e); cursor: default;
}
.form-strip b:hover { transform: translateY(-5px) rotate(-4deg); }
.form-strip b.w { background: var(--red); border-color: var(--red); color: var(--white); }
.form-strip b.d { background: var(--white-3); border-color: var(--white-3); color: var(--ink); }
.form-strip b.l { background: none; color: var(--grey); border-color: var(--white-3); }

/* ── Results table ──────────────────────────────────── */
.res { width: 100%; border-collapse: collapse; }
.res th {
  text-align: left;
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .19em; color: var(--grey);
  padding: 0 1rem .9rem 0;
  border-bottom: 2px solid var(--ink);
}
.res th:last-child, .res td:last-child { text-align: right; padding-right: 0; }
.res td {
  padding: 1.05rem 1rem 1.05rem 0;
  border-bottom: 1px solid var(--white-3);
  font-family: var(--mono); font-size: .78rem; letter-spacing: .04em;
  vertical-align: middle;
  transition: background .35s var(--e), color .35s var(--e);
}
.res tbody tr:hover td { background: var(--red); color: var(--white); }
.res tbody tr:hover td:first-child { color: var(--on-red); }
.res tbody tr:hover .sc { color: var(--white); }
.res tbody tr:hover td i { color: var(--white); }
.res td:first-child { color: var(--grey); white-space: nowrap; }
.res td i { color: var(--red); font-style: normal; padding-inline: .3rem; transition: color .35s var(--e); }

.sc {
  font-family: var(--display); font-size: 1.25rem;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  padding-left: .9rem; border-left: 4px solid transparent;
  transition: color .35s var(--e);
}
.sc.w { border-left-color: var(--red); }
.sc.d { border-left-color: var(--white-3); }
.sc.l { border-left-color: transparent; color: var(--grey); }
.res tbody tr:hover .sc.w { border-left-color: var(--white); }

/* ══════════════════════  04 SAHA  (deep red slab)  ══════════ */

.grid4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3px; background: var(--white); border: 3px solid var(--white);
}
.cell {
  position: relative; margin: 0; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--red-dark);
  display: flex; align-items: flex-end;
}
.cell::before {
  content: ""; position: absolute; inset: 0;
  transition: transform 1.2s var(--e), filter .6s var(--e);
}
.cell:hover::before { transform: scale(1.09); filter: saturate(1.35) brightness(1.18); }

/* Generated textures — no image dependencies */
.cell-a::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(251,250,247,.1) 30px 60px),
    radial-gradient(circle at 50% 55%, rgba(224,27,34,.55), transparent 58%),
    var(--red-dark);
}
.cell-b::before {
  background:
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(251,250,247,.16) 11px 13px),
    linear-gradient(170deg, var(--red), var(--red-dark));
}
.cell-c::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(251,250,247,.18), transparent 40%),
    radial-gradient(circle at 68% 66%, rgba(224,27,34,.6), transparent 48%),
    var(--red-dark);
}
.cell-d::before {
  background:
    repeating-linear-gradient(45deg, var(--red-dark) 0 15px, #7A1116 15px 30px),
    var(--red-dark);
}
.cell figcaption {
  position: relative; z-index: 2; width: 100%;
  padding: 1.1rem;
  background: linear-gradient(0deg, rgba(46, 5, 7, .95), transparent);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .1em;
  color: var(--white);
  display: flex; gap: .6rem; align-items: baseline;
}
.cell figcaption b { color: var(--white); opacity: .7; font-size: .58rem; letter-spacing: .17em; flex: none; }

/* ══════════════════════  KAPANIŞ  (red slab)  ══════════════ */

.quote {
  background: var(--white); color: var(--ink);
  padding-block: clamp(4.5rem, 11vw, 9rem);
  text-align: center;
  border-top: 3px solid var(--ink);
}
.quote-t {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(2.4rem, 9vw, 7rem);
  line-height: .88; letter-spacing: -.02em; margin: 0;
}
.quote-t em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--red); }
@supports not (-webkit-text-stroke: 1px red) { .quote-t em { color: var(--red); } }
.quote-a {
  margin: 2rem 0 0;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .22em;
  color: var(--grey); transition-delay: .12s;
}

/* ══════════════════════  FOOTER  (deepest red)  ════════════ */

.foot { background: var(--red-deep); color: var(--white); overflow: hidden; }

.foot-mega {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(4rem, 21vw, 20rem);
  line-height: .78; letter-spacing: -.03em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px rgba(251, 250, 247, .3);
  padding-top: clamp(2rem, 5vw, 4rem);
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px red) { .foot-mega { color: rgba(251,250,247,.18); } }

.foot-in {
  max-width: var(--max); margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gut);
  display: grid; grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  border-top: 2px solid var(--line-red);
}
.foot-crest { color: var(--white); width: 34px; display: block; margin-bottom: 1.1rem; }
.foot-b p { margin: 0; font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; line-height: 1.1; }
.foot-c h4 {
  font-family: var(--mono); font-size: .56rem; font-weight: 700;
  letter-spacing: .21em; margin-bottom: .9rem; color: var(--on-red);
}
.foot-c p { margin: 0; font-size: .85rem; line-height: 1.9; }
.foot-c a { position: relative; }
.foot-c a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--e);
}
.foot-c a:hover::after { transform: none; }

.foot-base {
  max-width: var(--max); margin-inline: auto;
  padding: 1.5rem var(--gut);
  border-top: 2px solid var(--line-red);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.foot-base p {
  margin: 0; font-family: var(--mono); font-size: .58rem;
  letter-spacing: .14em; color: var(--on-red);
}

/* ══════════════════════  RESPONSIVE  ══════════════════════ */

@media (max-width: 1180px) {
  .squad { grid-template-columns: 5rem minmax(0, 1.2fr) 1fr 1fr; }
  .squad-d, .squad-x { display: none; }
}

@media (max-width: 1080px) {
  .foot-in { grid-template-columns: repeat(2, 1fr); }
  .foot-b { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 auto; z-index: -1;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--red-deep);
    padding: 5.5rem var(--gut) 2.5rem;
    border-bottom: 3px solid var(--white);
    transform: translateY(-101%);
    transition: transform .6s var(--e2);
  }
  .nav.open { transform: none; }
  .nav a {
    font-family: var(--display); font-size: 2rem; letter-spacing: .01em;
    padding-block: .85rem; border-bottom: 1px solid var(--line-red);
  }
  .nav a[data-i]::before { left: auto; right: 0; top: 50%; transform: translateY(-50%); opacity: .55; font-size: .6rem; }
  .nav a[data-i]:hover::before { transform: translateY(-50%); }
  .nav a[data-i]::after { display: none; }
  .nav-cta { border: 0 !important; padding: 1.1rem 0 !important; color: var(--white); }
  .nav-cta::after { display: none; }
  .nav-cta:hover { color: var(--white); }
  .burger { display: block; }
  .head.nav-open { background: var(--red-deep); }

  .squad { grid-template-columns: 4.5rem 1fr; gap: .5rem 1rem; }
  .squad-c, .squad-p { grid-column: 2; }
}

@media (max-width: 720px) {
  .hero-foot { grid-template-columns: 1fr; align-items: start; }
  .next-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .next-away { text-align: left; align-items: flex-start; }
  .next-mid { display: none; }
  .res th:nth-child(3), .res td:nth-child(3) { display: none; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .fig:hover { box-shadow: 6px 6px 0 var(--ink); }
  .next { box-shadow: 8px 8px 0 var(--red); }
}

@media (max-width: 480px) {
  .grid4 { grid-template-columns: 1fr; }
  .cell { aspect-ratio: 16 / 10; }
  .foot-in { grid-template-columns: 1fr; }
  .figures { grid-template-columns: 1fr; }
  .fig { min-height: 0; }
}

/* ══════════════════════  PRINT  ══════════════════════ */

@media print {
  .noise, .head, .hero-bg, .mq, .cursor, .progress, .scroll-hint, .foot-mega { display: none; }
  body, .hero, .sec-red, .sec-deep, .quote, .foot { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1; transform: none; }
  .mega-l > span { transform: none; opacity: 1; }
}
