:root {
  --bg: #FDF5F3;
  --surface: #FFFFFF;
  --surface-2: #F5EBE8;
  --ink: #3B2030;
  --ink-soft: #6B5060;
  --accent: #C27BA0;
  --accent-2: #7B4F6A;
  --line: rgba(59, 32, 48, 0.12);
  --line-strong: rgba(59, 32, 48, 0.25);

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, sans-serif;
  --font-hand: 'Segoe Print', 'Bradley Hand', cursive;

  --header-h: 80px;
  --radius: 8px;
  --radius-lg: 16px;
  --container-max: 1080px;
  --container-pad: clamp(16px, 4vw, 32px);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  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-2); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ===== Skip link ===== */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 99999; font-size: 14px;
  transition: top 200ms;
}
.skip-link:focus { top: 16px; }

/* ===== Focus ===== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ===== Container ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2em;
  line-height: 0.82;
  padding: 0 14px 0 0;
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(194, 123, 160, 0.4), 0 4px 12px rgba(194, 123, 160, 0.2), 0 0 0 4px rgba(194, 123, 160, 0.08);
}
.btn-primary::after {
  content: '\2192';
  transition: transform 240ms;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--line-strong);
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 123, 160, 0.1);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent-2);
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid var(--accent);
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253, 245, 243, 0.88);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(253, 245, 243, 0.98);
  box-shadow: 0 8px 24px -16px rgba(59, 32, 48, 0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: none;
  z-index: 1;
  pointer-events: none;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}
.site-header.scrolled .header__inner { height: 64px; }

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--ink);
  text-decoration: none;
  z-index: 1082;
}
.logo:hover { color: var(--ink); }
.logo__accent { color: var(--accent); }

/* Nav desktop */
.nav-desktop {
  display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px);
}
.nav-desktop a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 4px 0;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--accent-2); }
.nav-desktop a.is-active { color: var(--accent-2); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active { color: var(--surface); }

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 48px; height: 48px;
  z-index: 1100;
  padding: 0;
  gap: 6px;
  border-radius: var(--radius);
  transition: background 240ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--surface-2);
}
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 240ms;
  transform-origin: center;
}
.nav-toggle:hover span {
  background: var(--accent-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1; visibility: visible;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer nav {
  display: flex; flex-direction: column; gap: 4px;
}
.drawer nav a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer nav a:hover,
.drawer nav a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer nav .nav-cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.drawer nav .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 123, 160, 0.25);
}

/* Main */
main { padding-top: var(--header-h); }

/* ===== Section base ===== */
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}
section + section {
  border-top: 1px solid var(--line);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { max-width: 560px; margin: 0 auto; color: var(--ink-soft); }

/* Brush stroke divider */
.brush-divider {
  display: block;
  width: clamp(160px, 30vw, 320px);
  height: auto;
  margin: 0 auto 2rem;
  color: var(--accent);
  opacity: 0.4;
}

/* ===== Hero ===== */
.hero {
  padding: 0;
  border-top: none;
  overflow: hidden;
  background: var(--bg);
  max-height: 100vh;
}
.hero__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  height: calc(100vh - var(--header-h));
  max-height: calc(100vh - var(--header-h));
  overflow: hidden;
  align-items: center;
}
.hero__media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  max-height: calc(100vh - var(--header-h));
}
.hero__media::after {
  content: '';
  position: absolute;
  top: -40%; left: 0; right: 0;
  height: 180%;
  background: linear-gradient(
    165deg,
    rgba(194, 123, 160, 0.55) 0%,
    rgba(123, 79, 106, 0.35) 20%,
    rgba(194, 123, 160, 0.12) 45%,
    transparent 70%
  );
  transform: translateY(var(--mask-y, 0px));
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}
.hero__img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}
.hero__content h1 { margin-bottom: 4px; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 380px;
}

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 8px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), background 240ms, box-shadow 260ms, border-color 240ms;
}
.trust-badge:hover {
  transform: translateY(-2px);
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(194, 123, 160, 0.12);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
  transition: color 240ms, transform 240ms;
}
.stat:hover .stat__number {
  color: var(--accent-2);
  transform: scale(1.06);
}
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ===== Hikaye (Story) ===== */
.hikaye__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.hikaye__text { max-width: 520px; }
.hikaye__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.hikaye__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== Donusum (Before/After) ===== */
.donusum__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.donusum__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}
.donusum__item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.donusum__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.donusum__item:hover img {
  transform: scale(1.04);
}
.donusum__label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(59, 32, 48, 0.78);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ===== Teknik (Techniques) ===== */
.teknik__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}
.teknik-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
  overflow: hidden;
}
.teknik-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.16, 1, .3, 1);
}
.teknik-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(194, 123, 160, 0.15);
}
.teknik-card:hover::after {
  transform: scaleX(1);
}
.teknik-card__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: color 240ms, transform 240ms;
}
.teknik-card:hover .teknik-card__icon {
  color: var(--accent-2);
  transform: scale(1.08);
}
.teknik-card h4 { margin-bottom: 10px; }
.teknik-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Surec (Process Timeline) ===== */
.timeline {
  position: relative;
  padding-left: 56px;
  counter-reset: step;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  opacity: 0.3;
}
.timeline__step {
  position: relative;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -56px; top: 2px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  z-index: 2;
  transition: background 240ms, transform 240ms;
}
.timeline__step h4 { margin-bottom: 6px; color: var(--ink); transition: color 240ms; }
.timeline__step:hover h4 { color: var(--accent-2); }
.timeline__step:hover::before { background: var(--accent-2); }
.timeline__step p { color: var(--ink-soft); font-size: 0.92rem; }
.timeline__time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--surface-2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 8px;
}

