:root {
  --bg: #F5F0EB;
  --surface: #FFFFFF;
  --surface-2: #FAF7F4;
  --ink: #2C1810;
  --ink-soft: #5C4A3A;
  --accent: #8B6914;
  --accent-2: #C4956A;
  --line: rgba(44,24,16,0.12);
  --line-strong: rgba(44,24,16,0.22);
  --header-h: 72px;
  --container: 1080px;
  --radius: 6px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -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); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.6em; color: var(--ink); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.5em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 0.4em; }

p { margin-bottom: 1em; max-width: 68ch; }

ul, ol { padding-left: 1.4em; margin-bottom: 1em; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 10000; font-size: 0.875rem;
}
.skip-link:focus { top: 8px; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(245, 240, 235, 0.92);
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(245,240,235,0.98);
  box-shadow: 0 8px 24px -16px rgba(44,24,16,0.18);
  height: 60px;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.header__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.header__logo span { color: var(--accent); }

/* ===== NAV DESKTOP ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 240ms ease, color 240ms ease, transform 180ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}

/* ===== NAV TOGGLE (HAMBURGER) ===== */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1100; position: relative;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius);
  transition: background 200ms ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: rgba(44,24,16,0.06); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 100%; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform 320ms cubic-bezier(.22,.68,.35,1.0), opacity 240ms;
  box-shadow: 0 0.5px 0 rgba(44,24,16,0.15);
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }
.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; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.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 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  text-decoration: none;
  transition: color 240ms ease, padding-left 240ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .nav-cta-mobile {
  display: inline-block;
  margin-top: 16px;
  background: var(--ink); color: var(--surface);
  padding: 12px 28px; border-radius: var(--radius);
  text-align: center; font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: none;
  transition: background 240ms ease, color 240ms ease;
}
.drawer .nav-cta-mobile:hover { background: var(--accent); color: var(--surface); }

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(139,105,20,0.025) 3px, rgba(139,105,20,0.025) 6px),
    repeating-linear-gradient(-30deg, transparent, transparent 4px, rgba(196,149,106,0.02) 4px, rgba(196,149,106,0.02) 8px),
    repeating-linear-gradient(120deg, transparent, transparent 2px, rgba(44,24,16,0.015) 2px, rgba(44,24,16,0.015) 5px);
  opacity: 0.7;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
  display: block;
  text-shadow: 0 1px 6px rgba(44,24,16,0.5);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(3.2rem, 10vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  color: var(--surface);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero__title {
    background: linear-gradient(135deg, #F5F0EB 0%, #E8DED3 25%, var(--accent-2) 55%, var(--accent) 75%, #F5F0EB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(196,149,106,0.3));
  }
}
.hero__line {
  display: block;
  transform: translateY(20px);
  opacity: 0;
  animation: hero-line-in 700ms cubic-bezier(.22,.68,.35,1.0) forwards;
  animation-delay: calc(var(--i, 0) * 100ms + 200ms);
}
@keyframes hero-line-in {
  to { opacity: 1; transform: none; }
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0; animation: hero-line-in 700ms cubic-bezier(.22,.68,.35,1.0) forwards;
  animation-delay: 400ms;
  text-shadow: 0 1px 8px rgba(44,24,16,0.4);
}
.hero__cta {
  opacity: 0; animation: hero-line-in 700ms cubic-bezier(.22,.68,.35,1.0) forwards;
  animation-delay: 550ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero__line, .hero__sub, .hero__cta { opacity: 1; transform: none; animation: none; }
}
html.no-js .hero__line, html.no-js .hero__sub, html.no-js .hero__cta {
  opacity: 1; transform: none; animation: none;
}

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px;
  margin-top: 2rem;
  opacity: 0; animation: hero-line-in 700ms cubic-bezier(.22,.68,.35,1.0) forwards;
  animation-delay: 700ms;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(44,24,16,0.4);
}
.trust-badge svg { width: 18px; height: 18px; color: var(--accent-2); flex-shrink: 0; }

/* ===== SECTIONS (general) ===== */
section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.section--alt { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--surface); }
.section--dark h2, .section--dark h3 { color: var(--surface); }
.section--dark p { color: rgba(255,255,255,0.8); }
.section--dark .stitch-divider { border-color: rgba(255,255,255,0.2); }

