:root {
  --bg: #1C1916;
  --surface: #2A2520;
  --surface-2: #352F29;
  --ink: #D4C8B8;
  --ink-soft: #9A8E7F;
  --accent: #C8965A;
  --accent-2: #6B5B4E;
  --line: rgba(200,150,90,0.18);
  --line-strong: rgba(200,150,90,0.35);
  --header-h: 72px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Source Serif 4', 'Georgia', 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;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Palatino Linotype', 'Palatino', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; box-shadow: 0 0 0 4px rgba(200,150,90,0.15); }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 0 0 6px 6px;
  font-size: 0.875rem; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

.container {
  width: 100%; max-width: 1080px; 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(28,25,22,0.88);
  backdrop-filter: blur(2px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(28,25,22,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}

.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  pointer-events: none;
}

.header__inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,32px);
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.15rem,2.2vw,1.4rem);
  color: var(--accent) !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo:hover { color: var(--ink) !important; }

.nav-desktop { display: none; }
@media (min-width:1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: 28px;
  }
  .nav-desktop a {
    font-family: 'Source Serif 4', serif;
    font-size: 0.9rem; color: var(--ink-soft);
    position: relative; padding: 4px 0;
    transition: color 240ms cubic-bezier(.4,0,.2,1);
  }
  .nav-desktop a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 280ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop .nav-cta {
    padding: 8px 22px; border-radius: 4px;
    background: var(--accent); color: var(--bg) !important;
    font-weight: 600; font-size: 0.85rem;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--ink); color: var(--bg) !important;
  }
}

/* ===================== NAV TOGGLE ===================== */

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 8px;
  background: rgba(200,150,90,0.06); border: 1.5px solid var(--accent);
  border-radius: 4px; cursor: pointer;
  z-index: 1100; position: relative;
  transition: border-color 240ms, background 240ms, box-shadow 240ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { border-color: var(--ink); background: rgba(200,150,90,0.12); box-shadow: 0 0 12px -3px rgba(200,150,90,0.3); }
@media (min-width:1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; width: 100%; height: 2.5px;
  background: var(--accent); border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 240ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--ink); }
.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; z-index: 1040;
  background: rgba(0,0,0,0.55);
  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);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
  padding: calc(var(--header-h) + 24px) 32px 32px;
}
.drawer.is-open { transform: translateX(0); }

.drawer nav { display: flex; flex-direction: column; gap: 4px; }

.drawer nav a {
  display: block; padding: 14px 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.25rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer nav a:hover,
.drawer nav a.is-active { color: var(--accent); padding-left: 8px; }

.drawer .drawer-cta {
  margin-top: 16px; text-align: center;
  background: var(--accent); color: var(--bg) !important;
  padding: 14px 24px; border-radius: 4px;
  font-weight: 600; border-bottom: none;
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--bg) !important; }

/* ===================== DRAWER CLOSE ===================== */


/* ===================== BUTTONS ===================== */

.btn-primary {
  display: inline-block;
  padding: 14px 32px; border-radius: 4px;
  background: var(--accent); color: var(--bg);
  font-family: 'Source Serif 4', serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  position: relative;
  box-shadow: 0 2px 16px -4px rgba(200,150,90,0.2);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -4px rgba(200,150,90,0.4), 0 0 20px -4px rgba(200,150,90,0.2);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px; border-radius: 4px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
  font-family: 'Source Serif 4', serif; font-weight: 600;
  font-size: 0.95rem; cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px -4px rgba(200,150,90,0.2);
}

/* ===================== HERO ===================== */

