/* ============================================
   BUTIK NİKAH ATÖLYESİ — Editorial Dark
   ============================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #0F0F0F;
  --surface: #1C1C1C;
  --surface-2: #262626;
  --ink: #F0EDE8;
  --ink-soft: #A8A49E;
  --accent: #C9A84C;
  --accent-2: #6B6B6B;
  --line: rgba(201,168,76,0.18);
  --line-strong: rgba(201,168,76,0.35);

  --ff-heading: 'Playfair Display', Georgia, Cambria, serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --fw-heading: 700;
  --fw-body: 300;
  --tracking: -0.01em;

  --container-max: 1080px;
  --container-pad: clamp(16px, 4vw, 32px);
  --header-h: 80px;
  --header-h-scrolled: 64px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--ff-body);
  font-weight: var(--fw-body);
  letter-spacing: var(--tracking);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; background: transparent; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-heading);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
main { padding-top: var(--header-h); }
section { padding: clamp(4rem, 10vw, 8rem) 0; }
section[id] { scroll-margin-top: var(--header-h); }

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-weight: 500; font-size: 0.875rem; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ---- FOCUS ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(15,15,15,0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 300ms ease, box-shadow 300ms ease, height 300ms cubic-bezier(.16,1,.3,1);
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(15,15,15,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: var(--header-h-scrolled);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  white-space: nowrap;
  transition: color 240ms;
}
.header__logo span {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -2px;
}
.header__logo:hover { color: var(--accent); }

/* ---- NAV DESKTOP ---- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}
.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms 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:hover,
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg) !important;
  transform: translateY(-2px);
}

/* ---- NAV TOGGLE (hamburger) ---- */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 48px; height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1.5px solid rgba(201,168,76,0.45);
  border-radius: 4px;
  background: rgba(201,168,76,0.06);
  transition: border-color 240ms, background 240ms, box-shadow 240ms;
  flex-shrink: 0;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 12px rgba(201,168,76,0.15);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.16,1,.3,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(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- DRAWER ---- */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1; visibility: visible;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2rem) var(--container-pad) 2rem;
  gap: 0;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-soft);
  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__cta {
  margin-top: 1.5rem;
  background: var(--accent) !important;
  color: var(--bg) !important;
  text-align: center;
  padding: 16px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  border-radius: 2px;
}
.drawer__cta:hover {
  background: var(--ink) !important;
  color: var(--bg) !important;
}
@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ============================================
   HERO — type-only-massive
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(6rem, 14vw, 10rem) var(--container-pad);
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  animation: heroFadeUp 800ms 80ms cubic-bezier(.16,1,.3,1) both;
}
.hero__title {
  font-size: clamp(36px, 5vw, 72px);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
  max-width: min(20ch, 90%);
}
@keyframes letterReveal {
  to { opacity: 1; }
}
.hero-letter {
  display: inline-block;
  opacity: 0;
  color: var(--accent);
  transition: opacity 350ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 25ms);
  animation: letterReveal 350ms calc(0.3s + var(--i, 0) * 25ms) cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-letter.is-in { opacity: 1; animation: none; }
.hero-letter.is-space { width: 0.3em; }

.hero__tail-wrap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}
.hero__tail {
  position: absolute;
  bottom: -10px;
  right: -60px;
  width: 100px;
  height: 50px;
  overflow: visible;
}
.hero__tail path {
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 1200ms cubic-bezier(.2,.7,.2,1);
}
.hero__tail.is-drawn path {
  stroke-dashoffset: 0;
}

.hero__sub {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.6;
  animation: heroFadeUp 800ms 500ms cubic-bezier(.16,1,.3,1) both;
}
.hero__cta-row {
  margin-top: 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: heroFadeUp 800ms 700ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__sub, .hero__cta-row, .trust-strip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-letter { opacity: 1 !important; transition: none !important; animation: none !important; }
  .hero__tail path { transition: none !important; stroke-dashoffset: 0 !important; }
  .hizmet-item__icon { transition: none !important; }
  .testimonial-card::after { transition: none !important; }
  .footer__nav a::before, .footer__legal a::before { transition: none !important; }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.2rem;
  animation: heroFadeUp 800ms 900ms cubic-bezier(.16,1,.3,1) both;
}
.trust-strip__item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-strip__item svg {
  width: 14px; height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
}