.section__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

/* Stitch divider */
.stitch-divider {
  border: none;
  border-top: 2px dashed var(--line-strong);
  margin: 0 auto;
  max-width: 200px;
  position: relative;
}
.stitch-divider::before {
  content: '';
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== DROP-CAP ===== */
.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: 0.78;
  margin: 0.06em 0.14em 0 0;
  color: var(--accent);
  text-shadow:
    1px 1px 0 var(--accent-2),
    2px 2px 3px rgba(44,24,16,0.12);
}

/* ===== #ustalik — Editorial ===== */
.ustalik__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .ustalik__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.ustalik__text p { max-width: 55ch; }

/* ===== #koleksiyon — 2 column ===== */
.koleksiyon__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 640px) {
  .koleksiyon__grid { grid-template-columns: 1fr 1fr; }
}
.koleksiyon__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  transition: transform 340ms cubic-bezier(.22,.68,.35,1.0), box-shadow 340ms cubic-bezier(.22,.68,.35,1.0), border-color 340ms ease;
  position: relative;
  overflow: hidden;
}
.koleksiyon__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(.22,.68,.35,1.0);
}
.koleksiyon__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(139,105,20,0.18);
  border-color: var(--accent-2);
}
.koleksiyon__card:hover::before { transform: scaleX(1); }

.koleksiyon__icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}
.koleksiyon__card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.koleksiyon__card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.koleksiyon__price {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== #monogram — Steps ===== */
.monogram__steps {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 2rem auto 0;
}
.monogram__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}
.monogram__step:last-child { border-bottom: none; }
.step__number {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: var(--accent);
  flex-shrink: 0;
  transition: background 300ms ease, color 300ms ease;
}
.monogram__step:hover .step__number { background: var(--accent); color: var(--surface); }
.step__content h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.step__content p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ===== PROCESS (timeline) ===== */
.process__timeline {
  position: relative;
  max-width: 680px;
  margin: 2rem auto 0;
  padding-left: 40px;
}
.process__timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 15px;
  width: 2px;
  border-left: 2px dashed var(--line-strong);
}
.process__item {
  position: relative;
  padding: 0 0 clamp(24px, 3vw, 36px) 28px;
}
.process__item:last-child { padding-bottom: 0; }
.process__dot {
  position: absolute; left: -33px; top: 4px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
}
.process__item h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.process__time {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  display: block;
}
.process__item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ===== #fiyat — Pricing ===== */
.fiyat__packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .fiyat__packages { grid-template-columns: repeat(3, 1fr); }
}
.fiyat__pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 340ms cubic-bezier(.22,.68,.35,1.0), box-shadow 340ms cubic-bezier(.22,.68,.35,1.0), border-color 340ms ease;
}
.fiyat__pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.15);
  border-color: var(--accent-2);
}
.fiyat__pkg--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px -4px rgba(139,105,20,0.12);
}
.fiyat__pkg--featured::before {
  content: 'En Tercih Edilen';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--surface);
  padding: 3px 14px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.fiyat__pkg h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.fiyat__pkg .pkg-price {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: 1.6rem; color: var(--accent);
  margin-bottom: 0.4rem;
}
.fiyat__pkg .pkg-price small {
  font-size: 0.75rem; font-weight: 400; color: var(--ink-soft);
}
.pkg-list { list-style: none; padding: 0; margin: 16px 0 0; }
.pkg-list li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pkg-list .excluded { color: var(--ink-soft); text-decoration: line-through; }
.pkg-list .excluded::before { background: var(--line-strong); }

.fiyat__disclaimer {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}
.fiyat__capacity {
  text-align: center;
  margin-top: 1.5rem;
  padding: 16px 24px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.fiyat__capacity strong { color: var(--accent); }

/* ===== TABLE SCROLL ===== */
.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;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(139,105,20,0.03); }

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 1; color: var(--accent-2);
  position: absolute; top: 12px; left: 20px; opacity: 0.3;
}
.testimonial__text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 12px;
  position: relative; z-index: 1;
  padding-top: 8px;
}
.testimonial__author {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.testimonial__author span { font-weight: 400; display: block; font-size: 0.78rem; }

/* ===== FAQ ACCORDION ===== */
.faq__list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px dashed var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px, 2vw, 20px) 0;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 240ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; 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 { transform: rotate(45deg); }
.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;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p { font-size: 0.92rem; color: var(--ink-soft); max-width: 60ch; margin: 0; }