.hero {
  min-height: min(calc(100vh - var(--header-h)), 960px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero__inner {
  max-width: 1080px; margin: 0 auto; width: 100%;
  padding: clamp(40px,8vw,80px) clamp(16px,4vw,32px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px,4vw,64px);
  align-items: center;
}

.hero__mechanism {
  position: relative;
  animation: mechanism-reveal 1.2s cubic-bezier(.2,.7,.2,1) 0.1s both;
}
@keyframes mechanism-reveal {
  from { clip-path: circle(0% at 50% 50%); }
  to   { clip-path: circle(72% at 50% 50%); }
}

.mechanism-svg { width: 100%; height: auto; }

.hero__content { position: relative; }

.hero__eyebrow {
  display: inline-block;
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fade-up 0.7s cubic-bezier(.16,.73,.25,1) 0.25s both;
}

.hero__title {
  font-size: clamp(2.25rem,5vw,4.5rem);
  line-height: 1.05; margin-bottom: 24px;
  animation: fade-up 0.7s cubic-bezier(.16,.73,.25,1) 0.35s both;
}

.hero__sub {
  font-size: clamp(1rem,1.6vw,1.15rem);
  color: var(--ink-soft); line-height: 1.7;
  max-width: 440px; margin-bottom: 32px;
  animation: fade-up 0.7s cubic-bezier(.16,.73,.25,1) 0.5s both;
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 28px;
  animation: fade-up 0.7s cubic-bezier(.16,.73,.25,1) 0.6s both;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--ink-soft);
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 3px; letter-spacing: 0.04em;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__cta-wrap {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  animation: fade-up 0.7s cubic-bezier(.16,.73,.25,1) 0.7s both;
}

.hero__cta { position: relative; padding-left: 40px; }
.hero__cta::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 1.5px solid currentColor; border-radius: 50%;
  transition: transform 360ms ease;
}
.hero__cta:hover::before { transform: translateY(-50%) rotate(180deg); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width:767px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__mechanism { max-width: 340px; margin: 0 auto; }
}

/* ===================== GEAR ANIMATIONS ===================== */

.gear-barrel  { animation: gear-spin 60s linear infinite; }
.gear-center  { animation: gear-spin 40s linear infinite reverse; }
.gear-third   { animation: gear-spin 28s linear infinite; }
.gear-escape  { animation: gear-spin 15s linear infinite reverse; }
.gear-balance { animation: balance-tick 2s cubic-bezier(.4,0,.6,1) infinite alternate; }

@keyframes gear-spin { to { transform: rotate(360deg); } }
@keyframes balance-tick {
  0%   { transform: rotate(-25deg); }
  100% { transform: rotate(25deg); }
}

@media (prefers-reduced-motion: reduce) {
  .gear-barrel,.gear-center,.gear-third,.gear-escape,.gear-balance,
  .hero__mechanism { animation: none !important; clip-path: circle(72% at 50% 50%) !important; }
  .hero__eyebrow,.hero__title,.hero__sub,.hero__trust,.hero__cta-wrap {
    animation: none !important;
  }
}

/* ===================== STATS ===================== */

.section-stats {
  padding: clamp(40px,6vw,72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(16px,3vw,32px);
  text-align: center;
}
.stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(2rem,4vw,3rem);
  color: var(--accent);
  line-height: 1.1;
}
.stat__label {
  display: block; margin-top: 6px;
  font-size: 0.85rem; color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase;
}

@media (max-width:640px) {
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}

/* ===================== SECTION COMMON ===================== */

.section-pad { padding: clamp(64px,10vw,120px) 0; }

.section-eyebrow {
  display: block; text-align: center;
  font-family: 'Source Serif 4', serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem,4vw,2.8rem);
  margin-bottom: 16px;
}

.section-lead {
  text-align: center;
  max-width: 600px; margin: 0 auto 48px;
  color: var(--ink-soft); font-size: 1.05rem;
}

/* ===================== GOLD DIVIDER ===================== */

.gold-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 0 auto 48px; max-width: 320px;
}
.gold-divider::before,
.gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.divider-gear { color: var(--accent); flex-shrink: 0; }

/* ===================== TIMELINE (#miras) ===================== */

.section-miras { background: var(--bg); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 48px; }
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.timeline__item {
  position: relative; padding-bottom: 64px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute; left: -48px; top: 4px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.timeline__marker svg { color: var(--accent); }

.timeline__year {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(1.4rem,3vw,1.8rem);
  color: var(--accent); margin-bottom: 8px;
}

.timeline__name {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 1.2rem; margin-bottom: 8px;
  color: var(--ink);
}

.timeline__text {
  color: var(--ink-soft); line-height: 1.75;
  max-width: 600px;
}

.timeline__img {
  margin-top: 20px; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
}
.timeline__img img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }

/* Pendulum swing on markers */
@keyframes pendulum-swing {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}
.timeline__marker { transform-origin: top center; animation: pendulum-swing 3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .timeline__marker { animation: none; }
}

