/* ============================================================
   Kanat Kadraj — Tandem uçuş foto & video lookbook
   Palet: bg #141013 / surface #1F1A1E / ink #F4ECE6
   accent #E0567A / accent-2 (altın) #F2B705
   Heading: Georgia italic · Body: system-ui 300
   ============================================================ */

:root {
  --bg: #141013;
  --surface: #1F1A1E;
  --surface-2: #2A2229;
  --surface-3: #342A31;
  --ink: #F6EFE9;
  --ink-soft: rgba(246, 239, 233, 0.72);
  --ink-faint: rgba(246, 239, 233, 0.46);
  --accent: #E0567A;
  --accent-2: #F2B705;
  --accent-3: #4FB6A8;            /* Ölüdeniz lagün turkuazı — used sparingly */
  --line: rgba(246, 239, 233, 0.14);
  --line-strong: rgba(246, 239, 233, 0.30);
  --header-h: 74px;
  --maxw: 1320px;
  --pad: clamp(16px, 4vw, 32px);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif: "Fraunces", Georgia, "Times New Roman", "Nimbus Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.2,.7,.2,1);
  --glow-accent: 0 26px 60px -30px rgba(224,86,122,.55);
  --glow-gold: 0 26px 62px -30px rgba(242,183,5,.5);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-size: clamp(15px, 1vw + 12px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}
h1 em, h2 em, h3 em, h4 em { font-style: italic; color: var(--accent); font-weight: 400; }

a { color: var(--ink); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
  display: inline-block;
}
.sec-head.center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  display: inline-block;
}

