/* ============================================
   Istanbul Yufka - Ana Stil Dosyasi
   Brosur estetigi: krem zemin, kirmizi vurgu
   ============================================ */

/* --- Özel marka fontu (Intro Rust G Base 2 Line) --- */
/* Dosyalar /public/fonts/ klasoründe olmali. Yoksa Rye fontuna duser. */
@font-face {
  font-family: 'Intro Rust Base';
  src: url('/fonts/Intro%20Rust%20G%20Base%202%20Line.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* unicode-range KALDIRILDI - Intro Rust'in Turkce buyuk harfleri (Ş, Ğ, İ vb.)
     icerdigini farkettik. Tarayici font'un icermedigi karakterler icin
     otomatik fallback yapacak. */
}

@font-face {
  font-family: 'TT Interphases Mono';
  src: url('/fonts/TT%20Interphases%20Mono.woff2') format('woff2'),
       url('/fonts/TT%20Interphases%20Mono.woff') format('woff'),
       url('/fonts/TT%20Interphases%20Mono.otf') format('opentype'),
       url('/fonts/TT%20Interphases%20Mono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Degiskenler --- */
:root {
  /* Renkler - brosurlerdeki tonlar */
  --color-cream: #fbf3df;
  --color-cream-deep: #f5ead0;
  --color-cream-dark: #e9d9b3;
  --color-paper: #fdf8ec;

  --color-red: #b91c2c;
  --color-red-deep: #8c1426;
  --color-red-bright: #d63d4a;
  --color-red-soft: rgba(185, 28, 44, 0.08);

  --color-ink: #2a1810;
  --color-ink-soft: #5b4838;
  --color-ink-mute: #8a7660;

  --color-line: rgba(42, 24, 16, 0.12);
  --color-line-strong: rgba(42, 24, 16, 0.25);

  /* Tipografi */
  --font-display: 'Intro Rust Base', 'Rye', 'Georgia', serif;
  --font-brand: 'Intro Rust Base', 'Rye', 'Georgia', serif; /* ISTANBUL YUFKA logosu (alias) */
  --font-script: 'Caveat Brush', 'Brush Script MT', cursive;
  --font-typewriter: 'Special Elite', 'Courier New', monospace;
  --font-body: 'TT Interphases Mono', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Boyutlar */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(42, 24, 16, 0.08);
  --shadow: 0 4px 14px rgba(42, 24, 16, 0.10);
  --shadow-lg: 0 10px 32px rgba(42, 24, 16, 0.14);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-cream);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle paper texture */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(185, 28, 44, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(140, 20, 38, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
}
body.intro-active { overflow: hidden; }

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

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

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-red-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-red);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 var(--space-4) 0;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-family: var(--font-typewriter); letter-spacing: 0.04em; }

/* Sayfa basligi h1'leri de buyuk harf (Turkce locale aware) */
.page-header h1 { text-transform: uppercase; }
/* Hero h1 zaten manuel olarak buyuk yazili, etkisini iptal et ki .hero__title-script normal kalsin */
.hero h1 { text-transform: none; }
.hero h1 > span:not(.hero__title-script) { text-transform: uppercase; }

p { margin: 0 0 var(--space-4) 0; color: var(--color-ink-soft); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container--narrow { max-width: var(--container-narrow); }

/* --- Top bar --- */
.topbar {
  background: var(--color-ink);
  color: var(--color-cream);
  font-size: 0.85rem;
  padding: var(--space-2) 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.topbar a { color: var(--color-cream); }
.topbar a:hover { color: var(--color-red-bright); }
.topbar__contact { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: var(--space-2); }

/* --- Header / Nav --- */
.site-header {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--color-red);
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand__name-sub {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.7rem;
  color: var(--color-ink-mute);
  letter-spacing: 0.18em;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--color-red);
  transition: width var(--transition);
}
.nav__menu a:hover,
.nav__menu a.active {
  color: var(--color-red);
}
.nav__menu a:hover::after,
.nav__menu a.active::after {
  width: 100%;
}

.nav__lang {
  display: inline-flex;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.nav__lang button {
  background: transparent;
  border: 0;
  padding: var(--space-1) var(--space-3);
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  letter-spacing: 0.1em;
  transition: all var(--transition);
}
.nav__lang button.active {
  background: var(--color-red);
  color: var(--color-cream);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--space-2);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--color-red);
  color: var(--color-cream) !important;
  border: 2px solid var(--color-red);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn:hover {
  background: var(--color-red-deep);
  border-color: var(--color-red-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--color-red) !important;
  border-color: var(--color-red);
}
.btn--outline:hover {
  background: var(--color-red);
  color: var(--color-cream) !important;
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink) !important;
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--color-red-soft);
  color: var(--color-red) !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero h1 {
  margin-bottom: var(--space-4);
  font-family: var(--font-brand);
}
.hero__title-script {
  display: block;
  font-family: var(--font-script);
  font-size: 0.5em;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

.hero__title-brand {
  font-family: var(--font-brand);
  white-space: nowrap;
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-6);
  max-width: 50ch;
}
.hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Sections --- */
.section {
  padding: var(--space-8) 0;
}
.section--cream {
  background: var(--color-cream-deep);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.section--paper {
  background: var(--color-paper);
}

.section__head {
  text-align: center;
  margin-bottom: var(--space-7);
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--color-red);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-red);
  border-radius: 100px;
  margin-bottom: var(--space-4);
}
.section__lede {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Features grid --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.feature {
  background: var(--color-paper);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature__icon {
  width: 48px;
  height: 48px;
  color: var(--color-red);
  margin-bottom: var(--space-4);
}
.feature h3 {
  font-family: var(--font-body);
  color: var(--color-ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
}
.feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   Belgeler / Sertifikalar bandi — kurumsal guven
   ============================================ */
.section--certs {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-paper) 100%);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}
.certs-head {
  text-align: center;
  margin-bottom: var(--space-6);
}
.certs-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: var(--space-3);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-paper);
  border: 1px solid rgba(185, 28, 44, 0.25);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cert-badge::before {
  /* Ince ic kontur — eski belge / damga hissi */
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(185, 28, 44, 0.18);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}
.cert-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 28, 44, 0.55);
  box-shadow: 0 8px 20px rgba(185, 28, 44, 0.08);
}
.cert-badge__seal {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  color: var(--color-red);
}
.cert-badge__seal svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cert-badge__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cert-badge__label {
  font-family: var(--font-typewriter);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.65;
}
.cert-badge__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-red);
  letter-spacing: 0.02em;
  line-height: 1.25;
  /* Intro Rust kucuk harfli Turkce karakterlerde sorun yarattigi icin
     her zaman uppercase yaz/uppercase'e cevir. */
  text-transform: uppercase;
}
.certs-note {
  text-align: center;
  margin-top: var(--space-5);
  font-family: var(--font-script, var(--font-body));
  font-size: 1rem;
  color: var(--color-ink);
  opacity: 0.7;
}