/* ===== Referanslar (Testimonials) ===== */
.referanslar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: box-shadow 300ms cubic-bezier(.2,.7,.2,1), transform 300ms cubic-bezier(.2,.7,.2,1);
}
.testimonial:hover {
  box-shadow: 0 12px 32px rgba(194, 123, 160, 0.15);
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testimonial__text {
  font-family: var(--font-hand);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.testimonial:nth-child(even) {
  transform: translateY(24px);
}

/* ===== Fiyat (Pricing) ===== */
.fiyat {
  background: var(--surface);
}
.fiyat__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.price-card {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(194, 123, 160, 0.15);
}
.price-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, #FFF8F6 0%, #F5EBE8 100%);
}
.price-card.is-featured::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmerSweep 12s ease-in-out infinite;
}
.price-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.price-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent-2);
  margin-bottom: 4px;
}
.price-card__note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.price-card__list {
  margin-bottom: 18px;
}
.price-card__list li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.price-card__list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.price-card__excluded { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.price-card__excluded li::before { background: var(--line-strong); }
.fiyat__disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  font-style: italic;
}

/* ===== SSS (FAQ) ===== */
.sss__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2.5vw, 22px) 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink);
  gap: 16px;
  transition: color 240ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:hover .faq-chevron { color: var(--accent-2); transform: translateY(-1px); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item > .answer {
  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] > .answer {
  height: auto;
  padding-block-end: 26px;
}
.faq-item .answer p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ===== Contact section (index) ===== */
.contact-section {
  background: var(--surface);
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-section__text h2 { margin-bottom: 16px; }
.contact-section__text p { color: var(--ink-soft); margin-bottom: 24px; }

/* ===== Form ===== */
.form {
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 123, 160, 0.15);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.field 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);
  cursor: pointer;
}
.field-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* ===== Contact channels (iletisim page) ===== */
.channels {
  display: flex; flex-direction: column; gap: 0;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.channel-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.channel-row__icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.channel-row:hover .channel-row__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.channel-row__content { min-width: 0; }
.channel-row__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.channel-row__value {
  font-size: 0.92rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-row__value a { color: var(--accent-2); }
.channel-row__value a:hover { color: var(--accent); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.footer__brand .logo { color: var(--surface); margin-bottom: 12px; display: inline-block; }
.footer__brand p { font-size: 0.85rem; max-width: 320px; line-height: 1.7; }
.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--surface);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 240ms;
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer__bottom a { color: rgba(255, 255, 255, 0.5); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(59, 32, 48, 0.15);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-height: 44px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
}
.cookie-btn-accept {
  background: var(--ink); color: var(--surface); border: none;
}
.cookie-btn-accept:hover { background: var(--accent); color: var(--surface); }
.cookie-btn-reject {
  background: var(--surface); color: var(--ink); border: 2px solid var(--ink);
  font-weight: 700;
}
.cookie-btn-reject:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-btn-settings {
  background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line);
}
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }
@media (max-width: 639px) {
  .cookie-banner {
    left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
    padding: 20px var(--container-pad);
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__actions button {
    flex: unset; width: 100%;
    min-height: 48px;
    font-size: 0.88rem;
  }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ===== Tables ===== */
.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: 6px;
}
.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;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  background: var(--surface-2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
tr:last-child td { border-bottom: none; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== Niche animations: Balayage / Hair color ===== */

/* 1. Brush stroke reveal on section headings */
.brush-underline {
  position: relative;
  display: inline-block;
}
.brush-underline svg {
  position: absolute;
  bottom: -6px; left: -4px;
  width: calc(100% + 8px); height: 12px;
}
.brush-underline svg path {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  opacity: 0.45;
}
.is-in .brush-underline svg path,
.reveal.is-in .brush-underline svg path {
  animation: brushReveal 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes brushReveal {
  to { stroke-dashoffset: 0; }
}

/* 2. Color gradient shift — ambient on accent band */
.color-band {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #D4A0B8, #B86E95, var(--accent));
  background-size: 400% 100%;
  animation: colorGradientShift 14s ease-in-out infinite;
  padding: clamp(2rem, 4vw, 3rem) 0;
  color: var(--surface);
  text-align: center;
}
.color-band h2, .color-band p { color: var(--surface); }
@keyframes colorGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 3. Paint drip on decorative elements */
.paint-drip {
  position: absolute;
  width: 6px; height: 18px;
  background: var(--accent);
  border-radius: 0 0 50% 50%;
  opacity: 0;
  animation: paintDrip 4s ease-in-out infinite;
}
.paint-drip:nth-child(2) { animation-delay: 1.3s; left: 30%; }
.paint-drip:nth-child(3) { animation-delay: 2.7s; left: 70%; }
@keyframes paintDrip {
  0% { transform: translateY(-8px); opacity: 0; }
  30% { opacity: 0.5; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* 4. Shimmer sweep on featured pricing card */
@keyframes shimmerSweep {
  0% { transform: translateX(-200%) skewX(-15deg); }
  100% { transform: translateX(400%) skewX(-15deg); }
}

/* 5. Hair strand gentle float */
.strand-float {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  opacity: 0.18;
  animation: strandWave 8s ease-in-out infinite;
}
.strand-float:nth-child(2) { animation-delay: 2.5s; height: 32px; }
.strand-float:nth-child(3) { animation-delay: 5s; height: 28px; }
@keyframes strandWave {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-8px); }
}

/* ===== Counter animation ===== */
.stat__number {
  font-variant-numeric: tabular-nums;
}

/* ===== Hair-salon themed micro-effects ===== */

/* Subtle warm glow on testimonial cards */
.testimonial:hover {
  border-color: rgba(194, 123, 160, 0.3);
}

/* Technique card warm shimmer on hover */
.teknik-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(194, 123, 160, 0.06), transparent);
  transition: none;
  z-index: 0;
}
.teknik-card:hover::before {
  animation: cardShimmer 800ms cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes cardShimmer {
  to { left: 140%; }
}

/* Timeline step warm pulse on hover */
.timeline__step:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(194, 123, 160, 0.35);
}

/* Price card subtle float on hover */
.price-card:hover {
  box-shadow: 0 20px 48px rgba(194, 123, 160, 0.18), 0 0 0 1px rgba(194, 123, 160, 0.12);
}
.price-card.is-featured:hover {
  box-shadow: 0 20px 48px rgba(194, 123, 160, 0.25), 0 0 0 1px var(--accent);
}

/* FAQ item subtle highlight */
.faq-item[open] {
  background: linear-gradient(135deg, rgba(194, 123, 160, 0.04), transparent);
  border-radius: var(--radius);
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

/* Team card photo warm overlay on hover */
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(194, 123, 160, 0.15) 100%);
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}
.team-card__photo {
  position: relative;
}
.team-card:hover .team-card__photo::after {
  opacity: 1;
}

/* Donusum (before/after) warm glow label */
.donusum__label {
  transition: background 300ms, transform 300ms;
}
.donusum__item:hover .donusum__label {
  background: rgba(194, 123, 160, 0.85);
  transform: translateY(-2px);
}

/* Footer links warm hover */
.footer__links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0;
  transition: width 240ms cubic-bezier(.2,.7,.2,1), margin-right 240ms;
}
.footer__links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