.section { padding: clamp(56px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

.lead { font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }

.word-safe { word-break: break-word; overflow-wrap: anywhere; }

/* focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 6px; z-index: 2000;
  transition: top 180ms ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --y: 0;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  transform: translateY(var(--y));
  text-align: center; line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 30px -14px rgba(224,86,122,.8); }
.btn-primary:hover, .btn-primary:focus-visible { --y: -2px; background: #ec6a8c; color: #fff; box-shadow: 0 18px 40px -14px rgba(224,86,122,.9); }
.btn-gold { background: var(--accent-2); color: #241a05; box-shadow: 0 12px 30px -14px rgba(242,183,5,.7); }
.btn-gold:hover, .btn-gold:focus-visible { --y: -2px; background: #ffcb2b; color: #241a05; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { --y: -2px; background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  display: flex; align-items: center;
  background: rgba(20, 16, 19, 0.92);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(16, 12, 15, 0.98);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.7);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--serif); font-style: italic; font-size: 1.28rem;
  color: var(--ink); letter-spacing: -0.01em; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px; flex: 0 0 30px;
  color: var(--accent);
}
.brand b { font-style: normal; font-weight: 400; font-family: var(--sans); font-size: .62rem; letter-spacing:.26em; text-transform:uppercase; color: var(--accent-2); align-self: flex-end; padding-bottom: 4px; }

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-desktop a {
  position: relative; font-size: 0.9rem; font-weight: 400;
  color: var(--ink-soft); padding: 6px 2px; letter-spacing: 0.02em;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--accent);
  transition: right 260ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-weight: 500; transition: background 200ms ease, transform 200ms ease;
}
.nav-desktop .nav-cta:hover { background: #ec6a8c; color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  position: relative; z-index: 1100;
  width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: rgba(31,26,30,0.6); border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer (outside header) */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #17131680;
  background: linear-gradient(180deg, #1b1519 0%, #141013 100%);
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 16px) 26px 30px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 18px; font-style: normal; font-family: var(--sans);
  background: var(--accent); color: #fff !important; border: 0; border-radius: 999px;
  text-align: center; font-size: 1rem; font-weight: 500; padding: 15px 20px;
}
.drawer a.drawer-cta:hover { background: #ec6a8c; color: #fff !important; }
.drawer-meta { margin-top: auto; padding-top: 22px; font-size: 0.82rem; color: var(--ink-faint); font-style: normal; }
.drawer-meta a { font-family: var(--sans); font-style: normal; font-size: .9rem; border: 0; padding: 2px 0; display: inline; color: var(--ink-soft); }

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; z-index: 1040;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   Hero — full-bleed single image, corner title, wing clip reveal
   ============================================================ */
.hero {
  position: relative; min-height: 88vh; display: flex;
  align-items: flex-end; overflow: hidden;
  background: #0d0a0c;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: wingReveal 1500ms cubic-bezier(.2,.7,.2,1) 120ms both;
  transform: scale(1.06);
}
@keyframes wingReveal {
  0% {
    clip-path: polygon(42% 46%, 50% 39%, 60% 43%, 67% 50%, 58% 57%, 50% 55%, 43% 59%, 37% 51%);
    opacity: 0; transform: scale(1.16);
  }
  60% { opacity: 1; }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1; transform: scale(1.06);
  }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,19,.55) 0%, rgba(20,16,19,0) 26%, rgba(20,16,19,0) 44%, rgba(13,10,12,.86) 100%),
    linear-gradient(75deg, rgba(20,16,19,.6) 0%, rgba(20,16,19,0) 55%);
}
/* gold film grain overlay */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light; opacity: 0.16;
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%,100% { background-position: 0 0; }
  16% { background-position: -20px 10px; }
  33% { background-position: 15px -18px; }
  50% { background-position: -12px 22px; }
  66% { background-position: 24px 8px; }
  83% { background-position: -18px -14px; }
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 7vw, 92px);
}
.hero-title {
  font-size: clamp(2.3rem, 7.5vw, 6rem);
  line-height: 1.02; max-width: 15ch; margin-bottom: 22px;
  text-shadow: 0 4px 34px rgba(0,0,0,.5);
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(244,236,230,.86); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-corner {
  position: absolute; top: calc(var(--header-h) + 22px); right: var(--pad);
  z-index: 2; text-align: right; font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft);
  border-right: 2px solid var(--accent-2); padding-right: 14px; line-height: 1.7;
}
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px;
  font-size: 0.8rem; color: var(--ink-soft);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip svg { width: 15px; height: 15px; color: var(--accent-2); flex: 0 0 15px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; margin-top: 34px; max-width: 620px;
}
.hero-stats .stat { background: rgba(20,16,19,.72); padding: 18px 16px; text-align: center; }
.hero-stats .num { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--accent-2); display: block; line-height: 1; }
.hero-stats .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-top: 8px; display: block; }

/* ============================================================
   Section heading block
   ============================================================ */
.sec-head { max-width: 60ch; margin-bottom: clamp(30px, 4vw, 54px); }
.sec-head h2 { font-size: clamp(1.8rem, 4.2vw, 3.2rem); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* film-strip divider */
.filmstrip {
  height: 26px; width: 100%;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(244,236,230,.16) 14px 20px),
    var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}

/* ============================================================
   Galeri — full-bleed foto şeridi (masonry / asymmetric)
   ============================================================ */
