/* ==========================================================================
   TR–RO Dayanışma Platformu · YÖN: PUSULA — Berrak & Hizmet Odaklı
   Tek style.css · Açık tema · Sivil/hizmet portali estetiği
   ========================================================================== */

/* === Tokens === */
:root {
  /* Renk */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --surface: #F4F6FA;
  --surface-2: #FFFFFF;
  --line: #E2E8F1;
  --ink: #172033;
  --muted: #5B6675;
  --primary: #0E4DA4;
  --primary-700: #0B3C80;
  --accent: #C8102E;
  --gold: #E8B53A;
  --ok: #1E8E5A;
  --primary-soft: #E8F0FB;
  --accent-soft: #FBEAED;
  --ok-soft: #E6F4EC;
  --accent-700: #A50D26;
  --line-strong: #CDD9EA;
  --primary-border: #CFE0F6;
  --ok-border: #BFE3CD;
  --ok-700: #155E3C;

  /* Tipografi */
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-display: clamp(2.1rem, 4.4vw, 3.1rem);
  --fs-h1: clamp(1.85rem, 3.6vw, 2.6rem);
  --fs-h2: clamp(1.45rem, 2.6vw, 2rem);
  --fs-h3: 1.2rem;
  --fs-body-l: 1.125rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;
  --lh-body: 1.7;
  --lh-heading: 1.2;

  /* Spacing (8px ritmi) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Şekil */
  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(20, 40, 80, .05), 0 10px 28px rgba(20, 40, 80, .06);
  --shadow-sm: 0 1px 2px rgba(20, 40, 80, .05);
  --ring: 0 0 0 3px rgba(14, 77, 164, .35);

  /* Layout */
  --maxw: 1200px;
  --pad-x: clamp(20px, 4vw, 48px);
  --header-h: 68px;
}

/* === Base & Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: var(--lh-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid transparent;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -64px;
  z-index: 200;
  background: var(--primary);
  color: var(--white);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  transition: top .2s ease;
}

.skip-link:focus {
  top: var(--s-4);
}

.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;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--s-8);
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--s-6);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-3);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--gold) 60%, var(--accent));
}

.section__head--center .eyebrow {
  justify-content: center;
}

.section__title {
  font-size: var(--fs-h2);
}

.section__intro {
  margin-top: var(--s-3);
  color: var(--muted);
  font-size: var(--fs-body-l);
  text-wrap: pretty;
}

.grid {
  display: grid;
  gap: var(--s-5);
}

/* === Header & Nav === */
.announce {
  background: var(--primary);
  color: var(--white);
  font-size: var(--fs-small);
}

.announce__inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-block: var(--s-2);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.announce__tag {
  background: rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  padding: 2px var(--s-3);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announce a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: var(--header-h);
}

/* Logo / wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  margin-left: auto;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s-3);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.primary-nav a:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--primary);
}

.primary-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.header__utils {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}

/* Dil dropdown */
.lang {
  position: relative;
}

.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  min-height: 44px;
  padding: 0 var(--s-3);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
}

.lang__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.lang[data-open="true"] .lang__toggle svg {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 160px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s-2);
  display: none;
}

.lang[data-open="true"] .lang__menu {
  display: block;
}

.lang__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 40px;
  padding: 0 var(--s-3);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.lang__menu button:hover {
  background: var(--surface);
}

.lang__menu button[aria-current="true"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.lang__hint {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 0 var(--s-5);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-700);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-700);
}

.btn--secondary {
  background: var(--surface-2);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--primary-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: var(--surface);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 40px;
  padding: 0 var(--s-4);
  font-size: 0.875rem;
}

/* === Cards & Components === */
.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-5);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--s-2);
}

.card__text {
  color: var(--muted);
  font-size: var(--fs-body);
}

.card--spaced {
  margin-top: var(--s-5);
}

/* Hizmet tile (e-devlet benzeri) */
.tiles {
  grid-template-columns: repeat(2, 1fr);
}

.tile {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-5);
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.tile:hover {
  text-decoration: none;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
}

.tile__icon svg {
  width: 26px;
  height: 26px;
}

.tile__title {
  font-size: 1.0625rem;
  font-weight: 700;
}

.tile__text {
  font-size: var(--fs-small);
  color: var(--muted);
}

.tile__cta {
  margin-top: auto;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Badge / etiket */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px var(--s-3);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--primary-soft);
  color: var(--primary-700);
}

.badge--accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge--ok {
  background: var(--ok-soft);
  color: var(--ok);
}

.badge--neutral {
  background: var(--surface);
  color: var(--muted);
}

/* Stats band */
.stats {
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  text-align: center;
  padding: var(--s-4);
}