@media (max-width: 600px) {
  .cert-badge { padding: var(--space-3); gap: var(--space-2); }
  .cert-badge__seal { width: 48px; height: 48px; }
  .cert-badge__name { font-size: 0.85rem; }
}

/* --- Price list (Brosur estetigi) --- */
.price-list {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  position: relative;
}

.price-tabs {
  display: inline-flex;
  background: var(--color-cream-dark);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: var(--space-6);
  border: 1px solid var(--color-line);
}
.price-tab {
  background: transparent;
  border: 0;
  padding: var(--space-3) var(--space-6);
  border-radius: 100px;
  font-family: var(--font-typewriter);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  transition: all var(--transition);
}
.price-tab.active {
  background: var(--color-red);
  color: var(--color-cream);
  box-shadow: var(--shadow-sm);
}

.price-rows {
  display: flex;
  flex-direction: column;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: var(--space-4) 0;
  gap: var(--space-4);
  position: relative;
}
.price-row + .price-row {
  border-top: 1px dashed var(--color-line-strong);
}
.price-row__name {
  font-size: 1.25rem;
  color: var(--color-ink);
  font-weight: 500;
}
.price-row__name small {
  display: block;
  color: var(--color-ink-mute);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 2px;
}
.price-row__price {
  font-family: var(--font-display);
  color: var(--color-red);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price-row__price small {
  font-family: var(--font-typewriter);
  color: var(--color-ink-mute);
  font-size: 0.7rem;
  margin-left: 4px;
  letter-spacing: 0.1em;
}

.price-list__note {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-line);
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-ink-mute);
  letter-spacing: 0.02em;
}
.price-list__note p { margin: 0 0 var(--space-1) 0; color: inherit; font-size: inherit; }
.price-list__note strong { color: var(--color-ink); }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
}
.about__lede {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-red);
  line-height: 1.3;
  margin-bottom: var(--space-5);
}
.about__visual {
  position: relative;
  aspect-ratio: 1;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-7);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-info__item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: 1px dashed var(--color-line);
}
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__item-icon {
  width: 24px;
  height: 24px;
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-info__item-label {
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  color: var(--color-ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}
.contact-info__item-value {
  font-size: 1.05rem;
  color: var(--color-ink);
  font-weight: 500;
}
.contact-info__item-value a { color: inherit; }
.contact-info__item-value a:hover { color: var(--color-red); }

.contact-form {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: var(--space-4); }
.form-field label {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-cream);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red-soft);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field--honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-required {
  color: var(--color-red);
  font-weight: 700;
  margin-left: 2px;
}
.form-required-note {
  font-family: var(--font-typewriter);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-ink-soft);
  margin: var(--space-2) 0 var(--space-4);
}

