:root {
  --bg: #FDF6F0;
  --surface: #FFFFFF;
  --surface-2: #F7EDE4;
  --ink: #3A2E28;
  --ink-soft: #6B5D54;
  --accent: #B5564E;
  --accent-2: #D4A574;
  --line: rgba(58,46,40,0.12);
  --line-strong: rgba(58,46,40,0.25);
  --header-h: 80px;
  --container: 1180px;
  interpolate-size: allow-keywords;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: 'Source Sans 3','Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1,h2,h3,h4,h5 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem,5vw,4.5rem); }
h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem,2.5vw,1.8rem); }
h4 { font-size: clamp(1.1rem,1.8vw,1.3rem); }

.script-accent {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-weight: 400;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--surface);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.skip-link:focus { top: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px,4vw,32px);
  padding-right: clamp(16px,4vw,32px);
}

main { padding-top: var(--header-h); }

section { padding: clamp(3rem,8vw,6rem) 0; }

.section-header { margin-bottom: clamp(2rem,4vw,4rem); }

.gold-sep {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--accent-2);
  margin: 2.5rem auto;
  border: none;
}

.gold-sep--left { margin-left: 0; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(253,246,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 10;
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo:hover { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav-desktop a:not(.nav-cta)::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:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  padding: 10px 24px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.85rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 240ms, background 240ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent-2);
  background: var(--surface-2);
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  transition: transform 280ms cubic-bezier(.22,.61,.36,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] { border-color: transparent; background: none; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width:1024px) {
  .nav-toggle { display: flex; }
  .nav-desktop { display: none; }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,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);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) clamp(24px,6vw,40px) 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .btn-primary {
  margin-top: 24px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  border-bottom: none;
}
.drawer .btn-primary:hover { background: var(--accent); color: var(--surface); }

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--surface);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms, color 240ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(181,86,78,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 60ms;
  pointer-events: none;
}
.btn-primary:active::before { opacity: 1; transition: opacity 0ms; }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent-2);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  clip-path: circle(5% at 50% 50%);
  animation: aperture-open 1.6s cubic-bezier(.22,.61,.36,1) 0.05s forwards;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}
@keyframes aperture-open {
  0% { clip-path: circle(5% at 50% 50%); }
  60% { clip-path: circle(80% at 50% 50%); }
  100% { clip-path: circle(90% at 50% 50%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,46,40,0.25) 0%, rgba(58,46,40,0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--surface);
  opacity: 0;
  animation: hero-content-in 1s cubic-bezier(.22,.61,.36,1) 0.5s forwards;
  max-width: 700px;
  padding: 0 clamp(16px,4vw,32px);
}
.hero__content .section-eyebrow { color: var(--accent-2); }
.hero__content h1 {
  color: var(--surface);
  margin: 0.5rem 0 1rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.hero__sub {
  font-size: clamp(1rem,2vw,1.3rem);
  max-width: 540px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.hero__content .btn-primary { background: var(--accent); color: var(--surface); }
.hero__content .btn-primary:hover { background: var(--surface); color: var(--ink); }

@keyframes hero-content-in {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 2rem;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--surface);
}
.trust-strip__item svg { width: 16px; height: 16px; flex-shrink: 0; }

.stats-strip {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(2rem,4vw,3rem) 0;
}
.stats-strip .container {
  display: flex;
  justify-content: center;
  gap: clamp(2rem,6vw,6rem);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.5rem,5vw,3.5rem);
  letter-spacing: -0.02em;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

.story { background: var(--bg); }
.story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  align-items: center;
}
.story__img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.story__img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(.2,.7,.2,1);
}
.story__img:hover img { transform: scale(1.04); }

.story__img::before,
.story__img::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--accent-2);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1), transform 360ms cubic-bezier(.2,.7,.2,1);
  z-index: 2;
  pointer-events: none;
}
.story__img::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
  transform: translate(-6px,-6px);
}
.story__img::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
  transform: translate(6px,6px);
}
.story__img:hover::before,
.story__img:hover::after {
  opacity: 1;
  transform: translate(0,0);
}