/* ---- Gold hairline divider ---- */
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  border: none;
  margin: 0 auto 2rem;
}
.gold-rule--left { margin-left: 0; }
.gold-rule--grow {
  width: 0;
  transition: width 1000ms cubic-bezier(.16,1,.3,1);
}
.gold-rule--grow.is-in {
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  animation: goldShimmer 3s 0.8s ease-in-out 1;
}
@keyframes goldShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-rule--grow.is-in { animation: none; background: var(--accent); }
}

/* ============================================
   REVEAL
   ============================================ */
@keyframes revealFallback {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.16,1,.3,1),
              transform 600ms cubic-bezier(.16,1,.3,1);
  animation: revealFallback 600ms 0.15s cubic-bezier(.16,1,.3,1) both;
}
.reveal.is-in { opacity: 1; transform: none; animation: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
  animation-delay: calc(0.15s + var(--i, 0) * 60ms);
}

html.no-js .reveal { opacity: 1; transform: none; animation: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
  position: relative;
}
.btn-primary::after {
  content: '→';
  transition: transform 240ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.2), 0 0 40px rgba(201,168,76,0.08);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   #MANIFESTO
   ============================================ */
.manifesto { max-width: 780px; margin: 0 auto; }
.manifesto__text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.85;
  color: var(--ink-soft);
}
.manifesto__text::first-letter {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: 0.8;
  margin: 0.06em 0.14em 0 0;
  color: var(--accent);
}
.manifesto__pull {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 1.4rem;
  margin: 2.5rem 0;
  line-height: 1.45;
}

/* ============================================
   #HİZMETLER — single column
   ============================================ */
.hizmet-item {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
  padding-left: 1.5rem;
  transition: background 360ms cubic-bezier(.16,1,.3,1);
  position: relative;
}
.hizmet-item:last-child { border-bottom: none; }
.hizmet-item:hover {
  background: linear-gradient(90deg, rgba(201,168,76,0.03) 0%, transparent 60%);
}
.hizmet-item__icon {
  width: 40px; height: 40px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.hizmet-item__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hizmet-item h3 {
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.hizmet-item p {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.hizmet-item__quote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent);
  padding-left: 1.2rem;
  border-left: 2px solid var(--accent);
  line-height: 1.5;
}

/* ============================================
   #GALERİ — 2 column asymmetric
   ============================================ */
.galeri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: var(--container-max);
  margin: 0 auto;
}
.galeri-grid figure:nth-child(odd) { margin-top: clamp(2rem, 6vw, 5rem); }
.galeri-grid figure { overflow: hidden; border-radius: 2px; position: relative; }
.galeri-grid img {
  width: 100%; height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  background: var(--surface-2);
}
.galeri-grid figure:hover img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}
.galeri-grid figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201,168,76,0.12) 100%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.galeri-grid figure:hover::after { opacity: 1; }
.galeri-grid figcaption {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
  padding-left: 2px;
}
@media (max-width: 640px) {
  .galeri-grid { grid-template-columns: 1fr; }
  .galeri-grid figure:nth-child(odd) { margin-top: 0; }
}

/* ============================================
   #SÜREÇ — vertical timeline
   ============================================ */