.stat__num {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat__label {
  margin-top: var(--s-1);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--muted);
}

/* Stepper (vatandaşlık) */
.stepper {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--s-5);
  border-top: 3px solid var(--primary);
}

.step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: var(--s-3);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: var(--s-1);
}

.step__text {
  font-size: var(--fs-small);
  color: var(--muted);
}

.step__status {
  margin-top: var(--s-3);
}

/* Duyuru listesi */
.notice-list {
  display: grid;
  gap: var(--s-3);
}

.notice {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--shadow-sm);
}

.notice__date {
  flex-shrink: 0;
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--primary);
  min-width: 92px;
}

.notice__body {
  font-weight: 600;
}

.notice__tag {
  margin-top: var(--s-1);
}

/* Etkinlik kartı */
.event {
  display: flex;
  gap: var(--s-4);
  align-items: stretch;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-4);
  transition: box-shadow .18s ease, transform .18s ease;
}

.event:hover {
  box-shadow: var(--shadow);
}

.event__date {
  flex-shrink: 0;
  width: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: var(--radius);
  color: var(--primary-700);
  padding: var(--s-3);
}

.event__day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.event__mon {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.event__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
  font-size: var(--fs-small);
  color: var(--muted);
}

.event__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.event__meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

/* Ürün kartı */
.product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease;
}

.product:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product__media {
  aspect-ratio: 4 / 3;
  background: var(--surface);
  position: relative;
}

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

.product__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary-soft), var(--white));
}

.product__icon svg {
  width: 56px;
  height: 56px;
}

.product__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-5) var(--s-5);
  flex: 1;
}

.product__cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.product__title {
  font-size: 1.0625rem;
  font-weight: 700;
}

.product__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-3);
}

.product__price {
  font-weight: 800;
  color: var(--ink);
}

.product__price span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

/* Destinasyon kartı */
.destination {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
  transition: box-shadow .18s ease, transform .18s ease;
}

.destination:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.destination__media {
  aspect-ratio: 16 / 10;
  position: relative;
}

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

.destination__flag {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .94);
  border-radius: var(--radius-pill);
  padding: 4px var(--s-3);
  font-size: var(--fs-small);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.destination__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.destination__title {
  font-size: var(--fs-h3);
}

.destination__cta {
  margin-top: auto;
  padding-top: var(--s-3);
}

/* === Hero === */
.hero {
  padding-block: var(--s-8);
  background:
    radial-gradient(900px 380px at 0% -10%, var(--primary-soft), transparent 62%),
    radial-gradient(620px 300px at 100% 0%, var(--accent-soft), transparent 60%),
    var(--bg);
}

.hero__grid {
  display: grid;
  gap: var(--s-7);
  align-items: center;
  grid-template-columns: 1fr;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  margin: var(--s-3) 0;
}

.hero__lead {
  font-size: var(--fs-body-l);
  color: var(--muted);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
  font-size: var(--fs-small);
  color: var(--muted);
}

.avatars {
  display: inline-flex;
}

.avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(2) { background: var(--ok); }
.avatars span:nth-child(3) { background: var(--gold); color: var(--ink); }
.avatars span:nth-child(4) { background: var(--accent); }

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s-3) var(--s-4);
}

.hero__badge-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--ok-soft);
  color: var(--ok);
}

.hero__badge-icon svg {
  width: 22px;
  height: 22px;
}

.hero__badge-text strong {
  display: block;
  font-weight: 800;
}

.hero__badge-text span {
  font-size: var(--fs-small);
  color: var(--muted);
}

/* === Sections (sayfa-özel düzenler) === */
.lead-section {
  background:
    radial-gradient(700px 280px at 100% -20%, var(--primary-soft), transparent 60%),
    var(--bg);
}

/* Breadcrumb */
.breadcrumb {
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
  font-size: var(--fs-small);
  color: var(--muted);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.breadcrumb li + li::before {
  content: "›";
  color: var(--line);
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

/* Page banner */
.page-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__overlay {
  position: relative;
  width: 100%;
  padding: var(--s-6);
  background: linear-gradient(180deg, rgba(11, 32, 64, 0) 0%, rgba(11, 32, 64, .78) 100%);
  color: var(--white);
}

.page-banner__overlay h1 {
  color: var(--white);
  font-size: var(--fs-h1);
}

.page-banner__overlay p {
  margin-top: var(--s-2);
  max-width: 60ch;
  color: rgba(255, 255, 255, .9);
}

.page-banner .eyebrow {
  color: var(--white);
}

/* Filtre chip'leri */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.filter-empty {
  color: var(--muted);
  padding: var(--s-5);
  text-align: center;
}

.event-item.is-hidden,
.product-item.is-hidden,
.filter-empty.is-hidden {
  display: none;
}

/* Üyelik tip kartları */
.plan {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-6);
}

.plan--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.plan__title {
  font-size: var(--fs-h3);
}

.plan__list {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-2);
}

