:root {
  --bg: #FAF7F2;
  --surface: #EFEBE4;
  --surface-2: #E6E0D6;
  --ink: #3D2B1F;
  --ink-soft: #6B5A4E;
  --accent: #B85C38;
  --accent-2: #5C8374;
  --line: rgba(61,43,31,.14);
  --line-strong: rgba(61,43,31,.28);
  --header-h: 72px;
  --container: 1180px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.008em;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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: 'Lora', 'Palatino Linotype', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  z-index: 10000;
  font-size: .875rem;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250,247,242,.98);
  box-shadow: 0 8px 24px -16px rgba(61,43,31,.18);
}
.site-header.scrolled .header-inner {
  height: 56px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  transition: height 240ms ease;
}
.logo {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { flex-shrink: 0; }
.logo span { color: var(--accent); }
.logo a { color: inherit; }
.logo a:hover { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.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); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px -4px rgba(184,92,56,.35);
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: rgba(61,43,31,.08);
  border: 2px solid rgba(61,43,31,.3);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
  transition: background 240ms, border-color 240ms;
}
.nav-toggle:hover {
  background: rgba(184,92,56,.12);
  border-color: rgba(184,92,56,.4);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 240ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== DRAWER ========== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 320ms;
  padding: calc(var(--header-h) + 24px) clamp(24px, 5vw, 40px) 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 0ms;
}
.drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--bg) !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  border-bottom: none;
  font-weight: 700;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

/* ========== MAIN ========== */
main {
  padding-top: var(--header-h);
}

/* ========== HERO ========== */
.hero {
  height: calc(100vh - var(--header-h));
  max-height: 900px;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 0;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--surface);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s cubic-bezier(.2,.7,.2,1);
}
.hero-visual:hover img {
  transform: scale(1.04);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--bg);
  position: relative;
}
.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 240ms, transform 180ms, box-shadow 240ms;
  border: none;
  cursor: pointer;
}
.hero-cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(61,43,31,.3), 0 0 24px rgba(184,92,56,.2);
}
.hero-cta svg { transition: transform 240ms; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent-2); }

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-visual { min-height: 360px; max-height: 50vh; }
  .hero-content { padding: clamp(24px, 5vw, 48px); }
}
@media (max-width: 640px) {
  .hero-visual { min-height: 280px; max-height: 40vh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* ========== SECTION COMMON ========== */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--ink);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ========== STITCH LINE DIVIDER ========== */
.stitch-divider {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  overflow: visible;
}
.stitch-divider svg {
  width: 100%;
  max-width: 800px;
  height: 48px;
  overflow: visible;
}
.stitch-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
  opacity: .5;
}
.needle-icon {
  fill: var(--accent);
  opacity: .7;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

/* ========== #HIKAYE ========== */
.hikaye-content {
  max-width: 720px;
  margin: 0 auto;
}
.hikaye-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}
.hikaye-content p:first-of-type::first-letter {
  font-family: 'Lora', Georgia, serif;
  font-size: 3.6rem;
  float: left;
  line-height: .85;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
}
.hikaye-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hikaye-author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  overflow: hidden;
  flex-shrink: 0;
}
.hikaye-author-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hikaye-author-name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
}
.hikaye-author-role {
  font-size: .82rem;
  color: var(--ink-soft);
}

/* Leather bookmark blockquote */
.blockquote-leather {
  position: relative;
  padding: 28px 32px 28px 48px;
  margin: 36px 0;
  background: var(--surface);
  border-radius: 8px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
}
.blockquote-leather::before {
  content: '';
  position: absolute;
  left: 18px; top: 16px; bottom: 16px;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* ========== #WORKSHOP ========== */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
  counter-reset: step;
}
.workshop-step {
  position: relative;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.workshop-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(184,92,56,.15), 0 0 0 1px rgba(184,92,56,.08);
  border-color: rgba(184,92,56,.2);
}
.step-number {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  transition: color 280ms;
}
.workshop-step:hover .step-number { color: var(--accent); opacity: .35; }
.workshop-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.workshop-step p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.step-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-step { padding: 24px; }
}