/* ===== NEWS / NOTES ===== */
.notes__list { max-width: 640px; }
.notes__item {
  display: flex; gap: 16px; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.notes__item:last-child { border-bottom: none; }
.notes__date {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); white-space: nowrap;
  min-width: 90px;
}
.notes__text { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== FORM ===== */
.form-section { max-width: 640px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field { position: relative; }
.field label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 2px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; color: var(--ink);
  transition: border-color 280ms ease, box-shadow 280ms ease;
  appearance: auto;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 2px 0 0 var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }

.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);
}
.field--checkbox {
  display: flex; align-items: flex-start; gap: 10px;
}
.field--checkbox label {
  font-size: 0.85rem;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: pointer;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 240ms ease, color 240ms ease, transform 180ms ease, box-shadow 240ms ease;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-primary, .btn--primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible,
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(139,105,20,0.25);
}

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
}

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--ink); color: var(--surface);
  font-size: 1rem;
}
.btn-submit:hover, .btn-submit:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}
@media (min-width: 640px) { .btn-submit { width: auto; min-width: 220px; } }

/* ===== STATS / COUNTERS ===== */
.stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stat {
  text-align: center;
  min-width: 100px;
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 4rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.2rem; color: var(--surface);
  margin-bottom: 0.8rem;
}
.footer__brand span { color: var(--accent-2); }
.site-footer p { font-size: 0.88rem; max-width: 36ch; }
.site-footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 1rem;
  font-style: normal;
}
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 240ms ease;
}
.footer__links a:hover { color: var(--accent-2); }

.footer__contact-item {
  display: flex; align-items: start; gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent-2); }
.footer__contact-item a { color: rgba(255,255,255,0.7); }
.footer__contact-item a:hover { color: var(--accent-2); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__legal a { color: rgba(255,255,255,0.5); }
.footer__legal a:hover { color: var(--accent-2); }

/* ===== 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: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(44,24,16,0.2);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-weight: 600;
  font-size: 0.95rem; margin-bottom: 8px;
  color: var(--ink);
}
.cookie-banner p {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.5; margin-bottom: 14px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie__actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie__actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 16px;
  transition: background 240ms ease, color 240ms ease;
}
.cookie__actions button:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink-soft);
}
.cookie__actions button[data-consent="accept"] {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie__actions button[data-consent="accept"]:hover {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.cookie__actions button[data-consent="reject"] {
  border-color: var(--ink);
  border-width: 2px;
  color: var(--ink);
  font-weight: 700;
  background: rgba(44,24,16,0.06);
}
.cookie__actions button[data-consent="reject"]:hover {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(.16, 1, .3, 1),
    transform 700ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.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; }
html.no-js .stitch-underline::after { animation: none; width: 100%; }

/* ===== NICHE ANIMATIONS: Leather Craft ===== */

/* 1. Stitch underline — dashed "sewing" line draws on headings */
.stitch-underline {
  position: relative;
  display: inline-block;
}
.stitch-underline::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 0;
  border-bottom: 2px dashed var(--accent);
  animation: stitch-draw 1s cubic-bezier(.22,.68,.35,1.0) forwards;
  animation-play-state: paused;
}
.is-in .stitch-underline::after,
.reveal.is-in .stitch-underline::after { animation-play-state: running; }

@keyframes stitch-draw {
  from { width: 0; }
  to { width: 100%; }
}

/* 2. Leather emboss glow on drop-cap — subtle gold-to-brown pulse */
@keyframes emboss-glow {
  0%, 100% { text-shadow: 1px 1px 0 var(--accent-2), 2px 2px 3px rgba(44,24,16,0.12); }
  50% { text-shadow: 1px 1px 0 var(--accent), 2px 2px 6px rgba(139,105,20,0.22); }
}
.drop-cap::first-letter {
  animation: emboss-glow 8s ease-in-out infinite;
}