.story__text .script-accent {
  font-size: clamp(2rem,4vw,3rem);
  color: var(--accent-2);
  display: block;
  margin-bottom: 0.5rem;
}
.story__text p {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

@media (max-width:768px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__img img { aspect-ratio: 16/10; }
}

.timeline-section { background: var(--surface); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--accent-2);
  transform: translateX(-50%);
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: clamp(2rem,4vw,3rem);
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 50%; top: 24px;
  width: 12px; height: 12px;
  background: var(--accent-2);
  border: 3px solid var(--surface);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 3px var(--accent-2);
}
.timeline__item:nth-child(odd) .timeline__card {
  grid-column: 1; grid-row: 1; text-align: right;
}
.timeline__item:nth-child(odd) .timeline__date {
  grid-column: 2; grid-row: 1; text-align: left; padding-left: 40px;
}
.timeline__item:nth-child(even) .timeline__card {
  grid-column: 2; grid-row: 1;
}
.timeline__item:nth-child(even) .timeline__date {
  grid-column: 1; grid-row: 1; text-align: right; padding-right: 40px;
}
.timeline__date {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
}
.timeline__card { overflow: hidden; border-radius: 4px; position: relative; }
.timeline__card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 480ms cubic-bezier(.2,.7,.2,1);
}
.timeline__card:hover img { transform: scale(1.04); }

.timeline__card::before,
.timeline__card::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--accent-2);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1), transform 360ms cubic-bezier(.2,.7,.2,1);
  z-index: 3;
  pointer-events: none;
}
.timeline__card::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
  transform: translate(-4px,-4px);
}
.timeline__card::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
  transform: translate(4px,4px);
}
.timeline__card:hover::before,
.timeline__card:hover::after {
  opacity: 1;
  transform: translate(0,0);
}

.timeline__card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width:768px) {
  .timeline::before { left: 16px; }
  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 40px;
  }
  .timeline__item::before { left: 16px; }
  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    grid-column: 1; text-align: left;
  }
  .timeline__item:nth-child(odd) .timeline__date,
  .timeline__item:nth-child(even) .timeline__date {
    grid-column: 1; text-align: left; padding: 0;
  }
}

.testimonials { background: var(--bg); position: relative; overflow: hidden; }
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials::before { width: 300px; height: 300px; top: -80px; right: -60px; }
.testimonials::after { width: 220px; height: 220px; bottom: -50px; left: -40px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1.5rem,3vw,2rem);
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 6px;
  padding: clamp(1.5rem,3vw,2rem);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -12px rgba(181,86,78,0.15);
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 3rem;
  color: var(--accent-2);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  display: block;
}
.testimonial-card .cite-detail {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width:768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.promises { background: var(--surface); }
.promises__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1.5rem,3vw,2.5rem);
  max-width: 960px;
  margin: 0 auto;
}
.promise-card {
  text-align: center;
  padding: clamp(1.5rem,3vw,2rem);
}
.promise-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--accent);
}
.promise-card__icon svg { width: 100%; height: 100%; }
.promise-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.promise-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width:640px) {
  .promises__grid { grid-template-columns: 1fr; }
}

.process { background: var(--bg); }
.process__steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: var(--accent-2);
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: clamp(1.5rem,3vw,2rem);
  position: relative;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.process-step__content h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step__content .step-time {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.process-step__content p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width:640px) {
  .process-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .process-step__num { width: 44px; height: 44px; font-size: 1rem; }
  .process__steps::before { left: 22px; }
}

