:root {
  interpolate-size: allow-keywords;
  --bg: #FAF6F0;
  --surface: #F0E8DA;
  --surface-2: #E8DCC8;
  --ink: #2C1810;
  --ink-soft: #5C4A3A;
  --accent: #A0522D;
  --accent-2: #D4956A;
  --line: rgba(44, 24, 16, 0.12);
  --line-strong: rgba(44, 24, 16, 0.25);
  --header-h: 76px;
  --radius: 6px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { margin-bottom: 1rem; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--bg);
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 14px; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  padding: 10px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-desktop { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px); }
.nav-desktop a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; position: relative; padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--bg); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1100;
  padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: var(--ink); position: absolute;
  left: 9px; border-radius: 1px;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius);
}
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ========== MOBILE DRAWER ========== */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg); z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 17px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 200ms, padding-left 200ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: 16px; background: var(--ink); color: var(--bg);
  text-align: center; border-radius: var(--radius); padding: 16px;
  border: none; font-weight: 600;
}
.mobile-drawer .nav-cta-mobile:hover,
.mobile-drawer .nav-cta-mobile:focus-visible { background: var(--accent); color: var(--bg); padding-left: 0; }

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(500px, 80vh, 780px);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero-restore.jpg') center/cover no-repeat;
  animation: heroZoom 12s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes textReveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,0.55) 0%, rgba(44,24,16,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 780px; padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 32px);
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 16px;
  display: inline-block;
  animation: fadeUp 0.7s cubic-bezier(.2,.7,.2,1) 0.2s both;
}
.hero h1 {
  color: #fff; margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  animation: textReveal 1s cubic-bezier(.2,.7,.2,1) 0.4s both;
}
.hero-sub {
  color: rgba(255,255,255,0.88); font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 32px; line-height: 1.6;
  animation: fadeUp 0.8s cubic-bezier(.2,.7,.2,1) 0.7s both;
}
.hero-cta { margin-bottom: 28px; animation: fadeUp 0.7s cubic-bezier(.2,.7,.2,1) 0.9s both; }
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px;
}
.trust-strip span {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 6px;
}
.trust-strip {
  animation: fadeUp 0.6s cubic-bezier(.2,.7,.2,1) 1.1s both;
}
.trust-strip span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-cta, .trust-strip {
    animation: none !important; opacity: 1; clip-path: none; transform: none;
  }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(44,24,16,.3);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--ink);
  padding: 12px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--line-strong);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: background 240ms, border-color 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

/* ========== SECTIONS ========== */
section {
  padding: clamp(60px, 10vw, 120px) 0;
}
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 1.5rem; }

/* Brick texture decoration */
.brick-divider {
  width: 80px; height: 4px; margin: 0 auto 40px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 12px, transparent 12px, transparent 16px);
  border-radius: 2px;
}
.brick-divider--left { margin: 0 0 40px; }

/* ========== #hikaye ========== */
.hikaye-content { max-width: 780px; }
.hikaye-content p:first-of-type::first-letter {
  float: left; font-family: var(--font-heading);
  font-size: 4.5rem; line-height: 0.8; padding: 4px 12px 0 0;
  color: var(--accent); font-weight: 700;
}
.hikaye-manifesto {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--ink-soft); margin: 48px 0;
  padding-left: 24px; border-left: 3px solid var(--accent-2);
  line-height: 1.4;
}

.display-xl {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700; line-height: 0.95;
  letter-spacing: -0.02em;
}