/* 3. Awl poke — icon "pokes" on hover (craft tool reference) */
@keyframes awl-poke {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(0.92) rotate(-6deg); }
  60% { transform: scale(1.08) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.koleksiyon__icon:hover { animation: awl-poke 400ms cubic-bezier(.2,.7,.2,1); }
.monogram__step:hover .step__number { animation: awl-poke 400ms cubic-bezier(.2,.7,.2,1); }

/* 4. Leather grain shimmer — subtle texture shift on card hover */
@keyframes grain-shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 40px 20px; }
}
.koleksiyon__card:hover {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(139,105,20,0.015) 2px, rgba(139,105,20,0.015) 4px);
  animation: grain-shimmer 12s linear infinite;
}

/* 5. Thread path — stitch dots appear along card border on hover */
.fiyat__pkg::after {
  content: '';
  position: absolute; inset: 4px;
  border: 2px dashed transparent;
  border-radius: calc(var(--radius) - 2px);
  transition: border-color 600ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.fiyat__pkg:hover::after { border-color: rgba(139,105,20,0.15); }

@media (prefers-reduced-motion: reduce) {
  .drop-cap::first-letter { animation: none; }
  .stitch-underline::after { animation: none; width: 100%; }
  .koleksiyon__icon:hover { animation: none; }
  .koleksiyon__card:hover { animation: none; }
}

/* ===== COUNTER UP ===== */
.counter[data-animated="true"] {
  transition: none;
}

/* ===== PARALLAX (via JS scroll) ===== */
.parallax-layer {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -30%;
  background:
    linear-gradient(180deg, rgba(44,24,16,0.52) 0%, rgba(44,24,16,0.68) 100%),
    url('/assets/images/atolye-hero.jpg') center/cover no-repeat;
  will-change: transform;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.contact-hero p { margin: 0 auto; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 20px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 24px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.14);
}
.channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  transition: background 240ms ease, color 240ms ease;
}
.channel-card:hover .channel-card__icon { background: var(--accent); color: var(--surface); }
.channel-card__icon svg { width: 22px; height: 22px; }
.channel-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.channel-card__value {
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.channel-card__value a { color: var(--ink); }
.channel-card__value a:hover { color: var(--accent); }
.channel-card__sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.hours-day {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-align: center;
}
.hours-day.today {
  background: var(--accent);
  color: var(--surface);
}
.hours-day__name {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.hours-day__time { font-size: 0.88rem; font-weight: 500; }

/* ===== PAGE: About, Policies, Sitemap ===== */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.4rem;
}
.page-content { padding: clamp(2rem, 4vw, 3rem) 0; }
.page-content h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2rem; }
.page-content h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-top: 1.5rem; }
.page-content p { max-width: 72ch; }
.page-content ul, .page-content ol { max-width: 72ch; margin-bottom: 1.2em; }

.prose {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p { margin-bottom: 1.2em; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
}
.team-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card__role {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); text-align: left; }

/* Thank you page */
.thankyou {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
}
.thankyou h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.8rem; }
.thankyou p { max-width: 480px; margin: 0 auto 2rem; color: var(--ink-soft); }

/* 404 page */
.error-page {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
}
.error-page h1 {
  font-size: clamp(4rem, 12vw, 4.5rem);
  color: var(--accent-2);
  opacity: 0.4;
  line-height: 1;
}
.error-page h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.8rem;
}