.galeri { background: #0f0c0e; padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(56px, 9vw, 120px); }
.galeri .container { max-width: 1500px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color 320ms ease, box-shadow 380ms cubic-bezier(.2,.7,.2,1), transform 380ms cubic-bezier(.2,.7,.2,1);
}
.gal-item:hover, .gal-item:focus-within {
  border-color: rgba(242,183,5,.5);
  /* golden-hour glow, matching the sunset light in the photos */
  box-shadow: 0 22px 48px -26px rgba(242,183,5,.5), 0 0 0 1px rgba(242,183,5,.18) inset;
  z-index: 2;
}
/* warm light sweep from the corner on hover */
.gal-item::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, rgba(242,183,5,.18), transparent 55%);
  opacity: 0; transition: opacity 420ms ease;
}
.gal-item:hover::after, .gal-item:focus-within::after { opacity: 1; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  /* --py driven by the parallax script; base scale keeps the tile fully
     covered even while the image is nudged, so tiles never show empty. */
  --py: 0px;
  transform: translate3d(0, var(--py), 0) scale(1.12);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 600ms ease;
  filter: saturate(1.04);
  will-change: transform;
}
.gal-item:hover img, .gal-item:focus-within img {
  transform: translate3d(0, var(--py), 0) scale(1.2);
  filter: saturate(1.12) brightness(1.04);
}
.gal-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 18px 16px; font-size: 0.82rem; color: var(--ink);
  background: linear-gradient(0deg, rgba(13,10,12,.85), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
  font-style: italic; font-family: var(--serif);
}
.gal-item:hover .cap, .gal-item:focus-within .cap { opacity: 1; transform: none; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item.big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   Paketler
   ============================================================ */
.paketler { background: var(--bg); }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pack {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; position: relative;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.pack:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(224,86,122,.5); border-color: var(--line-strong); }
.pack.featured { border-color: rgba(242,183,5,.5); }
.pack-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pack-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.pack:hover .pack-media img { transform: scale(1.05); }
.pack-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent-2); color: #241a05; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.pack-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.pack h3 { font-size: 1.6rem; margin-bottom: 6px; }
.pack .price { font-family: var(--sans); font-weight: 300; font-size: 1.9rem; color: var(--accent-2); letter-spacing: -0.01em; margin: 4px 0 4px; font-variant-numeric: tabular-nums; }
.pack .price small { font-size: 0.82rem; color: var(--ink-faint); font-weight: 300; }
.pack .pack-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; }
.pack ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.pack ul li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); align-items: start; }
.pack ul li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--accent); flex: 0 0 16px; }
.pack ul li.no svg { color: var(--ink-faint); }
.pack ul li.no { color: var(--ink-faint); }
.pack .pack-foot { margin-top: auto; }
.pack .delivery { font-size: 0.78rem; color: var(--ink-faint); margin: 14px 0 0; }
.price-note { margin-top: 22px; font-size: 0.82rem; color: var(--ink-faint); text-align: center; }

/* ============================================================
   Teslimat — vertical timeline / delivery
   ============================================================ */
