/* =========================================================
   KARPAT OKÇULUK — style.css
   Bölümler: Reset · Tokens · Base · Buttons · Header/Nav ·
   Hero · Stats · Sections · Cards · About · Steps · Gallery ·
   Randevu · İletişim · Footer · WA-FAB · Responsive · Motion
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, iframe { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  /* renkler */
  --bg:        #0c0d11;
  --bg-2:      #121419;
  --bg-3:      #181b22;
  --surface:   #1b1f27;
  --line:      #272c36;
  --fg:        #f3f5f8;
  --muted:     #a3acba;
  --muted-2:   #6f7886;

  --accent:    #f5a623;   /* hedef altın/amber */
  --accent-2:  #ffce5a;
  --accent-rgb: 245, 166, 35;   /* accent tonları (rgba için) */
  --on-accent: #20160a;         /* accent üzerine gelen metin rengi */
  --target-red:#e23b32;   /* hedef kırmızısı */
  --wa:        #25d366;   /* whatsapp yeşili */
  --wa-d:      #1da851;

  /* tema-bağımlı yardımcılar */
  --dot-rest: rgba(255, 255, 255, .5);   /* dinlenen dot rengi */
  --ghost-bg: rgba(255, 255, 255, .04);  /* ghost buton zemini */
  --ring-a: #2a2f3a; --ring-b: #353b48; --ring-c: #3c4350;  /* hero hedef halkaları */
  --hero-title-shadow: 0 6px 40px rgba(0, 0, 0, .5);

  /* tipografi */
  --font:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Bebas Neue", var(--font);

  /* ölçek / boşluk */
  --container: 1200px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow:    0 18px 50px -20px rgba(0,0,0,.7);
  --shadow-sm: 0 8px 26px -16px rgba(0,0,0,.8);
  --ring: 0 0 0 3px rgba(var(--accent-rgb), .35);
}

/* ---------- Açık tema (beyaz + mavi tonlar) ---------- */
[data-theme="light"] {
  --bg:        #f4f7fc;
  --bg-2:      #ffffff;
  --bg-3:      #e9f1fb;
  --surface:   #ffffff;
  --line:      #d6e1f0;
  --fg:        #0f1c30;
  --muted:     #51627a;
  --muted-2:   #8493a8;

  --accent:    #2563eb;   /* mavi */
  --accent-2:  #3b82f6;
  --accent-rgb: 37, 99, 235;
  --on-accent: #ffffff;   /* mavi buton üstü beyaz metin */

  --dot-rest: rgba(37, 99, 235, .32);
  --ghost-bg: color-mix(in srgb, var(--fg) 4%, transparent);
  --ring-a: #cdddf2; --ring-b: #bcd2ee; --ring-c: #d9e6f6;
  --hero-title-shadow: 0 6px 30px rgba(37, 99, 235, .14);

  --shadow:    0 18px 50px -22px rgba(37, 70, 130, .28);
  --shadow-sm: 0 8px 26px -16px rgba(37, 70, 130, .22);
  --ring:      0 0 0 3px rgba(var(--accent-rgb), .3);

  color-scheme: light;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container {
  width: min(100% - (var(--pad) * 2), var(--container));
  margin-inline: auto;
}
.accent { color: var(--accent); }
::selection { background: var(--accent); color: var(--on-accent); }

h1, h2, h3 { line-height: 1.08; letter-spacing: .5px; }
.section__title, .hero__title { font-family: var(--display); font-weight: 400; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ---------- Buttons ---------- */
.btn {
  --bh: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8em 1.5em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .2px;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: .55em 1.1em; font-size: .9rem; }
.btn--lg  { padding: .95em 1.8em; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  box-shadow: 0 12px 30px -12px rgba(var(--accent-rgb), .7);
}
.btn--accent:hover { box-shadow: 0 18px 38px -12px rgba(var(--accent-rgb), .85); }

.btn--ghost {
  background: var(--ghost-bg);
  border-color: var(--line);
  color: var(--fg);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.ic-wa { width: 1.25em; height: 1.25em; color: var(--wa); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease, background .35s ease, backdrop-filter .35s ease;
}
/* Aşağı kaydırınca cam efekti (glassmorphism) */
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--line);
}

.nav { display: flex; align-items: center; min-height: 72px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--fg); margin-right: auto; }
/* Logo: şeffaf amblem maske olarak, tema gradyanıyla boyanır */
.brand__mark {
  width: 50px; height: 46px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-mask: url("../assets/Belge.png") center / contain no-repeat;
          mask: url("../assets/Belge.png") center / contain no-repeat;
}
.brand__text {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 1.5px; line-height: .9;
  display: flex; flex-direction: column;
}
.brand__text small { font-family: var(--font); font-size: .56rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links > a:not(.btn) { color: var(--muted); font-weight: 500; font-size: .96rem; position: relative; transition: color .2s ease; }
.nav__links > a:not(.btn):hover { color: var(--fg); }
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav__links > a:not(.btn):hover::after { width: 100%; }

/* Tema değiştirme butonu */
.theme-toggle {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--ghost-bg); border: 1px solid var(--line); border-radius: 12px;
  color: var(--fg); cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s ease, opacity .2s 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); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 92vh, 880px);
  display: flex; align-items: center;
  padding-block: 4rem;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 70% -10%, rgba(var(--accent-rgb), .14), transparent 55%),
    radial-gradient(80% 70% at -10% 110%, rgba(226,59,50,.12), transparent 55%),
    var(--bg);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; display: grid; place-items: center; pointer-events: none; }