.timeline { position: relative; max-width: 680px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.timeline-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step__marker {
  position: absolute;
  left: 8px; top: 4px;
  width: 26px; height: 26px;
}
.timeline-step__marker svg {
  width: 100%; height: 100%;
}
.timeline-step__marker circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  transition: stroke-dashoffset 800ms cubic-bezier(.2,.7,.2,1);
}
.timeline-step.is-in .timeline-step__marker circle {
  stroke-dashoffset: 0;
}
.timeline-step__marker .dot {
  fill: var(--accent);
  r: 3;
  opacity: 0;
  transition: opacity 400ms 400ms;
}
.timeline-step.is-in .timeline-step__marker .dot { opacity: 1; }
.timeline-step__time {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.timeline-step h4 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.timeline-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   STATS / COUNTER
   ============================================ */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.stat-item__number {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item__label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
  transition: border-color 360ms, box-shadow 360ms, transform 360ms;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12), 0 0 60px rgba(201,168,76,0.04);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
  transition: opacity 360ms, text-shadow 360ms;
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  padding-top: 1rem;
}
.testimonial-card__author {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ============================================
   #FİYAT — pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: var(--container-max);
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: border-color 360ms, transform 360ms, box-shadow 360ms;
}
.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.14), 0 0 80px rgba(201,168,76,0.05);
}
.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.pricing-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.6rem;
}
.pricing-card__price {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.pricing-card__price small {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--ink-soft);
  font-style: normal;
  font-family: var(--ff-body);
}
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-card h5 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.pricing-card ul {
  margin-bottom: 1.2rem;
}
.pricing-card li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-card .dahil-degil li::before {
  background: var(--accent-2);
}
.pricing-card__cta {
  margin-top: auto;
  padding-top: 1rem;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: 2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================
   #SSS — FAQ accordion (pure CSS)
   ============================================ */
.faq-list { max-width: 780px; 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.4rem) 0;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  margin-left: 1rem;
}
.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: clamp(1rem, 2vw, 1.4rem);
}
.faq-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================
   #İLETİŞİM — contact
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
}

/* Contact channels */
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-channel {
  display: contents;
  cursor: default;
}
.contact-channel__icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  grid-row: span 1;
}
.contact-channel__icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-channel__body {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover .contact-channel__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-channel:hover .contact-channel__body {
  transform: translateX(4px);
}
.contact-channel__label {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.contact-channel__value {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel__value a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, border-color 240ms;
}
.contact-channel__value a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   FORM
   ============================================ */
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input:not([type="checkbox"]):not([type="submit"]),
.field textarea,
.field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):not([type="submit"]):focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), 0 0 16px rgba(201,168,76,0.06);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field select option { background: var(--surface); color: var(--ink); }

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 767px) {
  .site-footer { padding-bottom: env(safe-area-inset-bottom, 0px); }
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__logo {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-style: italic;
  font-family: var(--ff-heading);
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.footer__est {
  font-size: 0.78rem;
  color: var(--accent-2);
}
.site-footer h4 {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.site-footer nav a,
.footer__nav a,
.footer__legal a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 3px 0;
  transition: color 240ms, padding-left 240ms;
}
.site-footer nav a:hover,
.footer__nav a:hover,
.footer__legal a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer__contact p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.footer__contact a {
  color: var(--ink-soft);
  transition: color 240ms;
}
.footer__contact a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--accent-2);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1rem, 3vw, 1.5rem);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 320ms;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
@media (max-width: 767px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; border-bottom: none; }
}
.cookie-banner__title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cookie-banner__text a {
  color: var(--accent);
  border-bottom: 1px solid var(--line);
}
.cookie-banner__text a:hover { border-color: var(--accent); }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms, box-shadow 240ms;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}
.cookie-btn-accept:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.2);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}
.cookie-btn-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--ink-soft);
}
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-btn-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent-2);
}

/* ============================================
   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;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
}
td { color: var(--ink-soft); }

/* ============================================
   PAGE-SPECIFIC: inner pages
   ============================================ */
.page-hero {
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.page-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.page-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.page-content p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.page-content ul, .page-content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}
.page-content li {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  position: relative;
}
.page-content ul li::before {
  content: '';
  position: absolute;
  left: -1.2rem; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- Team section ---- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 680px;
  margin: 2rem auto;
}
.team-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 360ms, transform 360ms;
}
.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  background: var(--surface-2);
}
.team-card__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.team-card__role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo { max-width: 200px; }
}

/* ---- Thank-you page ---- */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--container-pad);
}
.thankyou-wrap h1 { margin-bottom: 1rem; }
.thankyou-wrap p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ---- 404 page ---- */
.error-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--container-pad);
}
.error-wrap__code {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
}
.error-wrap h1 { margin-bottom: 1rem; font-size: clamp(1.5rem, 4vw, 2.5rem); }
.error-wrap p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ---- Sitemap page ---- */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 6px; }
.sitemap-list a::before {
  content: '→';
  color: var(--accent);
  font-size: 0.8rem;
}