/* ========== #KURUMSAL ========== */
.kurumsal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 40px);
}
.kurumsal-card {
  background: var(--surface);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.kurumsal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(184,92,56,.18), 0 0 24px rgba(184,92,56,.08);
}
.kurumsal-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.kurumsal-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.kurumsal-card ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.kurumsal-card li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: .88rem;
  color: var(--ink);
}
.kurumsal-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .kurumsal-grid { grid-template-columns: 1fr; }
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(184,92,56,.15), 0 0 20px rgba(184,92,56,.08);
  border-color: var(--accent);
}
.pricing-card.is-featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pricing-card.is-featured .pricing-label,
.pricing-card.is-featured .pricing-note,
.pricing-card.is-featured .pricing-includes li,
.pricing-card.is-featured .pricing-excludes li {
  color: rgba(250,247,242,.75);
}
.pricing-card.is-featured .pricing-price { color: var(--bg); }
.pricing-card.is-featured .pricing-includes li::before { background: var(--accent); }
.pricing-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-price small {
  font-size: .55em;
  font-weight: 400;
  opacity: .7;
}
.pricing-note {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-includes, .pricing-excludes {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.pricing-includes li, .pricing-excludes li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: .84rem;
  color: var(--ink-soft);
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 2px;
  background: var(--accent-2);
  border-radius: 1px;
}
.pricing-excludes li::before {
  content: '×';
  position: absolute;
  left: 2px; top: 4px;
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
}
.pricing-disclaimer {
  margin-top: 24px;
  font-size: .78rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ========== #GALERI ========== */
.galeri-masonry {
  columns: 3;
  column-gap: 20px;
}
.galeri-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.galeri-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(184,92,56,.15), 0 0 16px rgba(184,92,56,.06);
}
.galeri-item img {
  width: 100%; display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.galeri-item:hover img { transform: scale(1.04); }
.galeri-caption {
  padding: 16px 18px;
}
.galeri-caption p {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 6px;
}
.galeri-caption cite {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .galeri-masonry { columns: 2; column-gap: 14px; }
  .galeri-item { margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .galeri-masonry { columns: 1; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(184,92,56,.12), 0 0 16px rgba(184,92,56,.06);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Lora', Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
  position: absolute;
  top: 16px; left: 20px;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial-author {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
}
.testimonial-meta {
  font-size: .72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ========== #TAKVIM ========== */
.takvim-list {
  max-width: 720px;
  margin: 0 auto;
}
.takvim-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background 240ms;
}
.takvim-item:hover {
  background: var(--surface);
  margin: 0 -16px;
  padding: 20px 16px;
  border-radius: 8px;
}
.takvim-date {
  text-align: center;
  min-width: 64px;
}
.takvim-day {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.takvim-month {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.takvim-info h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.takvim-info p {
  font-size: .82rem;
  color: var(--ink-soft);
}
.takvim-status {
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.takvim-status.az-kaldi {
  background: rgba(184,92,56,.12);
  color: var(--accent);
}
.takvim-status.acik {
  background: rgba(92,131,116,.12);
  color: var(--accent-2);
}
@media (max-width: 640px) {
  .takvim-item { grid-template-columns: auto 1fr; gap: 14px; }
  .takvim-status { grid-column: 1 / -1; justify-self: start; }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  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 0;
  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: 24px;
}
.faq-body p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ========== #KAYIT FORM ========== */
.form-section {
  background: var(--surface);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
  max-width: 680px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .field-full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,92,56,.12);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.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 {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-checkbox label {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 240ms, transform 180ms, box-shadow 240ms;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(61,43,31,.25), 0 0 20px rgba(184,92,56,.12);
}
.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: clamp(24px, 5vw, 40px); border-radius: 16px; }
}
@media (min-width: 641px) {
  .btn-submit { width: auto; min-width: 220px; }
}

/* ========== STATS BAND ========== */
.stats-band {
  background: var(--ink);
  padding: clamp(32px, 5vw, 48px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(250,247,242,.6);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== NOTES / LAST UPDATED ========== */
.notes-section {
  background: var(--surface);
}
.notes-list {
  max-width: 600px;
}
.note-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.note-date {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.note-text {
  font-size: .88rem;
  color: var(--ink-soft);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(250,247,242,.7);
  padding: clamp(40px, 6vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 14px;
}
.footer-brand span { color: var(--accent); }
.footer-desc {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250,247,242,.2);
  border-radius: 8px;
  color: rgba(250,247,242,.6);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(184,92,56,.3);
}

.footer-col h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(250,247,242,.65);
  padding: 5px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover {
  color: var(--bg);
  padding-left: 4px;
}
.footer-col p {
  font-size: .85rem;
  line-height: 1.6;
}
.footer-col .contact-line {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: .85rem;
}
.footer-col .contact-line svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-col .contact-line a {
  padding: 0;
  display: inline;
}

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
}
.footer-bottom a {
  color: rgba(250,247,242,.5);
  padding: 0;
}
.footer-bottom a:hover { color: var(--bg); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-vkn {
  font-size: .72rem;
  color: rgba(250,247,242,.35);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(250,247,242,.85);
  border-radius: 14px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 320ms;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,.35);
}
body.cookie-banner-active.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: .82rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-text a { color: var(--accent); }
.cookie-text a:hover { color: var(--bg); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 240ms, color 240ms;
  border: none;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
}
.cookie-actions .cookie-accept:hover {
  background: #c96b48;
  color: var(--bg);
}
.cookie-actions .cookie-reject {
  background: rgba(250,247,242,.18);
  color: var(--bg);
  border: 2px solid rgba(250,247,242,.55);
  font-weight: 700;
}
.cookie-actions .cookie-reject:hover {
  background: rgba(250,247,242,.3);
  color: var(--bg);
  border-color: rgba(250,247,242,.8);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: rgba(250,247,242,.6);
  border: 1px solid rgba(250,247,242,.2);
}
.cookie-actions .cookie-settings:hover {
  background: rgba(250,247,242,.1);
  color: var(--bg);
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(.16,.73,.24,.98),
              transform 750ms cubic-bezier(.16,.73,.24,.98);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 100ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ========== STITCH ANIMATION (niche) ========== */
@keyframes stitch-dash {
  to { stroke-dashoffset: -24; }
}
.stitch-animated {
  animation: stitch-dash 2s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .stitch-animated { animation: none; }
}

/* Needle-stitch underline on headings */
.stitch-underline {
  position: relative;
  display: inline-block;
}
.stitch-underline::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--accent) 0, var(--accent) 6px,
    transparent 6px, transparent 10px
  );
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 500ms 100ms, transform 900ms cubic-bezier(.16,.73,.24,.98);
}
.stitch-underline.is-in::after {
  opacity: .5;
  transform: scaleX(1);
}

/* Thread weave pattern on surfaces */
.thread-pattern {
  position: relative;
}
.thread-pattern::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 8px,
    rgba(184,92,56,.06) 8px, rgba(184,92,56,.06) 9px
  );
  border-radius: 0 16px 0 0;
  pointer-events: none;
}

/* Leather texture hover */
.leather-hover {
  position: relative;
  overflow: hidden;
}
.leather-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(184,92,56,.1) 0%, rgba(184,92,56,.03) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,.73,.24,.98);
  pointer-events: none;
}
.leather-hover:hover::after { opacity: 1; }

/* Book page turn on cards */
@keyframes page-turn {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(-6deg); }
  100% { transform: rotateY(0deg); }
}

/* Counter animation */
.counter { font-variant-numeric: tabular-nums; }

/* ========== BTN STYLES ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
  border: none;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(184,92,56,.3), 0 0 20px rgba(184,92,56,.15);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  border: 2px solid var(--line-strong);
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  cursor: pointer;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== PAGE HERO (subpages) ========== */
.page-hero {
  min-height: 240px;
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 80px) 0;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.page-hero .section-subtitle { margin-bottom: 0; }

/* ========== CONTACT CARDS ========== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(184,92,56,.12), 0 0 16px rgba(184,92,56,.06);
  border-color: rgba(184,92,56,.2);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(184,92,56,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-card a, .contact-card p {
  font-size: .92rem;
  word-break: break-all;
}
.contact-card .card-note {
  font-size: .75rem;
  color: var(--ink-soft);
}

/* Hours mini-grid */
.hours-grid {
  display: grid;
  gap: 4px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
}
.hour-row.today {
  color: var(--accent);
  font-weight: 700;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

/* ========== 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: 6px;
  position: relative;
}
.table-scroll > table { margin: 0 !important; min-width: 420px; width: 100%; }
@media (max-width: 640px) {
  .table-scroll {
    background:
      linear-gradient(to right, var(--bg) 30%, transparent) left / 40px 100% no-repeat,
      linear-gradient(to left, var(--bg) 30%, transparent) right / 40px 100% no-repeat;
    background-attachment: local;
  }
  .table-scroll > table { min-width: 420px; }
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
[style*="max-width"] { min-width: 0; }
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 14px;
  text-align: left;
  font-size: .88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
}

/* ========== THANK YOU ========== */
.thankyou-section {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.thankyou-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: rgba(92,131,116,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}
.thankyou-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.thankyou-section p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== 404 ========== */
.error-section {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.error-code {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
}
.error-section h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.error-section p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ========== PROCESS STEPS (about page) ========== */
.process-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--accent) 0, var(--accent) 6px,
    transparent 6px, transparent 12px
  );
  opacity: .4;
}
.process-step {
  position: relative;
  padding-bottom: 36px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.process-step-time {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(184,92,56,.15), 0 0 0 1px rgba(184,92,56,.08);
}
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--surface);
  margin: 0 auto 16px;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ========== SITEMAP PAGE ========== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.sitemap-group h3 {
  font-size: .95rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-group ul {
  list-style: none;
  padding: 0;
}
.sitemap-group li { margin-bottom: 6px; }
.sitemap-group a {
  font-size: .88rem;
  color: var(--ink);
  padding: 4px 0;
  display: inline-block;
}
.sitemap-group a:hover { color: var(--accent); }

/* ========== FOCUS RINGS ========== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== DARK BAND ========== */
.band-dark {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(48px, 8vw, 80px) 0;
}
.band-dark .section-eyebrow { color: var(--accent); }
.band-dark .section-title { color: var(--bg); }
.band-dark .section-subtitle { color: rgba(250,247,242,.65); }

/* ========== WORD BREAK UTILS ========== */
.break-word {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ========== LEATHER WARM GLOW ========== */
@keyframes warm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,92,56,0); }
  50% { box-shadow: 0 0 24px 4px rgba(184,92,56,.12), 0 0 8px 1px rgba(184,92,56,.08); }
}
.hero-cta { animation: warm-pulse 3.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .hero-cta { animation: none; }
}

.takvim-item {
  transition: background 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, transform 280ms;
}
.takvim-item:hover {
  box-shadow: 0 4px 16px -4px rgba(184,92,56,.12);
  transform: translateX(2px);
}

.faq-item summary {
  transition: color 280ms cubic-bezier(.2,.7,.2,1), padding-left 280ms;
}
.faq-item summary:hover {
  padding-left: 6px;
}

.drawer .drawer-cta:hover {
  box-shadow: 0 4px 16px -4px rgba(184,92,56,.25);
}

@media (max-width: 640px) {
  body.cookie-banner-active  .cookie-banner {
    bottom: 12px; left: 12px; right: 12px;
    padding: 18px 20px;
  }
  .cookie-actions {
    gap: 6px;
  }
  .cookie-actions button {
    min-height: 48px;
    font-size: .85rem;
  }
}

.process-step {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.process-step:hover {
  transform: translateX(6px);
  filter: drop-shadow(2px 0 8px rgba(184,92,56,.08));
}
@media (prefers-reduced-motion: reduce) {
  .process-step:hover { transform: none; filter: none; }
}

/* ========== LEATHER CRAFT MICRO-EFFECTS ========== */

/* Warm leather grain on cards hover */
.workshop-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("data:image/svg+xml,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='.4' fill='%23B85C38' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 0;
}
.workshop-step:hover::before { opacity: 1; }

/* Stitch-line border reveal on workshop cards */
.workshop-step {
  background-image:
    linear-gradient(var(--bg), var(--bg)),
    repeating-linear-gradient(0deg, var(--accent) 0 4px, transparent 4px 8px);
  background-size: calc(100% - 3px) 100%, 3px 100%;
  background-position: left, right;
  background-repeat: no-repeat;
  background-clip: padding-box, padding-box;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, background-size 500ms cubic-bezier(.2,.7,.2,1);
}
.workshop-step:hover {
  background-size: calc(100% - 3px) 100%, 3px 100%;
  box-shadow: 0 16px 40px -12px rgba(184,92,56,.15), 0 0 0 1px rgba(184,92,56,.08);
}

/* Pricing card warm leather glow */
.pricing-card:hover {
  box-shadow:
    0 16px 40px -12px rgba(184,92,56,.18),
    0 0 20px rgba(184,92,56,.08),
    inset 0 1px 0 rgba(184,92,56,.06);
}
.pricing-card.is-featured:hover {
  box-shadow:
    0 20px 48px -12px rgba(61,43,31,.35),
    0 0 24px rgba(184,92,56,.15);
}

/* Testimonial card stitch corner accent */
.testimonial-card {
  background-image:
    linear-gradient(135deg, transparent 12px, var(--bg) 12px);
  position: relative;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 1px, transparent 1px 4px
  );
  opacity: .2;
  border-radius: 0 0 4px 0;
  pointer-events: none;
  transition: opacity 300ms;
}
.testimonial-card:hover::after { opacity: .5; }

/* Kurumsal card warm shadow */
.kurumsal-card:hover {
  box-shadow:
    0 20px 48px -16px rgba(184,92,56,.2),
    0 0 24px rgba(184,92,56,.08),
    inset 0 -2px 0 rgba(184,92,56,.1);
}

/* Gallery items leather patina overlay */
.galeri-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(61,43,31,.04) 80%,
    rgba(61,43,31,.12) 100%
  );
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  border-radius: inherit;
}
.galeri-item:hover::after { opacity: 1; }