/* Sürükleyerek doğrulama puzzle'ı — "Hamuru oklavayla açın" */
.slide-captcha {
  background: var(--color-cream);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}
.slide-captcha__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-typewriter);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-3);
}
.slide-captcha__label svg {
  width: 20px;
  height: 20px;
  color: var(--color-red);
  flex-shrink: 0;
}
.slide-captcha__track {
  position: relative;
  height: 54px;
  background: var(--color-paper);
  border: 1px solid var(--color-line-strong);
  border-radius: 27px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.slide-captcha__track:focus-visible {
  outline: 3px solid var(--color-red-soft);
  outline-offset: 2px;
}
.slide-captcha__track--active {
  border-color: var(--color-red);
}

/* Hamur — handle hareket ettikçe genişler */
.slide-captcha__dough {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 0;
  background: linear-gradient(90deg,
    rgba(245, 234, 208, 0.7) 0%,
    rgba(185, 28, 44, 0.18) 100%);
  border-radius: 23px;
  pointer-events: none;
  transition: width 80ms linear;
}

/* Oklava tutamacı */
.slide-captcha__handle {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 64px;
  height: 46px;
  background: var(--color-red);
  border-radius: 23px;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  box-shadow: 0 4px 10px rgba(42, 24, 16, 0.18);
  transform: translateX(0);
  z-index: 2;
  touch-action: none;
}
.slide-captcha__handle:hover { background: var(--color-red-deep); }
.slide-captcha__handle:active { cursor: grabbing; }
.slide-captcha__handle svg { width: 36px; height: 24px; }
.slide-captcha__handle--snap {
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Soldan sağa hareket eden ok ipucu */
.slide-captcha__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  color: var(--color-red);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  opacity: 0.45;
  pointer-events: none;
  animation: slide-arrow-pulse 1.6s ease-in-out infinite;
}
@keyframes slide-arrow-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.6; }
}

/* Doğrulandı durumu */
.slide-captcha__done {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-cream);
  background: var(--color-red);
  border-radius: 26px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  z-index: 3;
  animation: slide-done-fade 320ms ease-out;
}
.slide-captcha__done svg { width: 20px; height: 20px; }
@keyframes slide-done-fade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.slide-captcha--done .slide-captcha__handle { display: none; }
.slide-captcha--done .slide-captcha__dough { display: none; }

@media (max-width: 480px) {
  .slide-captcha__track { height: 50px; }
  .slide-captcha__handle { width: 58px; height: 42px; top: 4px; }
  .slide-captcha__arrow { font-size: 0.95rem; }
}

.form-status {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
  display: none;
}
.form-status--success {
  background: rgba(34, 139, 34, 0.1);
  color: #1d5d1d;
  border: 1px solid rgba(34, 139, 34, 0.3);
  display: block;
}
.form-status--error {
  background: rgba(185, 28, 44, 0.08);
  color: var(--color-red-deep);
  border: 1px solid rgba(185, 28, 44, 0.25);
  display: block;
}