.plan__list li {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  color: var(--muted);
  font-size: var(--fs-body);
}

.plan__list svg {
  width: 18px;
  height: 18px;
  color: var(--ok);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Form */
.form {
  display: grid;
  gap: var(--s-5);
}

.form__row {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.field > label,
.fieldset__legend {
  font-weight: 700;
  font-size: var(--fs-small);
}

.field .req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 100%;
}

.field input,
.field select {
  padding: 0 var(--s-4);
  min-height: 48px;
}

.field textarea {
  padding: var(--s-3) var(--s-4);
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--primary);
}

.field__hint {
  font-size: var(--fs-small);
  color: var(--muted);
}

.field__error {
  font-size: var(--fs-small);
  color: var(--accent);
  font-weight: 600;
  display: none;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--accent);
}

.field.is-invalid .field__error {
  display: block;
}

.fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.radio-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}

.radio-card {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4);
  cursor: pointer;
  background: var(--surface-2);
}

.radio-card:hover {
  border-color: var(--primary);
}

.radio-card input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.radio-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.radio-card__title {
  font-weight: 700;
}

.radio-card__text {
  font-size: var(--fs-small);
  color: var(--muted);
}

.checkbox {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: var(--fs-body);
}

.checkbox input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form__note {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-small);
  color: var(--primary-700);
}

.form__note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
}

.form__success {
  display: none;
  gap: var(--s-3);
  align-items: flex-start;
  background: var(--ok-soft);
  border: 1px solid var(--ok-border);
  border-radius: var(--radius);
  padding: var(--s-5);
  color: var(--ok-700);
}

.form__success.is-visible {
  display: flex;
}

.form__success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ok);
}

/* About */
.about__grid {
  display: grid;
  gap: var(--s-7);
  align-items: center;
  grid-template-columns: 1fr;
}

.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about__mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-5);
}

.about__mini .stat__num {
  font-size: 1.6rem;
}

/* Aile mini bölüm */
.split {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-6);
}

.split__list {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-4);
}

.split__list li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  color: var(--muted);
}

.split__list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA bandı */
.cta-band {
  background: linear-gradient(120deg, var(--primary-700), var(--primary));
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.cta-band h2 {
  color: var(--white);
  font-size: var(--fs-h2);
}

.cta-band p {
  margin-top: var(--s-2);
  color: rgba(255, 255, 255, .9);
  max-width: 52ch;
}

.cta-band .btn--primary {
  background: var(--white);
  color: var(--primary-700);
}

.cta-band .btn--primary:hover {
  background: var(--primary-soft);
}

.section-foot {
  margin-top: var(--s-6);
  text-align: center;
}

/* === Footer === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: var(--s-8) var(--s-6);
}

.footer__grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}

.footer__brand .brand {
  margin-bottom: var(--s-3);
}

.footer__about {
  color: var(--muted);
  font-size: var(--fs-small);
  max-width: 40ch;
}

.footer__col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.footer__col ul {
  display: grid;
  gap: var(--s-2);
}

.footer__col a {
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 600;
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__col-h3--gap {
  margin-top: var(--s-4);
}

.newsletter {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-3);
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  font-family: inherit;
  font-size: var(--fs-small);
}

.newsletter input:focus-visible {
  border-color: var(--primary);
}

.footer__bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--muted);
}

.footer__bottom a {
  font-weight: 600;
}

.footer__compare {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* === Cookie & Utilities === */
.cookie {
  position: fixed;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s-4) var(--s-5);
  max-width: 760px;
  margin-inline: auto;
}

.cookie[hidden] {
  display: none;
}

.cookie__text {
  font-size: var(--fs-small);
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie__actions {
  display: flex;
  gap: var(--s-2);
}

/* === Responsive === */
@media (min-width: 640px) {
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .radio-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stepper { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .split { grid-template-columns: 1.1fr 1fr; }

  /* Adımlayıcı bağlantı çizgisi */
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--s-5) + 20px);
    right: calc(var(--s-4) * -1 - 1px);
    width: var(--s-4);
    height: 2px;
    background: var(--line);
  }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobil header / menü */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + 1px) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-1);
    margin-left: 0;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: var(--s-4) var(--pad-x);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .primary-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    min-height: 48px;
  }

  .header__utils .btn--ghost {
    display: none;
  }
}

@media (max-width: 420px) {
  .event__date { width: 64px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .tile:hover,
  .product:hover,
  .destination:hover {
    transform: none;
  }
}