/* ===== FOCUS RING ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== MANIFESTO / QUOTE BLOCK ===== */
.manifesto {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(16px, 6vw, 64px);
}
.manifesto blockquote {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--surface);
  max-width: 54ch;
  margin: 0 auto;
  position: relative;
}
.manifesto cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent-2);
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .fiyat__packages { gap: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 58px; }
  section { padding: clamp(2rem, 6vw, 3rem) 0; }
  .koleksiyon__grid { grid-template-columns: 1fr; }
  .koleksiyon__card { padding: 16px 18px; }
  .koleksiyon__icon { width: 36px; height: 36px; }
  .monogram__step { grid-template-columns: 44px 1fr; gap: 14px; }
  .step__number { width: 40px; height: 40px; font-size: 1.1rem; }
  .process__timeline { padding-left: 32px; }
  .process__dot { left: -25px; }
  .stats { gap: 20px; }
  .stat__number { font-size: clamp(1.6rem, 4vw, 2.2rem); }
  .trust-strip { gap: 12px 20px; }
  .trust-badge { font-size: 0.72rem; }
  .trust-badge svg { width: 16px; height: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .channels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .hero { min-height: 80vh; padding: clamp(2rem, 6vw, 3rem) 16px; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .fiyat__pkg { padding: 18px 16px; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 2.4rem; }
  .header__logo { font-size: 1rem; }
}

/* ===== ENHANCED LEATHER-CRAFT HOVER & MICRO-INTERACTIONS ===== */

/* Warm emboss press on buttons */
.btn-primary:active, .btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px -2px rgba(139,105,20,0.3);
}
.hero .btn-primary, .hero .btn--primary {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
  box-shadow: 0 4px 20px -4px rgba(139,105,20,0.35);
  font-size: 1rem;
  padding: 16px 36px;
}
.hero .btn-primary:hover, .hero .btn--primary:hover {
  background: var(--surface); color: var(--ink); border-color: var(--surface);
  box-shadow: 0 8px 28px -4px rgba(245,240,235,0.35);
}

/* Testimonial card hover — warm leather glow */
.testimonial {
  transition: transform 340ms cubic-bezier(.22,.68,.35,1.0), box-shadow 340ms cubic-bezier(.22,.68,.35,1.0), border-color 340ms ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(139,105,20,0.12);
  border-color: var(--accent-2);
}

/* Process dot pulse on hover */
.process__item:hover .process__dot {
  box-shadow: 0 0 0 3px var(--accent), 0 0 12px 2px rgba(139,105,20,0.25);
  transition: box-shadow 300ms ease;
}

/* FAQ item hover accent */
.faq-item summary:hover::after { color: var(--ink); }

/* Notes item hover */
.notes__item {
  transition: padding-left 240ms ease, background 240ms ease;
  border-radius: var(--radius);
}
.notes__item:hover {
  padding-left: 8px;
  background: rgba(139,105,20,0.03);
}

/* Team card hover — warm border */
.team-card {
  transition: transform 300ms cubic-bezier(.22,.68,.35,1.0), box-shadow 300ms cubic-bezier(.22,.68,.35,1.0), border-color 300ms ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -10px rgba(139,105,20,0.15);
  border-color: var(--accent-2);
}
.team-card:hover .team-card__photo {
  background: var(--accent);
  color: var(--surface);
  transition: background 300ms ease, color 300ms ease;
}

/* Stat counter hover glow */
.stat {
  transition: transform 300ms ease;
}
.stat:hover { transform: scale(1.05); }
.stat:hover .stat__number {
  text-shadow: 0 0 20px rgba(139,105,20,0.2);
  transition: text-shadow 300ms ease;
}

/* Channel card icon warm pulse */
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,105,20,0); }
  50% { box-shadow: 0 0 0 8px rgba(139,105,20,0.08); }
}
.channel-card:hover .channel-card__icon {
  animation: warm-pulse 1.6s ease-in-out infinite;
}

/* Pricing featured card — stitch border visible by default */
.fiyat__pkg--featured::after {
  border-color: rgba(196,149,106,0.25);
}

/* Footer link underline reveal */
.footer__links a {
  position: relative;
}
.footer__links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-2);
  transition: width 280ms cubic-bezier(.22,.68,.35,1.0);
}
.footer__links a:hover::after { width: 100%; }

/* ===== COOKIE BANNER MOBILE FIX ===== */
body { padding-bottom: 0; transition: padding-bottom 280ms ease; }
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
    padding: 20px 16px calc(env(safe-area-inset-bottom, 8px) + 16px);
  }
  .cookie__actions { gap: 8px; }
  .cookie__actions button { min-height: 52px; font-size: 0.9rem; padding: 14px 18px; }
}

/* ===== HERO VISIBILITY SAFETY NET ===== */
@keyframes ensure-visible {
  to { opacity: 1; transform: none; }
}
.hero__line, .hero__sub, .hero__cta, .trust-strip {
  animation-fill-mode: forwards;
}