/* --- Map --- */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-6);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- Footer (kompakt) --- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: var(--space-5) 0 var(--space-3);
  margin-top: var(--space-7);
  font-size: 0.85rem;
}
.site-footer a { color: var(--color-cream); }
.site-footer a:hover { color: var(--color-red-bright); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
  align-items: start;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

.footer__brand-name {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: var(--space-1);
}
.footer__brand-tagline {
  font-family: var(--font-script);
  color: var(--color-red-bright);
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
  display: block;
}
.footer__brand p {
  color: rgba(251, 243, 223, 0.7);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.site-footer h4 {
  font-family: var(--font-display);
  color: var(--color-red-bright);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2) 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.15;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 0 0 4px 0;
  padding: 0;
  font-size: 0.82rem;
  list-style: none;
}

.footer__bottom {
  border-top: 1px solid rgba(251, 243, 223, 0.12);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.72rem;
  color: rgba(251, 243, 223, 0.55);
}
.footer__credit {
  flex: 1 0 100%;
  text-align: center;
  font-size: 0.68rem;
  margin-top: var(--space-2);
  color: rgba(251, 243, 223, 0.32);
  letter-spacing: 0.03em;
}
.footer__credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(251, 243, 223, 0.25);
  transition: color var(--transition), border-color var(--transition);
}
.footer__credit a:hover {
  color: rgba(251, 243, 223, 0.7);
  border-bottom-color: rgba(251, 243, 223, 0.5);
}

/* --- Page header --- */
.page-header {
  padding: var(--space-8) 0 var(--space-6);
  text-align: center;
  background: var(--color-cream-deep);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  margin-bottom: var(--space-3);
}
.page-header__sub {
  font-family: var(--font-script);
  color: var(--color-ink);
  font-size: 1.5rem;
  margin: 0;
}

/* ============================================
   INTRO ANIMASYONU - Sayfa yüklenince yufka açılma sahnesi
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  /* 2.6 saniyelik tüm animasyon süresi, son 400ms fade-out */
  animation: intro-end 2.6s ease forwards;
}
.intro.intro--skip { animation: intro-skip 280ms ease forwards; }

@keyframes intro-end {
  0%, 88% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes intro-skip {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.intro__stage {
  position: relative;
  width: min(420px, 75vw);
  aspect-ratio: 1;
}

/* Tahta zemin (un dökülmüş) */
.intro__board {
  position: absolute;
  inset: 12% 5% auto 5%;
  height: 65%;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(212, 184, 138, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #c4a87a 0%, #b8985f 100%);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(42, 24, 16, 0.18);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: intro-board 600ms 0ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes intro-board {
  to { transform: scaleY(1); }
}

/* Un izleri */
.intro__flour {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro__flour-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(253, 248, 236, 0.95);
  border-radius: 50%;
  opacity: 0;
  animation: intro-flour 1.6s ease-out forwards;
}
.intro__flour-dot:nth-child(1) { left: 20%; top: 35%; animation-delay: 1.4s; }
.intro__flour-dot:nth-child(2) { left: 75%; top: 30%; animation-delay: 1.45s; width: 4px; height: 4px; }
.intro__flour-dot:nth-child(3) { left: 28%; top: 60%; animation-delay: 1.5s; width: 5px; height: 5px; }
.intro__flour-dot:nth-child(4) { left: 80%; top: 65%; animation-delay: 1.55s; }
.intro__flour-dot:nth-child(5) { left: 15%; top: 70%; animation-delay: 1.6s; width: 3px; height: 3px; }
.intro__flour-dot:nth-child(6) { left: 85%; top: 45%; animation-delay: 1.65s; }
.intro__flour-dot:nth-child(7) { left: 35%; top: 80%; animation-delay: 1.7s; width: 4px; height: 4px; }
.intro__flour-dot:nth-child(8) { left: 65%; top: 80%; animation-delay: 1.75s; }
@keyframes intro-flour {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4); }
  40% { opacity: 1; transform: translate(var(--x, 0), var(--y, -30px)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x, 0), calc(var(--y, -30px) - 10px)) scale(0.6); }
}
.intro__flour-dot:nth-child(1) { --x: -20px; --y: -30px; }
.intro__flour-dot:nth-child(2) { --x: 20px; --y: -28px; }
.intro__flour-dot:nth-child(3) { --x: -12px; --y: -34px; }
.intro__flour-dot:nth-child(4) { --x: 18px; --y: -32px; }
.intro__flour-dot:nth-child(5) { --x: -16px; --y: -26px; }
.intro__flour-dot:nth-child(6) { --x: 14px; --y: -30px; }
.intro__flour-dot:nth-child(7) { --x: -10px; --y: -25px; }
.intro__flour-dot:nth-child(8) { --x: 12px; --y: -28px; }