/* ============================================
   NICHE ANIMATIONS — wedding / nikah
   ============================================ */

/* 1. Lace-pattern overlay on section bg */
.lace-section {
  position: relative;
}
.lace-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0, var(--accent) 4px,
    transparent 4px, transparent 12px
  );
  opacity: 0.3;
}
.lace-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 6px,
    var(--accent) 6px, var(--accent) 10px
  );
  opacity: 0.15;
}

/* 2. Ring-pulse on timeline markers */
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.timeline-step.is-in .timeline-step__marker {
  animation: ringPulse 2.4s 400ms cubic-bezier(.4,0,.2,1) 1;
}

/* 3. Petal drift ambient */
@keyframes petalDrift {
  0% { transform: translate(0, 0) rotate(0deg) scale(0.8); opacity: 0; }
  8% { opacity: 0.5; }
  50% { transform: translate(-30px, 50vh) rotate(180deg) scale(1); }
  92% { opacity: 0.4; }
  100% { transform: translate(-60px, 100vh) rotate(360deg) scale(0.6); opacity: 0; }
}
.petal {
  position: fixed;
  width: 8px; height: 8px;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.9), rgba(201,168,76,0.4));
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: petalDrift 14s cubic-bezier(.4,0,.6,1) infinite;
  filter: blur(0.5px);
}
.petal:nth-child(2) { left: 20%; animation-delay: 3s; animation-duration: 16s; width: 6px; height: 6px; }
.petal:nth-child(3) { left: 70%; animation-delay: 6s; animation-duration: 11s; width: 10px; height: 10px; }
.petal:nth-child(4) { left: 45%; animation-delay: 9s; animation-duration: 15s; }
.petal:nth-child(5) { left: 85%; animation-delay: 1.5s; animation-duration: 13s; width: 5px; height: 5px; }

@media (prefers-reduced-motion: reduce) {
  .petal { display: none; }
}

/* 4. Ribbon unfurl on pricing featured */
@keyframes ribbonUnfurl {
  from { transform: scaleY(0); transform-origin: top; }
  to   { transform: scaleY(1); transform-origin: top; }
}
.pricing-card--featured.is-in::before {
  animation: ribbonUnfurl 500ms 200ms cubic-bezier(.2,.7,.2,1) both;
}

/* 5. Warm gold glow on primary buttons */
@keyframes warmGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 24px 4px rgba(201,168,76,0.12); }
}
.btn-primary {
  animation: warmGlow 4s 2s ease-in-out 2;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

/* 6. Gold quote mark glow on testimonial hover */
.testimonial-card:hover::before {
  opacity: 0.6;
  text-shadow: 0 0 16px rgba(201,168,76,0.3);
}

/* 7. Gold line draw on hizmet hover */
.hizmet-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.hizmet-item:hover::before { transform: scaleY(1); }

/* 8. Envelope seal glow on contact section */
@keyframes sealGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(201,168,76,0.2)); }
  50% { filter: drop-shadow(0 0 12px rgba(201,168,76,0.5)); }
}
.contact-seal {
  color: var(--accent);
  animation: sealGlow 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .contact-seal { animation: none; }
}

/* 9. Shimmer on pricing card hover */
@keyframes cardShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.pricing-card:hover {
  background: linear-gradient(
    90deg,
    var(--surface) 0%,
    rgba(201,168,76,0.04) 25%,
    var(--surface) 50%,
    rgba(201,168,76,0.04) 75%,
    var(--surface) 100%
  );
  background-size: 200% 100%;
  animation: cardShimmer 3s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card:hover { animation: none; background: var(--surface); }
}

/* 10. FAQ expand glow */
.faq-item[open] summary {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(201,168,76,0.15);
}