.pricing { background: var(--surface); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,2vw,1.5rem);
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg);
  border-radius: 8px;
  padding: clamp(1.5rem,3vw,2.5rem);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  min-width: 0;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -12px rgba(181,86,78,0.15);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface);
}
.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 12px;
}
.pricing-card__name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-style: normal;
}
.pricing-card__price {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2rem,3.5vw,2.5rem);
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.pricing-card__price span { font-size: 0.5em; font-style: normal; }
.pricing-card__duration {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.pricing-card__includes h4,
.pricing-card__excludes h4 {
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pricing-card__includes h4 { color: var(--ink); }
.pricing-card__excludes h4 { color: var(--ink-soft); font-size: 0.8rem; }
.pricing-card__includes ul,
.pricing-card__excludes ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.pricing-card__includes li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 6px 0 6px 20px;
  position: relative;
}
.pricing-card__includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 600;
}
.pricing-card__excludes li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0 4px 20px;
  position: relative;
  opacity: 0.7;
}
.pricing-card__excludes li::before { content: '\2014'; position: absolute; left: 0; }
.pricing-card .btn-primary,
.pricing-card .btn-ghost { width: 100%; text-align: center; display: block; }
.pricing__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.pricing__delivery {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

@media (max-width:768px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.faq { background: var(--bg); }
.faq__list { max-width: 800px; 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(1rem,2vw,1.25rem) 0;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-2);
  transition: transform 360ms cubic-bezier(.4,0,.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-answer {
  height: 0;
  padding: 0 clamp(18px,3vw,28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-answer {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-section {
  background: var(--ink);
  color: var(--surface);
}
.cta-section .section-eyebrow { color: var(--accent-2); }
.cta-section h2 { color: var(--surface); }
.cta-section .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.cta-form { max-width: 640px; margin: 0 auto; }
.cta-form .field { margin-bottom: 1.2rem; }
.cta-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form input[type="tel"],
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--surface);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  transition: border-color 240ms, background 240ms;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background: rgba(255,255,255,0.12);
}
.cta-form select { appearance: auto; -webkit-appearance: auto; }
.cta-form select option { background: var(--ink); color: var(--surface); }
.cta-form textarea { min-height: 120px; resize: vertical; }
.cta-form .field-kvkk { display: flex; align-items: flex-start; gap: 10px; }
.cta-form .field-kvkk label { margin-bottom: 0; font-size: 0.85rem; line-height: 1.4; 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);
}

.cta-form .btn-primary {
  background: var(--accent);
  color: var(--surface);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
.cta-form .btn-primary:hover { background: var(--accent-2); color: var(--surface); }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem,6vw,5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem,3vw,2.5rem);
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: var(--surface);
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__brand .logo { font-size: 2rem; color: var(--surface); display: inline-block; margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer__nav a,
.footer__contact p,
.footer__contact a,
.footer__hours p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 240ms;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent-2); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 1rem;
}
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer__legal a:hover { color: var(--accent-2); }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

@media (max-width:768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 8px;
  padding: clamp(1.2rem,3vw,1.5rem);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; font-style: normal; margin-bottom: 0.5rem; }
.cookie-banner p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-banner__actions button[data-consent="accept"] {
  background: var(--ink); color: var(--surface); border: 1px solid var(--ink);
}
.cookie-banner__actions button[data-consent="accept"]:hover {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.cookie-banner__actions button[data-consent="reject"] {
  background: var(--ink-soft); color: var(--surface); border: 1px solid var(--ink-soft);
}
.cookie-banner__actions button[data-consent="reject"]:hover {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-banner__actions button[data-consent="settings"] {
  background: transparent; color: var(--ink-soft); border: 1px solid var(--line);
}
.cookie-banner__actions button[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink);
}
@media (min-width:768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--i, 0) * 100ms);
  animation: reveal-fallback 700ms cubic-bezier(.22,.61,.36,1) calc(1s + var(--i, 0) * 100ms) forwards;
}
@keyframes reveal-fallback {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.reveal.is-in { opacity: 1; transform: none; animation: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; animation: none; }

.bokeh-bg { position: relative; overflow: hidden; }
.bokeh-bg::before,
.bokeh-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: bokeh-float 12s ease-in-out infinite alternate;
}
.bokeh-bg::before { width: 280px; height: 280px; top: -80px; right: -60px; }
.bokeh-bg::after {
  width: 200px; height: 200px; bottom: -40px; left: -40px;
  animation-delay: -4s; animation-duration: 10s;
}
@keyframes bokeh-float {
  0% { transform: translate(0,0) scale(1); opacity: 0.6; }
  100% { transform: translate(20px,-20px) scale(1.1); opacity: 0.9; }
}

.focus-frame { position: relative; overflow: hidden; }
.focus-frame::before,
.focus-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--accent-2);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1), transform 360ms cubic-bezier(.2,.7,.2,1);
  z-index: 3;
  pointer-events: none;
}
.focus-frame::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
  transform: translate(-6px,-6px);
}
.focus-frame::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
  transform: translate(6px,6px);
}
.focus-frame:hover::before,
.focus-frame:hover::after { opacity: 1; transform: translate(0,0); }

