/* =========================================================
   ceceva.net — Haremtepe (Çeçeva) Köyü
   Tasarım sistemi. Harici bağımlılık yok.
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:          #1d1d1f;
  --ink-2:        #6e6e73;
  --ink-3:        #86868b;
  --bg:           #ffffff;
  --bg-2:         #f5f5f7;
  --bg-3:         #ededf0;
  --line:         rgba(0, 0, 0, .10);
  --line-soft:    rgba(0, 0, 0, .06);
  --accent:       #0f7a4d;
  --accent-hi:    #12935c;
  --accent-soft:  #eaf5ef;
  --on-accent:    #ffffff;
  --nav-bg:       rgba(255, 255, 255, .72);
  --nav-solid:    rgba(255, 255, 255, .94);
  --card:         #ffffff;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.05);
  --shadow-lg:    0 4px 12px rgba(0,0,0,.06), 0 24px 60px rgba(0,0,0,.09);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --pad:   clamp(20px, 5vw, 32px);
  --wide:  1240px;
  --text-w: 720px;

  --ease: cubic-bezier(.28, .11, .32, 1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:         #f5f5f7;
    --ink-2:       #a1a1a6;
    --ink-3:       #86868b;
    --bg:          #000000;
    --bg-2:        #0b0b0c;
    --bg-3:        #161617;
    --line:        rgba(255, 255, 255, .14);
    --line-soft:   rgba(255, 255, 255, .07);
    --accent:      #3ad68c;
    --accent-hi:   #5ae2a1;
    --accent-soft: #10241a;
    --on-accent:   #05130c;
    --nav-bg:      rgba(10, 10, 11, .72);
    --nav-solid:   rgba(10, 10, 11, .95);
    --card:        #131314;
    --shadow-sm:   0 1px 2px rgba(0,0,0,.5);
    --shadow-lg:   0 24px 60px rgba(0,0,0,.6);
  }
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.02em; line-height: 1.08; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 50%; top: -80px; transform: translateX(-50%);
  z-index: 200; background: var(--ink); color: var(--bg);
  padding: 12px 20px; border-radius: 0 0 12px 12px; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

/* ---------- 3. Type scale ---------- */
.t-hero    { font-size: clamp(2.6rem, 7.2vw, 5.2rem); letter-spacing: -.035em; line-height: 1.02; }
.t-display { font-size: clamp(2.1rem, 5.2vw, 3.6rem); letter-spacing: -.03em;  line-height: 1.06; }
.t-title   { font-size: clamp(1.55rem, 3.2vw, 2.3rem); letter-spacing: -.025em; line-height: 1.12; }
.t-head    { font-size: clamp(1.2rem, 2.1vw, 1.5rem);  letter-spacing: -.018em; line-height: 1.2; }
.t-lead    { font-size: clamp(1.05rem, 1.9vw, 1.4rem); line-height: 1.45; color: var(--ink-2); font-weight: 400; letter-spacing: -.01em; }
.t-body    { font-size: 1.0625rem; line-height: 1.62; color: var(--ink-2); }
.t-small   { font-size: .875rem; line-height: 1.5; color: var(--ink-3); }
.t-kicker {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
.ink { color: var(--ink); }
.center { text-align: center; }
.measure { max-width: var(--text-w); }
.measure-c { max-width: var(--text-w); margin-inline: auto; }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 860px; }
.section { padding-block: clamp(56px, 9vw, 116px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--gray { background: var(--bg-2); }
.stack > * + * { margin-top: 1.1em; }
.stack-lg > * + * { margin-top: 1.9em; }
.hr { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 5. Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--wide); margin-inline: auto; padding-inline: var(--pad);
  height: 52px; display: flex; align-items: center; gap: 8px;
}
.nav__brand {
  font-size: 1rem; font-weight: 600; letter-spacing: -.02em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  margin-inline-end: auto; white-space: nowrap;
}
.nav__brand .leaf { width: 19px; height: 19px; color: var(--accent); flex: none; }
.nav__brand small { font-weight: 400; color: var(--ink-3); font-size: .82em; letter-spacing: 0; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__links a {
  display: block; padding: 7px 9px; border-radius: 999px;
  font-size: .8125rem; text-decoration: none; color: var(--ink-2);
  transition: color .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); background: var(--line-soft); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav__toggle {
  display: none; width: 40px; height: 40px; margin-inline-end: -8px;
  background: none; border: 0; cursor: pointer; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 17px; height: 1.5px; background: var(--ink);
  border-radius: 2px; position: relative;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav__toggle span::before { top: -5.5px; }
.nav__toggle span::after  { top:  5.5px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(5.5px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-5.5px) rotate(-45deg); }

/* Dar masaüstlerinde menü sığsın diye marka altyazısı gizlenir. */
@media (max-width: 1280px) { .nav .nav__brand small { display: none; } }

@media (max-width: 1160px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 52px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--nav-bg);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 8px var(--pad) 26px;
    max-height: calc(100dvh - 52px); overflow-y: auto;
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a {
    padding: 14px 4px; font-size: 1.4rem; font-weight: 500;
    letter-spacing: -.02em; border-bottom: 1px solid var(--line-soft);
    border-radius: 0; color: var(--ink);
  }
  .nav__links li:last-child a { border-bottom: 0; }
  /* Açık menü fotoğrafın üzerine geldiği için daha opak olmalı. */
  .nav.is-open .nav__links { background: var(--nav-solid); }
}

/* backdrop-filter yoksa saydam menü okunmaz kalmasın. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav, .nav__links { background: var(--bg); }
}

/* ---------- 5b. Dil seçici ---------- */
.lang { position: relative; flex: none; }
.lang > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 9px; border-radius: 999px;
  font-size: .8125rem; color: var(--ink-2);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary:hover { color: var(--ink); background: var(--line-soft); }
.lang > summary svg { width: 15px; height: 15px; flex: none; }
.lang[open] > summary { color: var(--ink); background: var(--line-soft); }
.lang__list {
  position: absolute; top: calc(100% + 9px); inset-inline-end: 0;
  min-width: 168px; list-style: none; z-index: 30;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 6px; display: grid; gap: 2px;
}
.lang__list a {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-size: .875rem; text-decoration: none; color: var(--ink-2); white-space: nowrap;
}
.lang__list a:hover { background: var(--line-soft); color: var(--ink); }
.lang__list a[aria-current] { color: var(--ink); font-weight: 500; background: var(--accent-soft); }

/* ---------- 5c. Canlı hava durumu ---------- */
.nav__wx a { display: inline-flex; align-items: center; gap: 6px; }
.nav__wx a.is-live { color: var(--ink); font-weight: 500; }
/* Masaüstünde rozet sıcaklığa küçülür; mobil menüde etiket de kalır. */
.is-live .wx-chip__text { display: none; }
.wx-chip__icon { display: none; width: 17px; height: 17px; color: var(--accent); }
.wx-chip__icon svg, .wx-hero__icon svg, .wx-panel__icon svg, .wx-days__icon svg {
  width: 100%; height: 100%; display: block;
}
.is-live .wx-chip__icon { display: block; }

/* Mobil menüde rozet tam satır olur: ikon + etiket + sıcaklık. */
@media (max-width: 1160px) {
  .is-live .wx-chip__text { display: inline; }
  .wx-chip__icon { width: 24px; height: 24px; }
  .nav__wx a { display: flex; gap: 10px; }
  .wx-chip__temp { margin-inline-start: auto; color: var(--ink-3); font-weight: 400; }
}

.wx-hero {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 28px; padding: 11px 20px; border-radius: 999px;
  text-decoration: none; color: #fff; text-shadow: none;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  transition: background .2s var(--ease);
}
.wx-hero:hover { background: rgba(255,255,255,.26); }
.wx-hero__icon { width: 30px; height: 30px; flex: none; }
.wx-hero__now { display: flex; align-items: baseline; gap: 9px; }
.wx-hero__now strong { font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; }
.wx-hero__now span { font-size: .9rem; color: rgba(255,255,255,.88); }
.wx-hero__meta {
  display: grid; padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(255,255,255,.24);
}
.wx-hero__meta span { font-size: .85rem; }
.wx-hero__meta small {
  font-size: .68rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .1em;
}
@media (max-width: 560px) {
  .wx-hero { gap: 11px; padding: 9px 15px; margin-top: 22px; }
  .wx-hero__meta { display: none; }
  .wx-hero__icon { width: 25px; height: 25px; }
  .wx-hero__now strong { font-size: 1.25rem; }
}

.wx-panel {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 34px);
}
.wx-panel__load, .wx-panel__err { color: var(--ink-3); font-size: .92rem; }
.wx-panel__now { display: flex; align-items: center; gap: 18px; }
.wx-panel__icon { width: 58px; height: 58px; flex: none; color: var(--accent); }
.wx-panel__temp { font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.wx-panel__desc { color: var(--ink-2); font-size: 1rem; margin-top: 5px; }
.wx-panel__facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.wx-panel__facts dt { font-size: .78rem; color: var(--ink-3); }
.wx-panel__facts dd { margin: 3px 0 0; font-size: 1.05rem; font-weight: 500; }
@media (max-width: 620px) { .wx-panel__facts { grid-template-columns: 1fr 1fr; } }
.wx-panel__ftitle { margin-top: 28px; }
.wx-panel__foot { margin-top: 16px; }
.wx-days { list-style: none; display: grid; gap: 2px; margin-top: 10px; }
.wx-days li {
  display: grid; grid-template-columns: 4.4rem 24px 1fr auto auto;
  align-items: center; gap: 10px; padding: 9px 8px;
  border-radius: 10px; font-size: .92rem;
}
.wx-days li:nth-child(odd) { background: var(--line-soft); }
.wx-days__name { font-weight: 500; text-transform: capitalize; }
.wx-days__icon { width: 22px; height: 22px; color: var(--accent); }
.wx-days__pop { font-size: .8rem; color: var(--accent); text-align: end; }
.wx-days__hi { font-weight: 500; min-width: 2.7rem; text-align: end; }
.wx-days__lo { color: var(--ink-3); min-width: 2.7rem; text-align: end; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 23px; border-radius: 999px; border: 1px solid transparent;
  font-size: .96rem; font-weight: 500; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), opacity .18s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-hi); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--line-soft); }