/* ===================== MANIFESTO ===================== */

.manifesto {
  padding: clamp(64px,10vw,100px) 0;
  text-align: center;
  position: relative;
}
.manifesto::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px; background: var(--accent); opacity: 0.4;
}
.manifesto blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(2rem,5vw,3.8rem);
  color: var(--ink);
  line-height: 1.15;
  max-width: 800px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,32px);
}
.manifesto blockquote span { color: var(--accent); }

/* ===================== PROCESS (#restorasyon) ===================== */

.section-process { background: var(--surface); }

.process-grid {
  display: grid; gap: 0;
  max-width: 800px; margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start;
  padding: clamp(28px,4vw,48px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-bottom: none; }

.step__number {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 2.4rem; color: var(--accent-2);
  line-height: 1;
}
@keyframes escapement-tick {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(6deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-6deg); }
  100% { transform: rotate(0deg); }
}

.step__title {
  font-size: 1.2rem; margin-bottom: 8px;
}
.step__time {
  display: inline-block;
  font-size: 0.78rem; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.step__text { color: var(--ink-soft); line-height: 1.75; }

@media (max-width:640px) {
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step__number { font-size: 1.8rem; }
}

/* ===================== PORTFOLIO (#koleksiyon) ===================== */

.section-portfolio { background: var(--bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(16px,3vw,28px);
  max-width: 900px; margin: 0 auto;
}
.portfolio-grid .port-card:first-child {
  grid-column: 1 / -1;
}

.port-card {
  position: relative;
  background: var(--surface);
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(200,150,90,0.22), 0 0 0 1px rgba(200,150,90,0.08);
  border-color: var(--accent-2);
}

.port-card__images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
}
.port-card__images figure { position: relative; overflow: hidden; }
.port-card__images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.port-card:hover .port-card__images img { transform: scale(1.04); }

.port-card__label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: rgba(28,25,22,0.8);
  padding: 3px 8px; border-radius: 2px;
}

.port-card__body { padding: clamp(16px,2vw,24px); }
.port-card__title {
  font-size: 1.05rem; margin-bottom: 6px;
}
.port-card__meta {
  font-size: 0.8rem; color: var(--ink-soft);
}

@media (max-width:640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===================== PRICING (#fiyatlar) ===================== */

.section-pricing { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(16px,2vw,24px);
  max-width: 960px; margin: 0 auto;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px,3vw,36px);
  display: flex; flex-direction: column;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(200,150,90,0.18), 0 0 20px -8px rgba(200,150,90,0.1);
  border-color: var(--accent-2);
}
.price-card.is-featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 0 24px -8px rgba(200,150,90,0.12);
}
.price-card.is-featured::before {
  content: 'En Çok Tercih Edilen';
  position: absolute; top: -12px; left: 24px;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent); color: var(--bg);
  padding: 3px 12px; border-radius: 3px;
}

.price-card__name {
  font-size: 1rem; margin-bottom: 8px;
}
.price-card__price {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(1.6rem,3vw,2.2rem);
  color: var(--accent); margin-bottom: 6px;
}
.price-card__from {
  font-size: 0.78rem; color: var(--ink-soft);
  margin-bottom: 20px;
}

.price-card__list { list-style: none; flex: 1; margin-bottom: 20px; }
.price-card__list li {
  padding: 6px 0; font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: start; gap: 8px;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list .check { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.price-card__list .cross { color: var(--accent-2); flex-shrink: 0; margin-top: 3px; }

.price-card__time {
  font-size: 0.8rem; color: var(--ink-soft);
  margin-bottom: 16px; padding-top: 8px;
  border-top: 1px solid var(--line);
}

.pricing-disclaimer {
  text-align: center; margin-top: 32px;
  font-size: 0.82rem; color: var(--ink-soft);
  font-style: italic;
}

@media (max-width:768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===================== TESTIMONIALS ===================== */

.section-testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px,3vw,32px);
  max-width: 900px; margin: 0 auto;
}
.testimonials-grid .testimonial-card:first-child {
  grid-column: 1 / -1;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px,3vw,36px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px rgba(200,150,90,0.15), 0 0 16px -6px rgba(200,150,90,0.08);
  border-color: var(--accent-2);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--accent); opacity: 0.4;
  position: absolute; top: 12px; left: 20px; line-height: 1;
}