/* Hamur — başlangıçta küçük top, sonra açılmış yufka */
.intro__dough {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #fdf8ec 0%, #f5ead0 70%, #e9d9b3 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 4px 12px rgba(42, 24, 16, 0.15);
  opacity: 0;
  animation: intro-dough-appear 200ms 700ms ease forwards,
             intro-dough-roll 1100ms 1100ms cubic-bezier(0.5, 0, 0.3, 1) forwards;
}
@keyframes intro-dough-appear {
  to { opacity: 1; }
}
@keyframes intro-dough-roll {
  0% {
    width: 28px; height: 28px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 78%; height: 78%;
    border-radius: 50% 48% 52% 50% / 49% 51% 50% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Oklava — yukarıdan iner, sağa sola açar (hero ile aynı görsel) */
.intro__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 20px;
  transform: translate(-50%, -200%) rotate(0deg);
  opacity: 0;
  animation: intro-pin-drop 500ms 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             intro-pin-roll 900ms 1300ms cubic-bezier(0.4, 0, 0.6, 1) forwards;
  filter: drop-shadow(0 6px 10px rgba(80, 50, 24, 0.35));
}
.intro__pin::before {
  /* Tek bütün ahşap silindir — uçtan uca aynı renk (hero ile birebir aynı) */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      #6e4a26 0%,
      #b48355 18%,
      #d6a574 42%,
      #b88259 65%,
      #7d5530 92%,
      #5c3d1f 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 205, 0.45),
    inset 0 -1px 0 rgba(40, 22, 8, 0.45);
}
.intro__pin::after {
  /* Tutamak geçiş halkaları — iki ince koyu dikey çizgi */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(60, 36, 14, 0.55), rgba(60, 36, 14, 0.55)) 34px 50% / 2px 80% no-repeat,
    linear-gradient(90deg, rgba(60, 36, 14, 0.55), rgba(60, 36, 14, 0.55)) calc(100% - 34px) 50% / 2px 80% no-repeat;
}
@keyframes intro-pin-drop {
  0% { opacity: 0; transform: translate(-50%, -200%) rotate(0deg); }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
}
@keyframes intro-pin-roll {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  25% { transform: translate(-58%, -50%) rotate(-3deg); }
  50% { transform: translate(-50%, -50%) rotate(0deg); }
  75% { transform: translate(-42%, -50%) rotate(3deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Marka yazısı sonda belirir */
.intro__brand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2%;
  text-align: center;
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--color-red);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(20px);
  animation: intro-brand 600ms 1900ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro__brand small {
  display: block;
  font-family: var(--font-script);
  font-size: 0.65em;
  color: var(--color-ink);
  margin-top: 4px;
  letter-spacing: 0;
}
@keyframes intro-brand {
  to { opacity: 1; transform: translateY(0); }
}

.intro__skip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  color: var(--color-ink-mute);
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: intro-brand 400ms 1000ms ease forwards;
}
.intro__skip:hover { color: var(--color-red); }

@media (prefers-reduced-motion: reduce) {
  .intro {
    animation: intro-skip 200ms ease forwards;
  }
  .intro__board, .intro__dough, .intro__pin, .intro__brand, .intro__flour-dot {
    animation: none !important;
    opacity: 1;
  }
}

/* ============================================
   HERO yufka açma sahnesi — KUŞBAKIŞI görünüm
   Yuvarlak ahşap tezgah + ortada hamur + üzerinden geçen oklava
   ============================================ */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  user-select: none;
}

/* Yuvarlak ahşap kesme tahtası (yukarıdan bakış) */
.hero-scene__board {
  position: absolute;
  inset: 6%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, #c4a87a 0%, #b8985f 60%, #9a7d4c 100%);
  border-radius: 50%;
  box-shadow:
    0 18px 45px rgba(42, 24, 16, 0.28),
    inset 0 -8px 20px rgba(80, 50, 20, 0.25),
    inset 0 4px 14px rgba(255, 240, 200, 0.18);
}
/* Ahşap halka çizgileri (kesme tahtası dokusu) */
.hero-scene__board::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0, transparent 60%, rgba(110, 84, 48, 0.18) 60%, rgba(110, 84, 48, 0.18) 61%, transparent 62%),
    radial-gradient(circle at 50% 50%, transparent 0, transparent 75%, rgba(110, 84, 48, 0.14) 75%, rgba(110, 84, 48, 0.14) 76%, transparent 77%),
    radial-gradient(circle at 50% 50%, transparent 0, transparent 88%, rgba(110, 84, 48, 0.12) 88%, rgba(110, 84, 48, 0.12) 89%, transparent 90%);
  pointer-events: none;
}
/* Çapraz odun damarı */
.hero-scene__board::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(112deg,
    transparent 0, transparent 26px,
    rgba(110, 84, 48, 0.09) 26px, rgba(110, 84, 48, 0.09) 28px);
  opacity: 0.7;
  pointer-events: none;
}