.btn--glass {
  background: rgba(255,255,255,.16); color: #fff;
  border-color: rgba(255,255,255,.34);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,.26); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link {
  color: var(--accent); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 5px;
}
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.link::after { content: "›"; font-size: 1.15em; line-height: 0; transition: transform .2s var(--ease); }
.link:hover::after { transform: translateX(3px); }

/* ---------- 7. Media ---------- */
.media {
  display: block;
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: var(--bg-3); background-size: cover; background-position: center;
}
.media > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: fadeUp .7s var(--ease) both;
}
.media--3x2 { aspect-ratio: 3 / 2; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--sq { aspect-ratio: 1 / 1; }
@keyframes fadeUp { from { opacity: 0; } to { opacity: 1; } }

figure { margin: 0; }
figcaption { margin-top: 10px; font-size: .82rem; color: var(--ink-3); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(520px, 82svh, 820px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: #14251c; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,.74) 0%, rgba(0,0,0,.34) 38%, rgba(0,0,0,.06) 66%, rgba(0,0,0,.28) 100%);
}
.hero__inner {
  width: 100%; padding-block: clamp(40px, 7vw, 84px);
  text-shadow: 0 1px 24px rgba(0, 0, 0, .35);
}
.hero h1 { color: #fff; text-wrap: balance; }
.hero p { color: rgba(255,255,255,.9); max-width: 640px; }
.hero .t-kicker { color: rgba(255,255,255,.85); }
.hero .btn { text-shadow: none; }
.hero--page { min-height: clamp(380px, 56svh, 560px); }
.hero--short { min-height: clamp(300px, 42svh, 420px); }
.hero--short::after, .hero--page::after {
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.42) 46%, rgba(0,0,0,.16) 100%);
}

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 48px);
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero__stats div strong { display: block; font-size: 1.55rem; font-weight: 600; letter-spacing: -.02em; }
.hero__stats div span { font-size: .8rem; color: rgba(255,255,255,.72); }
@media (max-width: 560px) {
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
}