.testimonial-card__text {
  color: var(--ink); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 16px;
  padding-top: 8px;
}
.testimonial-card__author {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600;
}
.testimonial-card__meta {
  font-size: 0.75rem; color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width:640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===================== FAQ ===================== */

.section-faq { background: var(--surface); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px,2vw,22px) 0;
  cursor: pointer; list-style: none;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(0.95rem,1.4vw,1.1rem);
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Source Serif 4', serif;
  font-style: normal; font-size: 1.4rem;
  color: var(--accent); flex-shrink: 0; margin-left: 16px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }

.faq-item .faq-body {
  height: 0;
  padding: 0 clamp(18px,3vw,28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

.faq-body p {
  color: var(--ink-soft); line-height: 1.75;
  font-size: 0.92rem;
}

/* ===================== RANDEVU (#randevu) ===================== */

.section-randevu { background: var(--bg); }

.randevu-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px,4vw,64px);
  max-width: 900px; margin: 0 auto;
  align-items: start;
}

.randevu-text { padding-top: 8px; }
.randevu-text h3 {
  font-size: 1.4rem; margin-bottom: 12px;
}
.randevu-text p {
  color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px;
}
.randevu-channels { list-style: none; }
.randevu-channels li {
  display: grid; grid-template-columns: auto 1fr; gap: 12px;
  align-items: start; padding: 10px 0;
  font-size: 0.9rem; color: var(--ink-soft);
  transition: color 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
}
.randevu-channels li:hover { color: var(--ink); transform: translateX(4px); }
.randevu-channels li svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.randevu-channels li:hover svg { color: var(--ink); }
.randevu-channels a { color: inherit; word-break: break-all; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px,3vw,36px);
}

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.85rem;
  color: var(--ink-soft); margin-bottom: 6px;
  font-weight: 600;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 4px; color: var(--ink);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,150,90,0.15);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field select option { background: var(--surface); color: var(--ink); }

.field-kvkk {
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  align-items: start; margin-bottom: 24px;
}
.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-kvkk span {
  font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5;
}
.field-kvkk a { color: var(--accent); text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

@media (max-width:768px) {
  .randevu-inner { grid-template-columns: 1fr; }
}

/* ===================== CANCELLATION ===================== */

.cancel-tiers {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 700px; margin: 24px auto 0;
}
.cancel-tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 6px; padding: 20px; text-align: center;
}
.cancel-tier__period {
  font-size: 0.78rem; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.cancel-tier__result {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width:640px) {
  .cancel-tiers { grid-template-columns: 1fr; }
}

/* ===================== 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;
}
.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 { border-collapse: collapse; width: 100%; }
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
th {
  font-family: 'Source Serif 4', serif;
  font-weight: 600; color: var(--ink);
  background: var(--surface);
}
td { color: var(--ink-soft); }

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px,6vw,72px) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  max-width: 1080px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,32px);
}

.footer__brand .logo { margin-bottom: 12px; display: inline-block; }
.footer__brand p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.65; max-width: 320px; }

.footer__col h4 {
  font-size: 0.9rem; margin-bottom: 14px; color: var(--accent);
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a { color: var(--ink-soft); font-size: 0.88rem; transition: color 240ms; }
.footer__col ul a:hover { color: var(--accent); }

.footer__bottom {
  margin-top: clamp(32px,4vw,48px);
  padding: 20px clamp(16px,4vw,32px);
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  max-width: 1080px; margin-left: auto; margin-right: auto;
}
.footer__copy { font-size: 0.78rem; color: var(--ink-soft); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer__legal a { font-size: 0.78rem; color: var(--ink-soft); }
.footer__legal a:hover { color: var(--accent); }

@media (max-width:768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================== CONTACT PAGE ===================== */

.contact-channels { max-width: 600px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px; padding-left: 8px; padding-right: 8px;
}
.contact-row:hover { transform: translateX(4px); background: var(--surface-2); }

.contact-row svg {
  width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg { color: var(--ink); transform: scale(1.08); }

.contact-row__content { min-width: 0; }
.contact-row__label {
  font-size: 0.78rem; color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px;
}
.contact-row__value {
  font-size: 0.95rem; color: var(--ink);
  word-break: break-all; overflow-wrap: anywhere;
}
.contact-row a { color: var(--ink); transition: color 240ms; }
.contact-row a:hover { color: var(--accent); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px,4vw,64px);
  align-items: start;
  margin-top: 40px;
}
@media (max-width:768px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

.about-workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px,3vw,28px);
  margin-top: 32px;
  align-items: start;
}
@media (max-width:768px) {
  .about-workshop-grid { grid-template-columns: 1fr; }
}