@keyframes focus-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,165,116,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(212,165,116,0); }
}

@media (prefers-reduced-motion: reduce) {
  .bokeh-bg::before,
  .bokeh-bg::after { animation: none; }
  .hero__media { animation: none; clip-path: circle(90% at 50% 50%); }
  .hero__content { animation: none; opacity: 1; }
  .hero__media img { animation: none; }
}

.timeline__card img {
  filter: saturate(0.92);
  transition: transform 480ms cubic-bezier(.22,.61,.36,1), filter 360ms ease;
}
.timeline__card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1.03);
}

.story__img img {
  filter: saturate(0.92);
  transition: transform 480ms cubic-bezier(.22,.61,.36,1), filter 360ms ease;
}
.story__img:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1.03);
}

.testimonial-card {
  transition: transform 360ms cubic-bezier(.22,.61,.36,1), box-shadow 360ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(181,86,78,0.18);
}

.pricing-card {
  transition: transform 360ms cubic-bezier(.22,.61,.36,1), box-shadow 360ms, border-color 360ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(181,86,78,0.18);
  border-color: var(--accent-2);
}

.promise-card {
  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
}
.promise-card:hover {
  transform: translateY(-4px);
}
.promise-card__icon {
  transition: transform 400ms cubic-bezier(.22,.61,.36,1), color 300ms;
}
.promise-card:hover .promise-card__icon {
  transform: scale(1.1);
  color: var(--accent-2);
}

.process-step__num {
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms;
}
.process-step:hover .process-step__num {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(212,165,116,0.2);
}

.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.22,.61,.36,1);
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 6px;
}

.team-card__img {
  transition: transform 400ms cubic-bezier(.22,.61,.36,1), box-shadow 400ms;
}
.team-card:hover .team-card__img {
  transform: scale(1.05);
  box-shadow: 0 8px 28px -8px rgba(212,165,116,0.35);
}

.btn-primary {
  transition: background 280ms cubic-bezier(.22,.61,.36,1), transform 220ms, box-shadow 280ms, color 280ms;
}
.btn-ghost {
  transition: background 280ms cubic-bezier(.22,.61,.36,1), color 280ms, border-color 280ms, transform 220ms;
}
.btn-ghost:hover { transform: translateY(-2px); }

.hero__content .btn-primary {
  box-shadow: 0 4px 20px -4px rgba(181,86,78,0.4);
}
.hero__content .btn-primary:hover {
  box-shadow: 0 8px 28px -6px rgba(255,255,255,0.3);
}

@keyframes shutter-dot {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.timeline__item::before {
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 320ms;
}
.timeline__item:hover::before {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 4px rgba(212,165,116,0.25);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .pricing-card,
  .promise-card,
  .promise-card__icon,
  .process-step__num,
  .team-card__img,
  .timeline__item::before,
  .btn-ghost { transition: none !important; }
  .testimonial-card:hover,
  .pricing-card:hover,
  .promise-card:hover,
  .btn-ghost:hover { transform: none; }
  .promise-card:hover .promise-card__icon,
  .team-card:hover .team-card__img,
  .process-step:hover .process-step__num,
  .timeline__item:hover::before { transform: none; }
}

.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: 10px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
th { font-weight: 600; background: var(--surface-2); color: var(--ink); }

.about-hero { text-align: center; padding-top: clamp(4rem,8vw,6rem); }
.team-section { background: var(--surface); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1.5rem,3vw,2rem);
  max-width: 1000px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card__img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--accent-2);
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; max-width: 320px; margin: 0 auto; }