/* ---------- 9. Cards ---------- */
.card {
  background: var(--card); border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card__body h3 { font-size: 1.16rem; letter-spacing: -.02em; }
.card__body p { font-size: .95rem; color: var(--ink-2); line-height: 1.55; }
.card__body .link { margin-top: auto; padding-top: 6px; font-size: .92rem; }
.card .media { border-radius: 0; }

.tile {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; gap: 8px;
}
.tile h3 { font-size: 1.05rem; }
.tile p { font-size: .93rem; color: var(--ink-2); }
.tile__num {
  font-size: 2.1rem; font-weight: 600; letter-spacing: -.03em;
  color: var(--accent); line-height: 1;
}
.tile__icon { width: 26px; height: 26px; color: var(--accent); margin-bottom: 4px; }

/* İletişim kutusu */
.mailbox {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: clamp(30px, 5vw, 56px) clamp(20px, 4vw, 56px);
  max-width: 780px; margin-inline: auto; text-align: center;
}
.mailbox__addr {
  display: inline-block; margin-top: 8px;
  font-size: clamp(1.4rem, 4.6vw, 2.5rem); font-weight: 600;
  letter-spacing: -.03em; line-height: 1.1;
  color: var(--ink); text-decoration: none; overflow-wrap: anywhere;
  transition: color .2s var(--ease);
}
.mailbox__addr:hover { color: var(--accent); }
.btn.is-done { background: var(--accent-soft); border-color: transparent; color: var(--accent); }

/* Editorial split */
.split { display: grid; gap: clamp(24px, 4vw, 60px); align-items: center; grid-template-columns: 1fr 1fr; }
.split--wide-img { grid-template-columns: 1.15fr 1fr; }
.split--rev .split__media { order: 2; }
@media (max-width: 820px) {
  .split, .split--wide-img { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
}

/* Feature block, full bleed image with caption below */
.feature { border-radius: var(--r-xl); overflow: hidden; position: relative; isolation: isolate; color: #fff; }
.feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.feature__cap {
  position: absolute; inset: auto 0 0 0; padding: clamp(24px, 4vw, 52px);
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,0));
}
.feature__cap h2, .feature__cap h3 { color: #fff; }
.feature__cap p { color: rgba(255,255,255,.86); max-width: 56ch; margin-top: 8px; font-size: .98rem; }
@media (max-width: 620px) { .feature img { aspect-ratio: 4/5; } }

/* ---------- 10. Lists ---------- */
.checks { list-style: none; display: grid; gap: 12px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.checks li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: 3px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7a4d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
@media (prefers-color-scheme: dark) {
  .checks li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233ad68c' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  }
}
.bullets { list-style: none; display: grid; gap: 10px; }
.bullets li { position: relative; padding-inline-start: 18px; color: var(--ink-2); font-size: 1rem; }
.bullets li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* Numbered steps */
.steps { list-style: none; counter-reset: s; display: grid; gap: 14px; }
.steps li {
  counter-increment: s; position: relative; padding: 18px 20px;
  padding-inline-start: 62px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
}
.steps li::before {
  content: counter(s); position: absolute; inset-inline-start: 20px; top: 17px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center; font-size: .82rem; font-weight: 600;
}
.steps li strong { display: block; margin-bottom: 3px; font-weight: 600; letter-spacing: -.01em; }
.steps li span { color: var(--ink-2); font-size: .95rem; }

/* Facts / spec table */
.facts { width: 100%; border-collapse: collapse; font-size: .96rem; }
.facts th, .facts td { text-align: start; padding: 13px 4px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.facts th { font-weight: 500; color: var(--ink-3); width: 42%; }
.facts td { color: var(--ink); }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }

/* Scrolling table wrapper */
.tscroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
  scrollbar-width: thin;
}
.tcap { font-size: .84rem; line-height: 1.5; color: var(--ink-3); margin: 14px 0 0; max-width: 76ch; }
.data { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .92rem; }
.data caption { text-align: start; color: var(--ink-3); font-size: .84rem; padding-bottom: 12px; }
@media (max-width: 700px) {
  .tscroll::after {
    content: "→ tabloyu yana kaydırın";
    display: block; padding-top: 10px; position: sticky; inset-inline-start: 0;
    font-size: .76rem; color: var(--ink-3); width: max-content;
  }
}
.data th, .data td { padding: 11px 12px; border-bottom: 1px solid var(--line-soft); text-align: end; white-space: nowrap; }
.data th:first-child, .data td:first-child { text-align: start; }
.data thead th { color: var(--ink-3); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data tbody tr.is-best td { background: var(--accent-soft); }
.data tbody tr.is-best td:first-child { font-weight: 600; }

/* Climate bar */
.bar { display: block; height: 6px; border-radius: 99px; background: var(--accent); opacity: .85; min-width: 2px; }
.barcell { width: 130px; text-align: start; }
.barcell > span { display: block; }

/* ---------- 11. Accordion (SSS) ---------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0; padding-inline-end: 40px; position: relative;
  font-size: 1.06rem; font-weight: 500; letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; inset-inline-end: 6px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  color: var(--accent);
  transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 40px 22px 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
.faq .faq__a > * + * { margin-top: .9em; }

/* ---------- 12. Gallery ---------- */
.gallery { columns: 3; column-gap: 16px; }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }
.gallery figure { break-inside: avoid; margin-bottom: 16px; }
.gallery button {
  display: block; padding: 0; border: 0; background: none; cursor: zoom-in; width: 100%;
  border-radius: var(--r-md); overflow: hidden;
}
.gallery img { width: 100%; height: auto; transition: transform .5s var(--ease), filter .3s var(--ease); }
.gallery button:hover img { transform: scale(1.035); }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(0,0,0,.94); place-items: center; padding: 20px;
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: transparent; }
.lightbox img { max-width: min(1400px, 96vw); max-height: 82svh; width: auto; border-radius: 10px; }
.lightbox figcaption { color: rgba(255,255,255,.72); text-align: center; margin-top: 14px; font-size: .85rem; }
.lightbox .lb-close {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px;
  border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1.35rem; line-height: 1;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.4rem;
}
.lightbox .lb-prev { left: 14px; }
.lightbox .lb-next { right: 14px; }

/* ---------- 13. Pills / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chips li {
  padding: 6px 14px; border-radius: 999px; font-size: .84rem;
  background: var(--bg-3); color: var(--ink-2); border: 1px solid var(--line-soft);
}
.badge {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}

/* ---------- 14. Callout ---------- */
.note {
  border-inline-start: 3px solid var(--accent);
  background: var(--bg-2); border-radius: var(--r-sm);
  border-start-start-radius: 0; border-end-start-radius: 0;
  padding: 18px 22px; font-size: .97rem; color: var(--ink-2);
}
.note strong { color: var(--ink); }

/* ---------- 15. Breadcrumb ---------- */
.crumb { font-size: .82rem; color: var(--ink-3); display: flex; gap: 7px; flex-wrap: wrap; list-style: none; }
.crumb a { text-decoration: none; color: var(--ink-3); }
.crumb a:hover { color: var(--ink); }
.crumb li + li::before { content: "/"; margin-inline-end: 7px; color: var(--line); }
.hero .crumb, .hero .crumb a { color: rgba(255,255,255,.72); }
.hero .crumb a:hover { color: #fff; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); font-size: .82rem; color: var(--ink-3); }
.footer__grid {
  display: grid; gap: 32px; padding-block: clamp(40px, 6vw, 64px);
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: 0; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer a { text-decoration: none; color: var(--ink-3); }
.footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer__bar {
  border-top: 1px solid var(--line-soft); padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
}

/* ---------- 17. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 18. Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 34px; }
.mt-4 { margin-top: 52px; }
.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;
}

/* ---------- 19. Sağdan sola diller (ar) ---------- */
html[lang="ar"] {
  --font: "SF Arabic", "Geeza Pro", "Noto Naskh Arabic", "Segoe UI",
          Tahoma, "Times New Roman", Arial, sans-serif;
}
html[lang="ar"] body { line-height: 1.75; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
  letter-spacing: 0; line-height: 1.25;
}
html[lang="ar"] .t-hero, html[lang="ar"] .t-display,
html[lang="ar"] .t-title, html[lang="ar"] .t-head { letter-spacing: 0; }
html[lang="ar"] .t-kicker { letter-spacing: 0; }

[dir="rtl"] .link::after { content: "‹"; }
[dir="rtl"] .link:hover::after { transform: translateX(-3px); }
[dir="rtl"] .lightbox .lb-prev { left: auto; right: 14px; }
[dir="rtl"] .lightbox .lb-next { right: auto; left: 14px; }
[dir="rtl"] .lightbox .lb-close { right: auto; left: 16px; }
[dir="rtl"] .skip { transform: translateX(50%); }
[dir="rtl"] .barcell .bar { float: right; }

/* ---------- 20. Alt bilgi notu ---------- */
.footer__note { margin-top: 14px; max-width: 36ch; }
.footer__note a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink-2); }