/* ===================== REVEAL ===================== */

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.16,.73,.25,1), transform 700ms cubic-bezier(.16,.73,.25,1);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 110ms);
}

.reveal.reveal-fallback {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-fallback { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===================== COOKIE BANNER ===================== */

.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 20px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 36px -8px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width:639px) {
  .cookie-banner { padding: 16px 18px; font-size: 0.9rem; left: 10px; right: 10px; bottom: 10px; max-width: none; }
  .cookie-banner__actions { gap: 8px; }
  .cookie-banner__actions button { min-width: 0; padding: 12px 14px; min-height: 48px; font-size: 0.88rem; }
}
@media (min-width:640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner__title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 1rem; margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 16px;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }

.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-banner__actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px; border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: background 240ms, color 240ms, transform 180ms;
}
.cookie-banner__actions button:active { transform: translateY(1px); }

.cookie-btn-accept {
  background: var(--accent); color: var(--bg); font-weight: 600;
  box-shadow: 0 2px 12px -2px rgba(200,150,90,0.35);
}
.cookie-btn-accept:hover { background: var(--ink); color: var(--bg); box-shadow: 0 4px 20px -4px rgba(200,150,90,0.45); }
.cookie-btn-reject { background: transparent; color: var(--ink-soft); border: 1px solid var(--line) !important; font-weight: 600; }
.cookie-btn-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong) !important; }
.cookie-btn-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line) !important; font-weight: 400; }
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ===================== THANK YOU PAGE ===================== */

.thankyou-section {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.thankyou-section h1 { margin-bottom: 16px; font-size: clamp(1.8rem,4vw,2.6rem); }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.05rem; }

/* ===================== ERROR 404 ===================== */

.error-section {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.error-section h1 {
  font-size: clamp(4rem,10vw,8rem); color: var(--accent-2); line-height: 1;
  margin-bottom: 16px;
}
.error-section h2 { font-size: clamp(1.2rem,3vw,1.8rem); margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===================== POLICY PAGES ===================== */

.policy-section {
  padding: clamp(48px,6vw,80px) 0;
}
.policy-section h1 {
  font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 40px; text-align: center;
}
.policy-section h2 {
  font-size: 1.3rem; margin: 48px 0 16px; color: var(--ink);
  padding-top: 32px; border-top: 1px solid var(--line);
}
.policy-section h2:first-of-type { border-top: none; padding-top: 0; }
.policy-section h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--ink); }
.policy-section p {
  color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px;
  max-width: 760px;
}
.policy-section ul, .policy-section ol {
  color: var(--ink-soft); margin: 0 0 16px 20px;
  line-height: 1.75;
}
.policy-section li { margin-bottom: 8px; }
.policy-section a { color: var(--accent); text-decoration: underline; }

/* ===================== SITE MAP ===================== */

.sitemap-section { padding: clamp(48px,6vw,80px) 0; }
.sitemap-section h1 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 32px; text-align: center; }
.sitemap-list { list-style: none; max-width: 600px; margin: 0 auto; }
.sitemap-list li { border-bottom: 1px solid var(--line); }
.sitemap-list a {
  display: block; padding: 14px 0;
  color: var(--ink-soft); font-size: 1rem;
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }

/* ===================== NICHE ANIMATIONS ===================== */

/* Mainspring coil draw */
@keyframes coil-draw {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 0; }
}
.coil-decoration.is-in path {
  stroke-dasharray: 200;
  animation: coil-draw 2s ease-out forwards;
}

/* Crown wind on CTA hover */
@keyframes crown-wind {
  0%   { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(180deg); }
}