@media (max-width:768px) {
  .team__grid { grid-template-columns: 1fr; max-width: 380px; }
  .team-card__img { width: 140px; height: 140px; }
}

.contact-channels { max-width: 640px; margin: 0 auto; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: clamp(12px,2vw,16px) 8px;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
}
.contact-row:hover { transform: translateX(4px); background: var(--surface-2); }
.contact-row__icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  transition: color 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row:hover .contact-row__icon { color: var(--accent); }
.contact-row__icon svg { width: 100%; height: 100%; }
.contact-row__label { font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.contact-row__value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-row__value a { color: var(--ink-soft); }
.contact-row__value a:hover { color: var(--accent); }

.contact-form-section { background: var(--surface); }
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form .field { margin-bottom: 1.2rem; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,86,78,0.12);
}
.contact-form select { appearance: auto; -webkit-appearance: auto; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .field-kvkk { display: flex; align-items: flex-start; gap: 10px; }
.contact-form .field-kvkk label { margin-bottom: 0; font-weight: 400; cursor: pointer; }
.contact-form .btn-primary { width: 100%; text-align: center; }

.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem,8vw,8rem) 0;
}
.thankyou h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.thankyou p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: clamp(4rem,8vw,8rem) 0;
}
.page-404 h1 {
  font-size: clamp(5rem,12vw,10rem);
  color: var(--accent-2);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.page-404 h2 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 1rem; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; }

.policy-page { padding-top: clamp(3rem,6vw,5rem); padding-bottom: clamp(3rem,6vw,5rem); }
.policy-page h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 2rem; text-align: center; }
.policy-page h2 {
  font-size: clamp(1.3rem,2.5vw,1.6rem);
  margin-top: 2.5rem; margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.policy-page h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.policy-page p { margin-bottom: 1rem; color: var(--ink-soft); line-height: 1.75; }
.policy-page ul, .policy-page ol { margin: 0.75rem 0 1.5rem 1.5rem; color: var(--ink-soft); }
.policy-page li { margin-bottom: 0.5rem; line-height: 1.6; }

.sitemap-page h1 { text-align: center; margin-bottom: 2rem; }
.sitemap-list { max-width: 600px; margin: 0 auto; list-style: none; padding: 0; }
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 1rem; color: var(--ink); font-weight: 600; }
.sitemap-list a:hover { color: var(--accent); }
.sitemap-list .sub { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; display: block; margin-top: 2px; }

.cancel-tiers { max-width: 600px; margin: 1.5rem auto; }
.cancel-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cancel-tier__badge {
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
}
.cancel-tier__badge.green { background: rgba(76,145,91,0.12); color: #4c915b; }
.cancel-tier__badge.yellow { background: rgba(212,165,116,0.2); color: #a67c3d; }
.cancel-tier__badge.red { background: rgba(181,86,78,0.12); color: var(--accent); }

@media (max-width:1024px) { :root { --header-h: 70px; } }
@media (max-width:640px) {
  :root { --header-h: 64px; }
  section { padding: clamp(2.5rem,6vw,4rem) 0; }
  .trust-strip { flex-direction: column; align-items: center; gap: 8px; }
}
@media (max-width:430px) {
  h1 { font-size: clamp(2rem,8vw,2.5rem); }
  h2 { font-size: clamp(1.5rem,5vw,2rem); }
  .hero__sub { font-size: 0.95rem; }
  .pricing-card { padding: 1.25rem; }
}
@media (max-width:360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .logo { font-size: 1.5rem; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  .reveal { opacity: 1; transform: none; animation: none; }
  body { color: #000; background: #fff; }
}