.hero__target {
  width: min(135vh, 1100px); height: min(135vh, 1100px);
  opacity: .5;
  transform: translateX(22%);
}
.hero__target .ring { fill: none; stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.ring--1 { stroke: var(--ring-a); }
.ring--2 { stroke: var(--ring-b); }
.ring--3 { stroke: var(--target-red); opacity: .5; }
.ring--4 { stroke: var(--ring-c); }
.ring--5 { stroke: var(--accent); fill: rgba(var(--accent-rgb), .12); }

.hero__inner { position: relative; max-width: 760px; }
.hero__title {
  font-size: clamp(3.1rem, 11vw, 7rem);
  margin-top: 1.1rem; margin-bottom: 1.3rem;
  text-shadow: var(--hero-title-shadow);
}
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--muted); max-width: 56ch; }
.hero__lead strong { color: var(--fg); }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.2rem; }
.hero__badges li { color: var(--muted); font-size: .95rem; font-weight: 500; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; translate: -50% 0;
  width: 26px; height: 42px; border: 2px solid var(--muted-2); border-radius: 999px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; translate: -50% 0; width: 4px; height: 8px; border-radius: 2px; background: var(--accent); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{ opacity: 0; top: 8px; } 50%{ opacity: 1; top: 20px; } }

/* ---------- Stats ---------- */
.stats { background: var(--bg-2); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.6rem, 4vw, 2.6rem) 1rem; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat__num { display: block; font-family: var(--display); font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--accent); line-height: 1; }
.stat__label { display: block; margin-top: .4rem; color: var(--muted); font-size: .85rem; letter-spacing: .5px; text-transform: uppercase; }

/* ---------- İnteraktif dot grid (randevu arka planı, imlece tepki verir) ---------- */
.dotgrid { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.dot {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--dot-rest);
  transform: translate(-50%, -50%);
  will-change: transform, opacity; pointer-events: none;
}

/* ---------- Sections (genel) ---------- */
.section { padding-block: var(--section-y); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section__eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .76rem; margin-bottom: .7rem; }
.section__title { font-size: clamp(2.2rem, 6vw, 3.8rem); margin-bottom: 1rem; }
.section__sub { color: var(--muted); font-size: 1.08rem; }
.section__sub code, .section__sub { word-break: break-word; }
code { background: var(--bg-3); padding: .12em .45em; border-radius: 6px; font-size: .88em; color: var(--accent-2); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); box-shadow: var(--shadow-sm); }
.card__ic {
  width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.6rem;
  border-radius: 14px; margin-bottom: 1rem;
  background: rgba(var(--accent-rgb), .1); border: 1px solid rgba(var(--accent-rgb), .25);
}
.card h3 { font-size: 1.2rem; margin-bottom: .45rem; letter-spacing: .3px; }
.card p { color: var(--muted); font-size: .97rem; }

/* ---------- About (tema-bağımlı, blurlu arka plan görseli) ---------- */
.about {
  position: relative; overflow: hidden;
  background-color: var(--bg-2); border-block: 1px solid var(--line);
}
/* Blurlu görsel katmanı (inset negatif: blur kenarları görünmesin) */
.about::before {
  content: ""; position: absolute; inset: -40px; z-index: 0; pointer-events: none;
  background-image: url("../assets/hakkimizda/hakkimizda_bgb.webp");
  background-size: cover; background-position: center right; background-repeat: no-repeat;
  filter: blur(7px);
}
[data-theme="light"] .about::before { background-image: url("../assets/hakkimizda/hakkimizda_bgw.webp"); }
/* Okunabilirlik perdesi (soldan dolu -> sağda görsel) */
.about::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg,
    var(--bg-2) 0%,
    color-mix(in srgb, var(--bg-2) 80%, transparent) 44%,
    color-mix(in srgb, var(--bg-2) 32%, transparent) 72%,
    transparent 100%);
}
.about__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
.about__text { max-width: 620px; }
.about__text h2 { margin-block: .5rem .9rem; }
.about__text p { color: var(--muted); margin-bottom: 1rem; }
.about__text p strong { color: var(--fg); }