/* ========== #oncesi — Before/After Slider ========== */
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: ew-resize;
  box-shadow: 0 4px 16px -4px rgba(44,24,16,.15);
  transition: box-shadow 360ms;
}
.ba-slider:hover { box-shadow: 0 8px 28px -8px rgba(44,24,16,.22); }
.ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; user-select: none;
}
.ba-img--after { z-index: 0; }
.ba-img--before { z-index: 1; clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 2;
  width: 3px; background: #fff; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 8px rgba(0,0,0,.25);
}
.ba-handle-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ba-handle-circle svg { width: 20px; height: 20px; stroke: var(--ink); }
.ba-label {
  position: absolute; bottom: 12px; padding: 4px 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 3px; z-index: 3;
  pointer-events: none;
}
.ba-label--once { left: 12px; background: rgba(44,24,16,.75); color: #fff; }
.ba-label--sonra { right: 12px; background: rgba(160,82,45,.85); color: #fff; }

/* ========== #felsefe ========== */
.ilke-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 48px;
}
@media (max-width: 768px) { .ilke-grid { grid-template-columns: 1fr; gap: 32px; } }
.ilke-card {
  padding: 32px; background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.ilke-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(160,82,45,.25), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.ilke-number {
  font-family: var(--font-heading); font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700; color: var(--accent-2); line-height: 1;
  margin-bottom: 16px; opacity: 0.6;
}
.ilke-card h3 { margin-bottom: 12px; }
.ilke-icon {
  width: 48px; height: 48px; margin-bottom: 16px; color: var(--accent);
}

/* ========== #surec ========== */
.surec-section {
  background: var(--surface);
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 23px, rgba(44,24,16,0.03) 23px, rgba(44,24,16,0.03) 24px),
    repeating-linear-gradient(90deg, transparent 0, transparent 47px, rgba(44,24,16,0.02) 47px, rgba(44,24,16,0.02) 48px);
}

/* Hatch border decoration */
.hatch-accent {
  position: relative;
}
.hatch-accent::after {
  content: '';
  position: absolute; bottom: -8px; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--accent-2) 0, var(--accent-2) 1.5px, transparent 1.5px, transparent 5px);
  opacity: 0.25; border-radius: 1px;
}
.surec-timeline { margin-top: 48px; position: relative; padding-left: 48px; }
.surec-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.surec-step {
  position: relative; margin-bottom: 40px; padding: 24px;
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.surec-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(160,82,45,.2), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.surec-step::before {
  content: ''; position: absolute; left: -38px; top: 28px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.surec-step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.surec-step-num {
  font-family: var(--font-heading); font-size: 13px;
  font-weight: 700; color: var(--accent);
  background: rgba(160,82,45,.1); padding: 4px 10px;
  border-radius: 3px;
}
.surec-step-time {
  font-size: 12px; color: var(--ink-soft); font-weight: 500;
}
.surec-step h4 { margin-bottom: 6px; }
.surec-step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

@media (max-width: 640px) {
  .surec-timeline { padding-left: 32px; }
  .surec-timeline::before { left: 10px; }
  .surec-step::before { left: -28px; width: 10px; height: 10px; }
}

/* ========== #bedel ========== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 36px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(160,82,45,.25), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.pricing-card h4 { margin-bottom: 12px; }
.pricing-price {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--accent); margin-bottom: 16px;
}
.pricing-list { list-style: none; margin-bottom: 12px; }
.pricing-list li {
  padding: 6px 0; font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-excluded { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; }
.pricing-excluded li::before { content: '—'; color: var(--ink-soft); }
.pricing-note {
  margin-top: 24px; padding: 16px; background: var(--surface);
  border-radius: var(--radius); font-size: 13px; color: var(--ink-soft);
  border-left: 3px solid var(--accent-2);
}

/* Table scroll wrapper */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; font-size: 14px; }
th { background: var(--surface); font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--line-strong); }
td { border-bottom: 1px solid var(--line); color: var(--ink-soft); }
tr:hover td { background: rgba(240,232,218,.5); }

/* ========== #referanslar ========== */
.referans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 48px;
}
@media (max-width: 768px) { .referans-grid { grid-template-columns: 1fr; } }
.referans-card {
  padding: clamp(24px, 3vw, 32px); background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--line);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.referans-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(160,82,45,.2), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.referans-card::before {
  content: '"'; position: absolute; top: 16px; left: 20px;
  font-family: var(--font-heading); font-size: 4rem;
  color: var(--accent-2); opacity: 0.3; line-height: 1;
}
.referans-text { font-style: italic; color: var(--ink-soft); margin-bottom: 16px; padding-top: 24px; }
.referans-author { font-weight: 600; font-size: 14px; color: var(--ink); }
.referans-meta { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* ========== #arsiv ========== */
.arsiv-flow { margin-top: 48px; }
.arsiv-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center; margin-bottom: 48px;
  padding: 24px; background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.arsiv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(160,82,45,.2), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.arsiv-card:nth-child(even) { direction: rtl; }
.arsiv-card:nth-child(even) > * { direction: ltr; }
.arsiv-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.arsiv-card:hover img { transform: scale(1.04); }
.arsiv-card-text h3 { margin-bottom: 8px; }
.arsiv-card-text p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 768px) {
  .arsiv-card { grid-template-columns: 1fr; }
  .arsiv-card:nth-child(even) { direction: ltr; }
}