/* Contact card needle icon rotate */
.contact-card-icon {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), background 300ms;
}
.contact-card:hover .contact-card-icon {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(184,92,56,.14);
}

/* Team photo warm border on hover */
.team-photo {
  transition: box-shadow 400ms cubic-bezier(.2,.7,.2,1), transform 400ms;
  border: 3px solid transparent;
}
.team-card:hover .team-photo {
  box-shadow: 0 0 0 3px rgba(184,92,56,.2), 0 8px 24px -8px rgba(184,92,56,.15);
  transform: scale(1.04);
  border-color: rgba(184,92,56,.15);
}

/* Takvim date warm accent on hover */
.takvim-item:hover .takvim-day {
  text-shadow: 0 0 12px rgba(184,92,56,.25);
}

/* Enhanced stagger reveal with leather-inspired easing */
.reveal {
  transition-timing-function: cubic-bezier(.16,.73,.24,.98);
}

/* Footer social leather glow */
.footer-social a {
  transition: background 280ms cubic-bezier(.2,.7,.2,1), color 280ms, border-color 280ms, box-shadow 280ms;
}
.footer-social a:hover {
  box-shadow: 0 0 16px rgba(184,92,56,.35), 0 4px 12px -4px rgba(184,92,56,.2);
}

/* Stats band counter warm glow */
@keyframes stat-glow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 20px rgba(184,92,56,.2); }
}
.reveal.is-in .stat-number {
  animation: stat-glow 2s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-in .stat-number { animation: none; }
}

/* Enhanced button transitions */
.btn-primary, .btn-ghost, .hero-cta, .nav-cta {
  transition-timing-function: cubic-bezier(.2,.7,.2,1);
}

/* Smoother FAQ open/close */
.faq-item .faq-body {
  transition: height 400ms cubic-bezier(.2,.7,.2,1),
              padding-block-end 400ms cubic-bezier(.2,.7,.2,1);
}

/* Cookie banner smoother entrance */
.cookie-banner {
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 320ms;
}

/* Drawer smooth slide with backdrop blur */
@supports (backdrop-filter: blur(4px)) {
  .drawer-backdrop.is-open {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* Scrollbar styling for table-scroll */
.table-scroll::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; opacity: .5; }

@media (prefers-reduced-motion: reduce) {
  .workshop-step:hover, .pricing-card:hover, .kurumsal-card:hover,
  .galeri-item:hover, .testimonial-card:hover, .contact-card:hover,
  .takvim-item:hover, .team-card:hover, .team-card:hover .team-photo {
    transform: none;
  }
}

/* ========== PRINT ========== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; background: #fff; }
}

.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;
}