.ticks { display: grid; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--fg); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; display: grid; place-items: center;
  background: rgba(37,211,102,.15); color: var(--wa); border-radius: 50%; font-size: .8rem; font-weight: 700;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative; padding: 2.2rem 1.6rem 1.6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.step__n {
  position: absolute; top: -22px; left: 1.6rem;
  width: 48px; height: 48px; display: grid; place-items: center;
  font-family: var(--display); font-size: 1.7rem; color: var(--on-accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-radius: 14px;
  box-shadow: 0 10px 24px -10px rgba(var(--accent-rgb), .8);
}
.step h3 { font-size: 1.25rem; margin: .4rem 0 .5rem; }
.step p { color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
}
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: border-color .35s ease;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gallery__item:hover { border-color: var(--accent); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Randevu ---------- */
.randevu { position: relative; overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--line); }
.randevu__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.randevu__intro p { color: var(--muted); }
.randevu__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow);
}
/* Cal gömülü takvimi — Cal kendi kartını çizer, konteyner şeffaf kalsın
   (aksi halde kartın yanında konteynerin gölgesi/zemini taşıyor) */
.cal-embed { min-height: 600px; }
.cal-embed[hidden] { display: none; }
.randevu__alt { margin-top: 1.2rem; text-align: center; color: var(--muted); font-size: .95rem; }
.randevu__alt .wa-link { color: var(--wa); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.randevu__alt .wa-link:hover { color: var(--accent-2); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--muted); letter-spacing: .3px; }
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .95rem; color: var(--fg); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }
.field input:user-invalid { border-color: var(--target-red); }
.field textarea { resize: vertical; }
.randevu__form .btn--block { grid-column: 1 / -1; margin-top: .3rem; }
.form__hint { grid-column: 1 / -1; color: var(--muted-2); font-size: .82rem; text-align: center; }

/* ---------- İletişim ---------- */
.iletisim__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.iletisim__info { display: grid; gap: .8rem; align-content: start; }
.info-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; transition: transform .25s ease, border-color .25s ease;
}
.info-row:hover { transform: translateX(4px); border-color: var(--accent); }
.info-row__ic {
  width: 48px; height: 48px; flex: none; display: grid; place-items: center;
  font-size: 1.35rem; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--line);
}
.info-row__ic--wa { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.3); color: var(--wa); }
.info-row__ic--wa svg { width: 26px; height: 26px; }
.info-row span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.info-row strong { font-size: 1.02rem; }
.info-row small { color: var(--muted); font-size: .88rem; }

.iletisim__map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 340px; background: var(--bg-3); }
.iletisim__map iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.25) contrast(1.05) brightness(.92); }
/* Harita yüklenmezse görünen yedek katman (iframe üstüne biner, yüklenince kapanır) */
.iletisim__map-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-content: center; justify-items: center; gap: .8rem; text-align: center; padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb), .1), transparent 60%),
    repeating-linear-gradient(45deg, rgba(var(--accent-rgb), .04) 0 16px, transparent 16px 32px),
    var(--bg-3);
}
.iletisim__map-pin { font-size: 2.4rem; }
.iletisim__map-fallback p { color: var(--muted); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 3rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: space-between; padding-bottom: 2rem; }
.footer__brand .brand__text { font-size: 1.7rem; }
.footer__brand p { color: var(--muted); margin-top: .6rem; font-size: .95rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }
.footer__nav a { color: var(--muted); font-weight: 500; transition: color .2s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 1.3rem; }
.footer__bottom p { color: var(--muted-2); font-size: .85rem; text-align: center; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab svg { width: 32px; height: 32px; }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about__grid, .randevu__grid, .iletisim__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .step { padding-top: 1.6rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* Mobil menü */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.4rem;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow); max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 1rem; }

  .hero { min-height: auto; padding-block: 3.5rem 4.5rem; }
  .hero__target { transform: translateX(10%); opacity: .35; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .randevu__form { grid-template-columns: 1fr; }
  .randevu__form .field--full,
  .randevu__form .field { grid-column: auto; }

  .randevu__form .btn--block { grid-column: auto; }
}

@media (max-width: 460px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: auto; }
  .cards { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
}

/* =========================================================
   Reduced motion — hareket hassasiyetine saygı
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}