/* Gear tooth shimmer on cards */
@keyframes gear-shimmer {
  0%   { opacity: 0.15; }
  50%  { opacity: 0.3; }
  100% { opacity: 0.15; }
}
.port-card::after {
  content: ''; position: absolute; top: -8px; right: -8px;
  width: 40px; height: 40px;
  border-radius: 50%; border: 6px solid var(--accent);
  border-style: dashed;
  opacity: 0.15;
  animation: gear-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

/* Hairspring breathing */
@keyframes hairspring-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .coil-decoration.is-in path { animation: none; stroke-dashoffset: 0; }
  .port-card::after { animation: none; }
}

/* ===================== COUNTER UP ===================== */

.stat__number { font-variant-numeric: tabular-nums; }

/* ===================== ABOUT PAGE ===================== */

.about-hero {
  padding: clamp(48px,8vw,100px) 0 clamp(32px,4vw,48px);
  text-align: center;
}
.about-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.about-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(20px,3vw,32px);
  max-width: 900px; margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px -8px rgba(200,150,90,0.15), 0 0 20px -6px rgba(200,150,90,0.08);
}
.team-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.3fr; }
.team-card__img {
  aspect-ratio: 3/4; overflow: hidden;
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: clamp(20px,3vw,32px); }
.team-card__name { font-size: 1.15rem; margin-bottom: 4px; }
.team-card__role {
  font-size: 0.8rem; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__bio { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; }

@media (max-width:768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card:first-child { grid-column: auto; grid-template-columns: 1fr; }
}

/* ===================== ENHANCED HOVER & THEME EFFECTS ===================== */

.process-step {
  transition: background 360ms;
  border-radius: 4px;
  padding-left: 8px; padding-right: 8px;
}
.process-step:hover {
  background: rgba(200,150,90,0.03);
}

.step__number {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), color 360ms;
}
.process-step:hover .step__number {
  transform: rotate(8deg);
  color: var(--accent);
}

.faq-item summary {
  transition: color 240ms, padding-left 240ms;
}
.faq-item summary:hover { padding-left: 6px; }

.gold-divider .divider-gear {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gold-divider.is-in .divider-gear {
  animation: gear-tick 0.6s ease 0.3s 1;
}
@keyframes gear-tick {
  0%   { transform: rotate(0deg); }
  40%  { transform: rotate(24deg); }
  70%  { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

.hero__cta::before {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), border-color 360ms;
}
.hero__cta:hover::before {
  transform: translateY(-50%) rotate(360deg);
  border-color: var(--ink);
}

.timeline__img {
  transition: box-shadow 360ms;
}
.timeline__item:hover .timeline__img {
  box-shadow: 0 8px 32px -8px rgba(200,150,90,0.15);
}

.footer__col ul a {
  position: relative;
}
.footer__col ul a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer__col ul a:hover::after { width: 100%; }

.contact-row {
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms, box-shadow 240ms;
}
.contact-row:hover {
  box-shadow: 0 4px 16px -4px rgba(200,150,90,0.08);
}

@media (prefers-reduced-motion: reduce) {
  .gold-divider.is-in .divider-gear { animation: none; }
  .process-step:hover, .testimonial-card:hover, .port-card:hover,
  .price-card:hover, .team-card:hover { transform: none; }
  .contact-row:hover { transform: none; }
  .faq-item summary:hover { padding-left: 0; }
}

/* ===================== ENHANCED WATCHMAKER THEME MICRO-EFFECTS ===================== */

.manifesto blockquote {
  animation: hairspring-breathe 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto blockquote { animation: none; }
}

.stat__number {
  transition: color 360ms, text-shadow 360ms;
}
.stats__grid > div:hover .stat__number {
  color: var(--ink);
  text-shadow: 0 0 24px rgba(200,150,90,0.3);
}

.cancel-tier {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.cancel-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(200,150,90,0.12);
  border-color: var(--accent-2);
}

.trust-badge {
  transition: border-color 240ms, color 240ms, transform 240ms;
}
.trust-badge:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.team-card__img img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card__img img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .cancel-tier:hover, .trust-badge:hover { transform: none; }
  .team-card:hover .team-card__img img { transform: none; }
  .stats__grid > div:hover .stat__number { text-shadow: none; }
}

/* ===================== PRINT ===================== */

@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  body { color: #111; background: #fff; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #111; text-decoration: underline; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}