@media (prefers-reduced-motion: reduce) {
  .hizmet-item::before { transition: none; }
  .pricing-card:hover { animation: none; }
  .btn-primary { animation: none; }
  .faq-item[open] summary { text-shadow: none; }
  .testimonial-card:hover::before { text-shadow: none; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner,
  .nav-toggle, .skip-link, .petal { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #111; }
  a { color: #111; }
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .galeri-grid { gap: 1rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --header-h-scrolled: 56px; }
  section { padding: clamp(3rem, 8vw, 5rem) 0; }
  .hero { min-height: 90vh; padding: clamp(5rem, 12vw, 8rem) var(--container-pad); }
  .hero__title { font-size: clamp(36px, 8vw, 64px); }
  .hero__tail { width: 60px; height: 30px; right: -30px; bottom: -6px; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 0.5rem; }
  .trust-strip__item { font-size: 0.6rem; padding: 5px 10px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(36px, 10vw, 52px); }
  .hero__tail { width: 40px; height: 20px; right: -20px; }
  .pricing-card { padding: 1.2rem; }
  .team-card { padding: 1rem; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 34px; }
  .btn-primary, .btn-ghost { padding: 12px 22px; font-size: 0.78rem; }
}

/* ============================================
   ENHANCED MICRO-INTERACTIONS — wedding-theme
   ============================================ */

/* Stagger-reveal with warm cascade */
.reveal[style*="--i"]:nth-child(odd) {
  transition-timing-function: cubic-bezier(.22,.68,.36,1);
}
.reveal[style*="--i"]:nth-child(even) {
  transition-timing-function: cubic-bezier(.16,.84,.44,1);
}

/* Gold accent underline on nav hover — smoother */
.nav-desktop a:not(.nav-cta)::after {
  transition: width 400ms cubic-bezier(.22,.68,.36,1);
}

/* Hero warm vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    transparent 40%,
    rgba(201,168,76,0.04) 70%,
    rgba(201,168,76,0.08) 100%
  );
  pointer-events: none;
}

/* Gold particle float for hizmet-item icons on hover */
.hizmet-item__icon {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), filter 400ms;
}
.hizmet-item:hover .hizmet-item__icon {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.25));
}

/* Timeline line draw on scroll */
.timeline::before {
  transition: background-color 600ms;
}
.timeline-step.is-in ~ .timeline-step .timeline-step__marker circle {
  transition-delay: 200ms;
}

/* Testimonial card — warm lift */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* FAQ item hover highlight */
.faq-item summary:hover::after {
  transform: rotate(15deg);
}

/* Stats counter warm glow on reveal */
@keyframes statGlow {
  0% { text-shadow: 0 0 0 rgba(201,168,76,0); }
  50% { text-shadow: 0 0 20px rgba(201,168,76,0.3); }
  100% { text-shadow: 0 0 0 rgba(201,168,76,0); }
}
.stat-item.is-in .stat-item__number {
  animation: statGlow 2s 0.5s ease-in-out 1;
}
@media (prefers-reduced-motion: reduce) {
  .stat-item.is-in .stat-item__number { animation: none; }
}

/* Contact channel warm hover */
.contact-channel:hover .contact-channel__icon {
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}

/* Pricing card featured — ambient border glow */
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.08); }
  50% { box-shadow: 0 0 30px 2px rgba(201,168,76,0.12); }
}
.pricing-card--featured {
  animation: featuredGlow 5s 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured { animation: none; }
}


/* Footer link hover — gold dot appear */
.footer__nav a,
.footer__legal a {
  position: relative;
}
.footer__nav a::before,
.footer__legal a::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%) scale(0);
  transition: transform 300ms cubic-bezier(.16,1,.3,1);
}
.footer__nav a:hover::before,
.footer__legal a:hover::before {
  transform: translateY(-50%) scale(1);
}


/* Drawer close button */

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: none;
  pointer-events: none;
  z-index: 1;
}

/* Drawer link stagger */
.drawer a {
  opacity: 0;
  transform: translateX(20px);
  transition: color 240ms, padding-left 240ms, opacity 300ms, transform 300ms;
}
.drawer.is-open a {
  opacity: 1;
  transform: translateX(0);
}
.drawer.is-open a:nth-child(2) { transition-delay: 60ms; }
.drawer.is-open a:nth-child(3) { transition-delay: 120ms; }
.drawer.is-open a:nth-child(4) { transition-delay: 180ms; }
.drawer.is-open a:nth-child(5) { transition-delay: 240ms; }
.drawer.is-open a:nth-child(6) { transition-delay: 300ms; }
.drawer.is-open a:nth-child(7) { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .drawer a { opacity: 1; transform: none; transition: none; }
}