/* Hamur — düz daire, ortada (yukarıdan bakış) */
.hero-scene__dough {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56%;
  height: 56%;
  background:
    radial-gradient(circle at 40% 35%, #fdf8ec 0%, #f5ead0 55%, #e9d9b3 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 6px 14px rgba(42, 24, 16, 0.18),
    inset -10px -10px 25px rgba(180, 140, 80, 0.22),
    inset 8px 8px 18px rgba(255, 248, 232, 0.4);
  transform-origin: center;
  animation: hero-dough-spread 4s ease-in-out infinite;
}
/* Hamur yüzeyinde un izleri */
.hero-scene__dough::before {
  content: '';
  position: absolute;
  left: 28%;
  top: 22%;
  width: 18%;
  height: 12%;
  background: rgba(253, 248, 236, 0.65);
  border-radius: 50%;
  filter: blur(4px);
}
.hero-scene__dough::after {
  content: '';
  position: absolute;
  right: 22%;
  bottom: 28%;
  width: 22%;
  height: 14%;
  background: rgba(253, 248, 236, 0.55);
  border-radius: 50%;
  filter: blur(5px);
}
@keyframes hero-dough-spread {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); }
  50%      { transform: translate(-50%, -50%) scale(1.06); }
}

/* Oklava — yatay, hamurun üstünden yukarı-aşağı geçer (kuşbakışı) */
.hero-scene__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  height: 20px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hero-pin-passes 4s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 6px 10px rgba(80, 50, 24, 0.35));
}
.hero-scene__pin::before {
  /* Tek bütün ahşap silindir — uçtan uca aynı renk */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      #6e4a26 0%,
      #b48355 18%,
      #d6a574 42%,
      #b88259 65%,
      #7d5530 92%,
      #5c3d1f 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 235, 205, 0.45),
    inset 0 -1px 0 rgba(40, 22, 8, 0.45);
}
.hero-scene__pin::after {
  /* Tutamak geçiş halkaları — sadece iki ince koyu çizgi, tek parça hissi verir */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(60, 36, 14, 0.55), rgba(60, 36, 14, 0.55)) 34px 50% / 2px 80% no-repeat,
    linear-gradient(90deg, rgba(60, 36, 14, 0.55), rgba(60, 36, 14, 0.55)) calc(100% - 34px) 50% / 2px 80% no-repeat;
}
/* Oklava yukarı-aşağı geçer (hamur açma yönü) */
@keyframes hero-pin-passes {
  0%   { transform: translate(-50%, calc(-50% - 70px)); }
  50%  { transform: translate(-50%, calc(-50% + 70px)); }
  100% { transform: translate(-50%, calc(-50% - 70px)); }
}

/* Un parçacıkları — tahta üzerinde serpilmiş, parıldıyor */
.hero-scene__flour {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
}
.hero-scene__flake {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(253, 248, 236, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(253, 248, 236, 0.7);
  animation: hero-flake-twinkle 3s ease-in-out infinite;
}
.hero-scene__flake--1 { left: 18%; top: 25%; animation-delay: 0s; }
.hero-scene__flake--2 { left: 78%; top: 20%; animation-delay: 0.5s; width: 4px; height: 4px; }
.hero-scene__flake--3 { left: 22%; top: 75%; animation-delay: 1s; width: 5px; height: 5px; }
.hero-scene__flake--4 { left: 80%; top: 78%; animation-delay: 1.5s; }
.hero-scene__flake--5 { left: 14%; top: 50%; animation-delay: 2s; width: 4px; height: 4px; }
.hero-scene__flake--6 { left: 85%; top: 50%; animation-delay: 2.5s; width: 3px; height: 3px; }

@keyframes hero-flake-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.6); }
  50%      { opacity: 0.95; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene__dough,
  .hero-scene__pin,
  .hero-scene__flake {
    animation: none;
  }
}

@media (max-width: 600px) {
  .hero-scene { max-width: 340px; }
}