.teslimat { background: var(--surface); }
.tesl-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.tesl-media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.tesl-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tesl-media .badge48 {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  background: var(--accent); color: #fff; border-radius: 14px; padding: 14px 18px;
  font-family: var(--serif); font-style: italic; line-height: 1;
}
.tesl-media .badge48 b { display: block; font-size: 2.2rem; }
.tesl-media .badge48 span { font-family: var(--sans); font-style: normal; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--accent), var(--accent-2)); }
.timeline li { position: relative; padding: 0 0 26px 58px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .dot {
  position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--accent); display: grid; place-items: center;
  color: var(--accent-2); font-size: 0.72rem; font-weight: 600; font-family: var(--sans);
}
.timeline h4 { font-size: 1.2rem; margin-bottom: 3px; font-style: italic; }
.timeline .when { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-2); display: block; margin-bottom: 6px; }
.timeline p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   Feature / neden biz row
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 260ms ease;
}
.feat:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 22px 46px -28px rgba(242,183,5,.42); }
.feat:hover .ic { color: var(--accent-2); background: rgba(242,183,5,.16); }
.feat .ic { transition: color 240ms ease, background 240ms ease; }
.feat .ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(224,86,122,.12); color: var(--accent); margin-bottom: 16px;
}
.feat .ic svg { width: 24px; height: 24px; }
.feat h3 { font-size: 1.24rem; margin-bottom: 6px; }
.feat p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   Testimonials — editorial grid
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.testi:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 24px 48px -30px rgba(242,183,5,.4); }
.testi:nth-child(2) { transform: translateY(-14px); }
.testi:nth-child(2):hover { transform: translateY(-18px); }
.testi .stars { color: var(--accent-2); letter-spacing: 2px; font-size: 0.9rem; }
.testi blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.06rem; color: var(--ink); line-height: 1.5; }
.testi .who { font-size: 0.82rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.testi .who b { color: var(--ink); font-weight: 500; font-style: normal; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.member img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.02); }
.member .m-body { padding: 20px 22px 24px; }
.member h3 { font-size: 1.3rem; margin-bottom: 2px; }
.member .role { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
.member p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   Manifesto / quote band
   ============================================================ */
.band { background: linear-gradient(120deg, #241318, #17111a); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band blockquote {
  margin: 0 auto; max-width: 22ch; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.2; color: var(--ink);
}
.band blockquote em { color: var(--accent-2); }
.band .attr { text-align: center; margin-top: 22px; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   FAQ (pure CSS accordion)
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px clamp(18px,3vw,26px);
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: 0 0 20px; width: 20px; height: 20px; color: var(--accent); transition: transform 320ms cubic-bezier(.4,0,.2,1); }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0; overflow: hidden;
  padding: 0 clamp(18px, 3vw, 26px);
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 24px; }
.faq-item > .answer p { margin: 0; font-size: 0.94rem; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* Reduced motion: keep hover feedback (color/shadow) but drop the lift transforms */
@media (prefers-reduced-motion: reduce) {
  .feat:hover, .testi:hover, .testi:nth-child(2):hover,
  .pack:hover, .chan:hover, .btn:hover, .nav-desktop .nav-cta:hover,
  .cookie-actions button:hover { transform: none !important; }
  /* keep the golden glow, hold the image zoom steady (no motion) */
  .gal-item img { transition: filter 400ms ease; }
  .gal-item:hover img, .gal-item:focus-within img { transform: translate3d(0, var(--py), 0) scale(1.12); }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-hero { padding: clamp(56px,9vw,110px) 0 clamp(30px,5vw,54px); }
.chan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.chan {
  display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 22px; transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.chan:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(0,0,0,.7); border-color: var(--accent); color: var(--ink); }
.chan .ic { width: 48px; height: 48px; border-radius: 50%; background: rgba(242,183,5,.12); color: var(--accent-2); display: grid; place-items: center; margin-bottom: 14px; }
.chan .ic svg { width: 22px; height: 22px; }
.chan .k { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 5px; }
.chan .v { font-family: var(--serif); font-style: italic; font-size: 1.16rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.chan .sub { font-size: 0.8rem; color: var(--ink-faint); margin-top: 5px; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.hours-grid .day { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.hours-grid .day.today { border-color: var(--accent); background: rgba(224,86,122,.08); }
.hours-grid .day .d { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.hours-grid .day .h { font-family: var(--sans); font-variant-numeric: tabular-nums; font-size: 0.98rem; color: var(--ink); margin-top: 4px; }

/* ============================================================
   Forms
   ============================================================ */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; font-weight: 300; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 13px 15px; width: 100%;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #17131680; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23E0567A' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; grid-column: 1 / -1; }
.field.kvkk label { font-size: 0.86rem; line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0; accent-color: var(--accent);
}
.form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-start; margin-top: 4px; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 620ms cubic-bezier(.2,.7,.2,1), transform 620ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } .hero-media img { animation: none !important; clip-path: none !important; transform: none !important; } .hero::after { animation: none; } }
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero-media img { animation: none; clip-path: none; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 20px 22px; z-index: 9999; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.85rem; margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; min-width: 100px; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-weight: 500; font-size: 0.86rem; border: 1px solid var(--line-strong);
  padding: 10px 16px; transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 180ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: #ec6a8c; transform: translateY(-1px); }
/* Reddet: solid neutral fill for equal visual weight with Kabul (KVKK — no dark pattern) */
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--line-strong); }
.cookie-actions [data-consent="reject"]:hover { background: #40343c; color: var(--ink); border-color: var(--ink-faint); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-color: transparent; }
.cookie-actions [data-consent="settings"]:hover { background: var(--surface-3); color: var(--ink); }
@media (min-width: 768px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* Cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 20px; }
.cookie-modal.is-open { display: grid; }
.cookie-modal .cm-back { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.cookie-modal .cm-card { position: relative; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 18px; padding: 28px; max-width: 460px; width: 100%; z-index: 1; }
.cookie-modal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.cm-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cm-row:last-of-type { border-bottom: 0; }
.cm-row .t { font-weight: 500; color: var(--ink); font-size: 0.96rem; }
.cm-row p { font-size: 0.82rem; margin: 4px 0 0; }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 46px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .slider { position: absolute; inset: 0; background: var(--surface-3); border-radius: 999px; transition: background 200ms ease; }
.switch .slider::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: var(--ink); border-radius: 50%; transition: transform 220ms cubic-bezier(.2,.7,.2,1); }
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: 0.5; }
.cm-actions { margin-top: 22px; display: flex; justify-content: flex-end; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0e0b0d; border-top: 1px solid var(--line); padding: clamp(48px,7vw,80px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 0.88rem; max-width: 34ch; }
.foot-col h5 { font-family: var(--sans); font-style: normal; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot-col a { font-size: 0.9rem; color: var(--ink-soft); }
.foot-col a:hover { color: var(--accent); }
.foot-contact li { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 8px; word-break: break-word; overflow-wrap: anywhere; }
.foot-contact a { color: var(--ink-soft); }
.foot-contact a:hover { color: var(--accent); }
.foot-social { display: flex; gap: 12px; margin-top: 8px; }
.foot-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); }
.foot-social a:hover { border-color: var(--accent); color: var(--accent); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.78rem; color: var(--ink-faint); }
.foot-bottom .legal { display: inline-block; margin: 0 6px; }

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
table th { color: var(--accent-2); font-weight: 500; font-family: var(--sans); background: var(--surface); }
table td { color: var(--ink-soft); }

/* ============================================================
   Doc / legal pages
   ============================================================ */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 40px; }
.doc h3 { font-size: 1.2rem; margin-top: 28px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.page-hero { padding: clamp(48px,8vw,96px) 0 clamp(24px,4vw,40px); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #1a1418, var(--bg)); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.breadcrumb { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 12px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--ink-soft); }

/* thank you / 404 */
.center-stage { min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 60px var(--pad); }
.center-stage .inner { max-width: 560px; }
.center-stage h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.center-stage .big404 { font-family: var(--serif); font-style: italic; font-size: clamp(5rem, 20vw, 12rem); color: var(--accent); line-height: 0.9; margin-bottom: 10px; }

.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; }
.note-item time { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.note-item p { margin: 0; font-size: 0.92rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .tesl-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .pack-grid, .feat-grid, .testi-grid, .team-grid { grid-template-columns: 1fr; }
  .testi:nth-child(2) { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item.big { grid-column: span 2; grid-row: span 2; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-corner { display: none; }
}
@media (max-width: 480px) {
  .feat, .pack-body, .testi, .form-wrap { }
  .feat .ic { width: 40px; height: 40px; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-item.wide, .gal-item.big, .gal-item.tall { grid-column: auto; grid-row: auto; }
  .cookie-actions button { flex: 1 1 100%; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .cookie-modal, .nav-toggle, .hero-media { display: none !important; }
  body { background: #fff; color: #000; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   PREMIUM ELEVATION — "Aerial cinema lookbook" (v2)
   Layered refinements: display type, flight-telemetry detail,
   cinematic framing, richer rhythm & motion. Niche = tandem
   paragliding foto/video over Ölüdeniz & Babadağ.
   ============================================================ */

/* --- Display type: roman Fraunces with italic accents --- */
.scroll-progress { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.brand { font-family: var(--display); }
.hero-title { font-weight: 400; letter-spacing: -0.03em; }
.hero-title em { font-style: italic; }
.sec-head h2 { letter-spacing: -0.025em; }
.page-hero h1 { font-weight: 400; letter-spacing: -0.028em; }

/* Technical labels ride a monospace "telemetry" system for niche cohesion */
.hero-stats .lbl, .timeline .when, .member .role, .chan .k,
.foot-col h5, .note-item time, .breadcrumb,
.hours-grid .day .d, .pack-badge, .stars {
  font-family: var(--mono);
}
.hero-stats .lbl { letter-spacing: 0.16em; }

/* --- Section head: editorial framing --- */
.sec-head { position: relative; }
.sec-head:not(.center) { padding-left: clamp(0px, 1.4vw, 22px); }
.sec-head:not(.center)::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px; opacity: 0;
  transform: scaleY(0); transform-origin: top;
  transition: transform 720ms var(--ease), opacity 400ms ease;
}
@media (max-width: 640px) { .sec-head:not(.center)::before { display: none; } }
.sec-head:not(.center).is-in::before,
.sec-head.reveal.is-in::before { opacity: 1; transform: scaleY(1); }
.sec-head .lead { margin-top: 16px; }

/* --- HERO: harmonised type + telemetry corner --- */
.hero-corner { font-family: var(--mono); border-right-color: var(--accent-2); }
.hero-corner .coord { display: block; color: var(--ink-faint); letter-spacing: 0.14em; font-size: 0.66rem; margin-top: 6px; }
.hero-stats { border-radius: 16px; }
.hero-stats .stat { position: relative; transition: background 300ms ease; }
.hero-stats .stat:hover { background: rgba(31,26,30,.92); }

/* --- GALERİ: cinematic frame numbering + editorial captions --- */
.gal-grid { counter-reset: frame; }
.gal-item { counter-increment: frame; }
.gal-item::before {
  content: counter(frame, decimal-leading-zero);
  position: absolute; top: 11px; left: 12px; z-index: 3;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em;
  color: var(--ink); background: rgba(13,10,12,.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(246,239,233,.16);
  opacity: 0.9; transition: color 300ms ease, border-color 300ms ease, opacity 300ms ease;
  pointer-events: none;
}
.gal-item:hover::before, .gal-item:focus-within::before {
  color: var(--accent-2); border-color: rgba(242,183,5,.55); opacity: 1;
}
.gal-item .cap { padding: 34px 16px 15px; }
.gal-item .cap::before {
  content: ""; display: inline-block; width: 16px; height: 1px;
  background: var(--accent-2); vertical-align: middle; margin-right: 9px;
}

/* --- PAKETLER: featured emphasis + frame corner ticks --- */
.pack { border-radius: 18px; }
.pack::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit; box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 300ms ease;
}
.pack .price { font-variant-numeric: tabular-nums; }
.pack .price small { font-family: var(--mono); letter-spacing: 0.06em; }
.pack.featured { box-shadow: var(--glow-gold); }
@media (min-width: 981px) {
  .pack.featured { transform: translateY(-16px); }
  .pack.featured:hover { transform: translateY(-22px); }
}
.pack.featured .pack-media::after {
  content: ""; position: absolute; inset: 10px; z-index: 1; pointer-events: none;
  border: 1px solid rgba(242,183,5,.4);
  border-radius: 4px;
  -webkit-mask:
    linear-gradient(#000 0 0) top left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) top right / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom right / 22px 22px no-repeat;
          mask:
    linear-gradient(#000 0 0) top left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) top right / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom left / 22px 22px no-repeat,
    linear-gradient(#000 0 0) bottom right / 22px 22px no-repeat;
}
.pack-badge { font-weight: 600; box-shadow: 0 10px 22px -12px rgba(242,183,5,.8); }

/* --- TESLİMAT timeline: active step lighting (separate is-lit class) --- */
.timeline .dot { transition: background 380ms ease, color 380ms ease, box-shadow 380ms ease, border-color 380ms ease; }
.timeline li.is-lit .dot {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(224,86,122,.16);
}
.timeline li.is-lit .when { color: var(--accent); }
.tesl-media .badge48 { box-shadow: var(--glow-accent); }

/* --- NEDEN BİZ: editorial numbered features --- */
.feat-grid { counter-reset: feat; }
.feat { counter-increment: feat; position: relative; }
.feat::before {
  content: counter(feat, decimal-leading-zero);
  position: absolute; top: 22px; right: 22px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--ink-faint);
  transition: color 240ms ease;
}
.feat:hover::before { color: var(--accent-2); }
.feat .ic { border: 1px solid rgba(224,86,122,.2); }

/* --- MANİFESTO band: film-frame sprockets around the quote --- */
.band { position: relative; overflow: hidden; }
.band::before, .band::after {
  content: ""; position: absolute; left: 0; right: 0; height: 14px; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(246,239,233,.12) 18px 26px);
  opacity: 0.7;
}
.band::before { top: 0; }
.band::after { bottom: 0; }
.band blockquote { position: relative; }
.band blockquote em { font-style: italic; }
.band .attr { font-family: var(--mono); }

/* --- REFERANSLAR: editorial quote mark --- */
.testi { position: relative; }
.testi blockquote { position: relative; }
.testi::after {
  content: "”"; position: absolute; top: 14px; right: 22px;
  font-family: var(--display); font-style: italic; font-size: 3.4rem; line-height: 1;
  color: var(--accent); opacity: 0.16; pointer-events: none;
}

/* --- İLETİŞİM channels: framed icons --- */
.chan { position: relative; overflow: hidden; }
.chan .ic { border: 1px solid rgba(242,183,5,.22); transition: background 240ms ease, color 240ms ease, border-color 240ms ease; }
.chan:hover .ic { background: rgba(242,183,5,.2); border-color: rgba(242,183,5,.5); }
.chan .v { transition: color 200ms ease; }
.chan:hover .v { color: var(--accent); }

/* --- FAQ: hover hairline warmth --- */
.faq-item { transition: border-color 260ms ease, background 260ms ease; }
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: rgba(242,183,5,.32); }
.faq-item[open] summary { color: var(--accent-2); }

/* --- Team member premium lift --- */
.member { transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease; }
.member:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--glow-gold); }
.member .m-body { position: relative; }

/* --- Docs / legal: refined measure --- */
.doc h2 { letter-spacing: -0.02em; }
.page-hero { background: linear-gradient(180deg, #1c1519, var(--bg)); }
.page-hero::after {
  content: ""; position: absolute; left: var(--pad); right: var(--pad); bottom: -1px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), transparent 60%);
}
.page-hero { position: relative; }

/* --- Footer: telemetry hairline --- */
.site-footer { position: relative; }
.foot-bottom { align-items: center; }

/* --- Motion polish: gallery reveal stagger --- */
.gal-item.reveal { transition: opacity 700ms var(--ease), transform 700ms var(--ease); transition-delay: calc(var(--i, 0) * 60ms); }

/* --- Reduced motion: neutralise new decorative transforms --- */
@media (prefers-reduced-motion: reduce) {
  .sec-head:not(.center)::before { transform: none; opacity: 1; transition: none; }
  .member:hover { transform: none !important; }
  .pack.featured, .pack.featured:hover { transform: none !important; }
  .band::before, .band::after { display: none; }
}
html.no-js .sec-head:not(.center)::before { opacity: 1; transform: none; }

/* ---- Responsive guards for elevated layout ---- */
@media (max-width: 980px) {
  .pack.featured { transform: none; }
}
@media (max-width: 480px) {
  .testi::after { font-size: 2.6rem; top: 10px; right: 16px; }
  .feat::before { top: 18px; right: 18px; }
  .gal-item::before { font-size: 0.6rem; padding: 2px 6px; }
}