/* ===== DRAWER ENHANCEMENTS ===== */
.drawer {
  box-shadow: -8px 0 32px rgba(44,24,16,0.1);
}
.drawer a::before {
  content: '';
  display: inline-block;
  width: 0; height: 2px;
  background: var(--accent);
  margin-right: 0;
  transition: width 240ms ease, margin-right 240ms ease;
  vertical-align: middle;
}
.drawer a:hover::before,
.drawer a.is-active::before {
  width: 16px;
  margin-right: 8px;
}

/* ===== MANIFESTO HOVER ===== */
.manifesto blockquote {
  transition: text-shadow 600ms ease;
}
.manifesto:hover blockquote {
  text-shadow: 0 0 40px rgba(255,255,255,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .channel-card:hover .channel-card__icon { animation: none; }
  .testimonial, .team-card, .stat, .process__item .process__dot,
  .notes__item, .koleksiyon__card, .fiyat__pkg { transition: none; }
  .drawer a::before { transition: none; }
  .manifesto blockquote { transition: none; }
}

/* ===== ENHANCED STAGGER & LEATHER EFFECTS ===== */

/* Burnishing shimmer on primary buttons — warm glow sweep */
@keyframes burnish-sweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-primary, .btn--primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(196,149,106,0.18) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.btn-primary:hover::after, .btn--primary:hover::after {
  opacity: 1;
  animation: burnish-sweep 800ms cubic-bezier(.16,1,.3,1) forwards;
}

/* Leather stamp press on pricing cards */
.fiyat__pkg {
  position: relative;
}
.fiyat__pkg h3 {
  transition: color 300ms ease;
}
.fiyat__pkg:hover h3 {
  color: var(--accent);
}

/* Warm golden line on testimonial hover */
.testimonial::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.testimonial:hover::after {
  transform: scaleX(1);
}

/* Saddle-stitch trail on process timeline hover */
.process__timeline::after {
  content: '';
  position: absolute; top: 0; left: 14px;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  transition: height 1.2s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  border-radius: 2px;
}
.process__timeline:hover::after {
  height: 100%;
}

/* Warm focus glow for form inputs */
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 2px 0 0 var(--accent), 0 4px 12px -4px rgba(139,105,20,0.12);
}

/* Smooth drawer slide-in with leather feel */
.drawer a {
  opacity: 0;
  transform: translateX(16px);
  transition: color 240ms ease, padding-left 240ms ease, opacity 340ms cubic-bezier(.16,1,.3,1), transform 340ms cubic-bezier(.16,1,.3,1);
}
.drawer.is-open a {
  opacity: 1;
  transform: translateX(0);
}
.drawer.is-open a:nth-child(1) { transition-delay: 60ms; }
.drawer.is-open a:nth-child(2) { transition-delay: 100ms; }
.drawer.is-open a:nth-child(3) { transition-delay: 140ms; }
.drawer.is-open a:nth-child(4) { transition-delay: 180ms; }
.drawer.is-open a:nth-child(5) { transition-delay: 220ms; }
.drawer.is-open a:nth-child(6) { transition-delay: 260ms; }

/* FAQ open/close smooth rotate */
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after {
  color: var(--ink);
}

/* Stats warm glow when in view */
@keyframes stat-glow {
  0% { opacity: 0; transform: translateY(12px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.stats.is-in .stat {
  animation: stat-glow 600ms cubic-bezier(.16,1,.3,1) both;
}
.stats.is-in .stat:nth-child(1) { animation-delay: 0ms; }
.stats.is-in .stat:nth-child(2) { animation-delay: 120ms; }
.stats.is-in .stat:nth-child(3) { animation-delay: 240ms; }
.stats.is-in .stat:nth-child(4) { animation-delay: 360ms; }

/* Koleksiyon card stagger on first reveal */
.koleksiyon__card.reveal.is-in {
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

/* Hero content leather warmth overlay */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(44,24,16,0.3));
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .btn--primary::after { display: none; }
  .drawer a { opacity: 1; transform: none; transition: color 240ms ease; }
  .stats.is-in .stat { animation: none; opacity: 1; transform: none; }
  .process__timeline::after { transition: none; }
  .testimonial::after { transition: none; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; padding-bottom: 0 !important; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