/* --- Animations --- */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.yufka-rotate {
  animation: spin-slow 60s linear infinite;
  transform-origin: center;
}
.yufka-float {
  animation: float 4s ease-in-out infinite;
}
.fade-up {
  opacity: 0;
  animation: fade-up 700ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-up--delay-1 { animation-delay: 100ms; }
.fade-up--delay-2 { animation-delay: 200ms; }
.fade-up--delay-3 { animation-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .yufka-rotate { animation: none; }
}

/* --- Responsive: Tablet (<= 880px) --- */
@media (max-width: 880px) {
  body { font-size: 16px; }

  .container { padding: 0 var(--space-4); }

  .topbar { font-size: 0.78rem; padding: var(--space-2) 0; }
  .topbar__inner { gap: var(--space-2); justify-content: center; }
  .topbar__contact { gap: var(--space-3); justify-content: center; }

  .hero {
    padding: var(--space-7) 0 var(--space-6);
  }
  .hero__grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hero__visual {
    max-width: 380px;
    margin: 0 auto;
    order: -1; /* gorseli once goster */
  }
  .hero__cta { justify-content: flex-start; }

  .section { padding: var(--space-7) 0; }
  .section__head { margin-bottom: var(--space-5); }

  .features { gap: var(--space-3); }
  .feature { padding: var(--space-5); }

  .price-list { padding: var(--space-5); }
  .price-tabs { width: 100%; display: flex; }
  .price-tab { flex: 1; padding: var(--space-3) var(--space-2); }
  .price-row__name { font-size: 1.05rem; }
  .price-row__price { font-size: 1.3rem; }

  .nav { padding: var(--space-3) 0; gap: var(--space-3); position: relative; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.15rem; }
  .brand__name-sub { font-size: 0.65rem; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-paper);
    flex-direction: column;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow);
    gap: var(--space-3);
    align-items: stretch;
  }
  .nav__menu.open { display: flex; }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: var(--space-3) 0; }
  .nav__menu .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: inline-flex; }

  .page-header { padding: var(--space-6) 0 var(--space-4); }
  .page-header__sub { font-size: 1.2rem; }

  .footer-grid { gap: var(--space-5); }
  .footer__bottom { font-size: 0.78rem; text-align: center; justify-content: center; }
}

/* --- Responsive: Phone (<= 600px) --- */
@media (max-width: 600px) {
  body { font-size: 15.5px; }

  .container { padding: 0 var(--space-4); }

  .topbar__contact { flex-direction: column; gap: var(--space-1); }

  .hero__lede { font-size: 1rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  .price-list { padding: var(--space-4) var(--space-3); }
  .price-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-3) 0;
  }
  .price-row__price {
    text-align: left;
    font-size: 1.5rem;
  }
  .price-row__name { font-size: 1.05rem; }

  .section { padding: var(--space-6) 0; }
  .section__head { margin-bottom: var(--space-5); }
  .section__eyebrow { font-size: 0.75rem; padding: var(--space-1) var(--space-3); }

  .features {
    grid-template-columns: 1fr;
  }
  .feature { padding: var(--space-4); }

  .contact-info,
  .contact-form { padding: var(--space-4); }

  .form-row { grid-template-columns: 1fr; }

  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .page-header__sub { font-size: 1rem; }

  .footer-grid h4 { margin-bottom: var(--space-2); }
  .footer ul li { font-size: 0.9rem; }
}

/* Hover efektleri sadece pointer:fine cihazlarda (mobilde sticky hover yapmasin) */
@media (hover: none) {
  .feature:hover { transform: none; box-shadow: none; }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.text-mute { color: var(--color-ink-mute); }

/* --- Heart icon decoration --- */
.heart-deco {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-red);
}


/* ============================================
   İSTANBUL YUFKA logosunda "İ"nin noktası yerine sürekli çizilen kalp
   "I" harfi olduğu gibi yazılı kalır, üstüne kalp absolute olarak konur.
   ============================================ */
.brand-i {
  position: relative;
  display: inline-block;
}
.brand-i__dot {
  position: absolute;
  left: 50%;
  top: -0.18em;
  width: 0.42em;
  height: 0.4em;
  transform: translateX(-50%);
  pointer-events: none;
  line-height: 1;
}
.brand-i__dot svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.brand-i__path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: heart-draw 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes heart-draw {
  0%   { stroke-dashoffset: 100; }
  45%  { stroke-dashoffset: 0; }
  65%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-i__path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .topbar, .nav__toggle { display: none; }
  body { background: white; color: black; }
}