/* ========== #sss FAQ ========== */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-weight: 600;
  font-size: 15px; color: var(--ink); list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--accent); transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ========== #iletisim ========== */
.iletisim-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 48px;
}
@media (max-width: 768px) { .iletisim-grid { grid-template-columns: 1fr; } }

/* ========== FORM ========== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1.5px solid var(--line-strong);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(160,82,45,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }

.field-checkbox {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  align-items: start; margin-bottom: 20px;
}
.field-checkbox input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox label {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5; cursor: pointer;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ========== CONTACT CHANNELS ========== */
.contact-channels { display: grid; gap: 20px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start; padding: 12px 0;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius); padding: 12px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink-soft); flex-shrink: 0;
  transition: color 240ms;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row-content { min-width: 0; }
.contact-row-label { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-row-value { font-size: 15px; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.contact-row-value a { color: var(--ink); text-decoration: none; }
.contact-row-value a:hover { color: var(--accent); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { max-width: 320px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a { display: block; color: rgba(255,255,255,.6); font-size: 14px; padding: 4px 0; text-decoration: none; transition: color 200ms; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ========== COUNTER ANIMATION ========== */
.stat-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px;
  margin: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--accent); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

/* ========== REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(28px) rotate(-0.5deg);
  transition: opacity 650ms cubic-bezier(.16,.84,.44,1), transform 650ms cubic-bezier(.16,.84,.44,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 100ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--ink); color: rgba(255,255,255,.9);
  padding: 20px 24px; border-radius: var(--radius);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.4);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { color: #fff; font-size: 15px; margin-bottom: 8px; }
.cookie-banner p { font-size: 13px; line-height: 1.5; margin-bottom: 16px; color: rgba(255,255,255,.7); }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-btn {
  padding: 10px 18px; border-radius: var(--radius); font-size: 13px;
  font-weight: 600; cursor: pointer; border: none;
  min-height: 44px; min-width: 44px;
  transition: background 200ms, color 200ms, transform 180ms;
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--accent-2); outline-offset: 2px;
}
.cookie-btn:active { transform: scale(.97); }
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--accept:hover { background: var(--accent-2); color: #fff; }
.cookie-btn--reject { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.cookie-btn--reject:hover { background: rgba(255,255,255,.28); color: #fff; }
.cookie-btn--settings { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.cookie-btn--settings:hover { background: rgba(255,255,255,.08); color: #fff; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ========== NICHE ANIMATIONS ========== */

/* Stone-lay stagger: cards appear as bricks being laid */
@keyframes stoneLay {
  from { opacity: 0; transform: translateY(20px) rotate(-1deg); }
  to { opacity: 1; transform: none; }
}
.stone-reveal {
  opacity: 0;
  animation: stoneLay 600ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-play-state: paused;
}
.stone-reveal.is-in { animation-play-state: running; }

/* Mortar-line draw: stroke animation on decorative lines */
@keyframes mortarDraw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
.mortar-svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.mortar-svg.is-in path {
  animation: mortarDraw 1.2s cubic-bezier(.4,0,.2,1) forwards;
}

/* Compass spin on reveal */
@keyframes compassSpin {
  from { transform: rotate(-90deg); opacity: 0; }
  to { transform: rotate(0); opacity: 1; }
}
.compass-spin.is-in,
.is-in .compass-spin { animation: compassSpin 800ms cubic-bezier(.2,.7,.2,1) forwards; }

/* Arch clip-path reveal */
@keyframes archReveal {
  from { clip-path: inset(100% 30% 0 30% round 50% 50% 0 0); }
  to { clip-path: inset(0 0 0 0 round 0); }
}
.arch-reveal.is-in { animation: archReveal 900ms cubic-bezier(.2,.7,.2,1) forwards; }

/* Patina gradient shift on hover */
@keyframes patinaShift {
  0% { filter: sepia(0) hue-rotate(0deg); }
  50% { filter: sepia(0.15) hue-rotate(5deg); }
  100% { filter: sepia(0) hue-rotate(0deg); }
}
.patina-hover:hover img { animation: patinaShift 2s ease; }

/* Warm glow pulse on timeline dots */
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--accent); }
  50% { box-shadow: 0 0 0 2px var(--accent), 0 0 12px 2px rgba(212,149,106,.35); }
}
.surec-step:hover::before {
  animation: warmPulse 1.8s ease-in-out infinite;
}

/* Chisel-press on interactive elements */
.faq-item summary:active { transform: scale(.995); }
.nav-cta:active, .nav-cta-mobile:active { transform: scale(.97); }

/* Stone-texture line under hovered FAQ */
.faq-item:hover { background: rgba(160,82,45,.02); }

@media (prefers-reduced-motion: reduce) {
  .stone-reveal, .mortar-svg path, .compass-spin, .is-in .compass-spin, .arch-reveal { animation: none !important; opacity: 1; transform: none; clip-path: none; stroke-dashoffset: 0; }
  .patina-hover:hover img { animation: none; }
  .surec-step:hover::before { animation: none; }
  .cookie-btn:active, .faq-item summary:active, .nav-cta:active, .nav-cta-mobile:active { transform: none; }
}

/* ========== PAGE-SPECIFIC ========== */
.page-hero {
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 600px; }

.content-page { padding: clamp(40px, 6vw, 80px) 0; }
.content-page h2 {
  margin-top: 48px; margin-bottom: 16px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.content-page > .container > h2:first-of-type,
.content-page .iletisim-grid h2 { border-top: none; padding-top: 0; margin-top: 0; }
.content-page h3 { margin-top: 28px; margin-bottom: 12px; }
.content-page p { max-width: 740px; color: var(--ink-soft); }
.content-page ul, .content-page ol {
  padding-left: 24px; margin-bottom: 16px; color: var(--ink-soft);
}
.content-page li { margin-bottom: 8px; font-size: 14px; line-height: 1.65; }

/* Thank you page */
.thank-you-section {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.thank-you-section h1 { margin-bottom: 16px; color: var(--accent); }
.thank-you-section p { color: var(--ink-soft); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* 404 page */
.error-section {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.error-section h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--accent-2); opacity: 0.6; margin-bottom: 16px; }
.error-section h2 { margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* Sitemap page */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 8px 0; }
.sitemap-list a { font-size: 15px; }

/* ========== TEAM (hakkimizda) ========== */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center; padding: 32px 24px;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(160,82,45,.25), 0 0 0 1px rgba(160,82,45,.06);
  border-color: rgba(160,82,45,.18);
}
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--surface-2); object-fit: cover;
  border: 3px solid var(--line);
}
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--ink-soft); line-height: 1.6; text-align: left; }

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  z-index: 1;
  transition: none;
}

/* ========== PRINT ========== */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  :root { --header-h: 68px; }
}
@media (max-width: 768px) {
  .hero { min-height: clamp(420px, 70vh, 600px); }
  .pricing-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ilke-grid { grid-template-columns: 1fr; }
  .referans-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-grid { gap: 24px 32px; }
}
@media (max-width: 640px) {
  section { padding: clamp(40px, 8vw, 60px) 0; }
  .hero-content { padding: 24px 16px; }
  .trust-strip { gap: 10px 16px; }
  .trust-strip span { font-size: 11px; }
  .arsiv-card { padding: 16px; }
  .pricing-card { padding: 20px; }
  .ilke-card { padding: 24px; }
  .surec-step { padding: 18px; }
  .referans-card { padding: 20px; }
}
@media (max-width: 430px) {
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero { min-height: 380px; }
  .ilke-number { font-size: 2.5rem; }
  .stat-number { font-size: 2rem; }
}