/* Channel row warm highlight */
.channel-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 300ms cubic-bezier(.16, 1, .3, 1);
}
.channel-row {
  position: relative;
}
.channel-row:hover::before {
  transform: scaleY(1);
}

/* Hero content entrance */
.hero__content {
  animation: heroContentIn 1s cubic-bezier(.16, 1, .3, 1) 300ms both;
}
@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Stats hover warm effect */
.stat {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
  border-radius: var(--radius);
  padding: 8px;
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(194, 123, 160, 0.06);
}

/* ===== Page-specific: policy/legal ===== */
.legal-page {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.legal-page h1 + p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.legal-page h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
}
.legal-page p,
.legal-page ul,
.legal-page ol { max-width: 740px; }
.legal-page ul {
  padding-left: 24px;
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 16px 36px;
}
.legal-page ul li {
  list-style: disc;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 5px 0;
  line-height: 1.7;
}
.legal-page ul li strong {
  color: var(--ink);
}

/* Page: Thank you */
.thankyou {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.thankyou h1 { margin-bottom: 16px; }
.thankyou p { color: var(--ink-soft); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Page: 404 */
.page-404 {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.page-404 h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--accent);
  margin-bottom: 12px;
}
.page-404 h2 { margin-bottom: 16px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; }

/* Page: Sitemap */
.sitemap-list { max-width: 600px; }
.sitemap-list li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sitemap-list a::after {
  content: '\2192';
  color: var(--accent);
  transition: transform 240ms;
}
.sitemap-list a:hover::after { transform: translateX(4px); }

/* Hakkimizda page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(194, 123, 160, 0.15);
}
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}
.team-card__info {
  padding: clamp(18px, 2.5vw, 28px);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Manifesto quote block */
.manifesto {
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.35;
  position: relative;
}
.manifesto blockquote::before {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .hero {
    max-height: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: auto;
  }
  .hero__media {
    min-height: 280px;
    max-height: 45vh;
    height: 45vh;
  }
  .hero__content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hikaye__grid {
    grid-template-columns: 1fr;
  }
  .donusum__pair {
    grid-template-columns: 1fr;
  }
  .referanslar__grid {
    grid-template-columns: 1fr;
  }
  .testimonial:nth-child(even) {
    transform: none;
  }
  .contact-section__inner {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .teknik__grid {
    grid-template-columns: 1fr;
  }
  .fiyat__grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 20px;
  }
  .teknik-card {
    padding: 20px;
  }
  .teknik-card__icon {
    width: 36px; height: 36px;
  }
  .trust-strip {
    gap: 6px;
  }
  .trust-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero__content {
    padding: 1.25rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__actions button {
    flex: unset; width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 360px) {
  :root { --container-pad: 16px; }
  h1 { font-size: 1.75rem; }
}

/* ===== Hero warm glow ===== */
.hero__content {
  position: relative;
}
.hero__content::before {
  content: '';
  position: absolute;
  top: 40%; left: 30%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(194, 123, 160, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: warmPulse 7s ease-in-out infinite;
}
@keyframes warmPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* ===== Enhanced link underline transition ===== */
.contact-section__text a,
.hikaye__text a,
.legal-page a {
  text-decoration-color: rgba(194, 123, 160, 0.3);
  text-underline-offset: 3px;
  text-decoration-line: underline;
  transition: color 240ms, text-decoration-color 240ms;
}
.contact-section__text a:hover,
.hikaye__text a:hover,
.legal-page a:hover {
  text-decoration-color: var(--accent);
}

/* ===== Form field warm focus ===== */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 123, 160, 0.15), 0 2px 8px rgba(194, 123, 160, 0.08);
}

/* ===== Stagger-enhanced reveal ===== */
.reveal {
  transition: opacity 900ms cubic-bezier(.16, 1, .3, 1) calc(var(--i, 0) * 140ms),
              transform 900ms cubic-bezier(.16, 1, .3, 1) calc(var(--i, 0) * 140ms);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__media::after { transform: none !important; }
  .hero__img { transform: none !important; }
  .hero__content { animation: none !important; opacity: 1 !important; }
  .hero__content::before { display: none; }
  .paint-drip, .strand-float { display: none; }
  .teknik-card::before { display: none; }
}

/* ===== Print ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner,
  .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  section { page-break-inside: avoid; }
}
