:root {
  interpolate-size: allow-keywords;
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-2: #F5F0EA;
  --ink: #2C1810;
  --ink-soft: #6B5B50;
  --accent: #9B2335;
  --accent-2: #D4A574;
  --line: rgba(44,24,16,0.12);
  --line-strong: rgba(44,24,16,0.25);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { margin: 0; overflow-x: hidden; max-width: 100vw; }

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: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.4em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── Skip Link ── */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--accent); color: var(--surface);
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-size: 0.875rem; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250, 247, 242, 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(250,247,242,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}
.scrolled .header-inner { height: 60px; }

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent); }

/* ── Nav Desktop ── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: var(--surface);
}

/* ── Nav Toggle ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px; height: 48px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.nav-toggle:hover span {
  background: var(--accent);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 28px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
  box-shadow: 0 0 0 0.5px rgba(44, 24, 16, 0.1);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  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);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) var(--pad) 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  border-bottom: none;
  font-weight: 600;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--surface);
  padding-left: 0;
}

/* ── Main ── */
main { padding-top: var(--header-h); }

/* ── Hero ── */
.hero {
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 14ch;
  margin: 0 auto 1.5rem;
  background:
    repeating-linear-gradient(94deg,
      rgba(155,35,53,0.92) 0px,
      rgba(178,44,62,1) 2px,
      rgba(155,35,53,0.97) 3.5px,
      rgba(192,52,74,0.93) 5.5px,
      rgba(155,35,53,0.88) 7px,
      rgba(170,40,58,1) 9px
    ),
    linear-gradient(132deg, #9B2335 0%, #c0344a 35%, #9B2335 65%, #b82e44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-rule {
  display: block;
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 0 auto 1.8rem;
  border: none;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(155,35,53,0.35), 0 0 16px 0 rgba(212,165,116,0.15);
}
.hero-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: var(--surface);
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Powder Float (hero niche animation) ── */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
}
.hero::before {
  width: 6px; height: 6px;
  background: var(--accent-2);
  top: 20%; left: 15%;
  animation: powder-float-1 12s ease-in-out infinite;
}
.hero::after {
  width: 4px; height: 4px;
  background: var(--accent);
  top: 35%; right: 18%;
  animation: powder-float-2 10s ease-in-out infinite 2s;
}

@keyframes powder-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  25% { transform: translate(14px, -22px) scale(1.3); opacity: 0.25; }
  50% { transform: translate(-10px, -38px) scale(0.8); opacity: 0.12; }
  75% { transform: translate(18px, -12px) scale(1.15); opacity: 0.2; }
}
@keyframes powder-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.12; }
  30% { transform: translate(-16px, -18px) scale(1.2); opacity: 0.22; }
  60% { transform: translate(8px, -32px) scale(0.9); opacity: 0.1; }
  80% { transform: translate(-12px, -8px) scale(1.1); opacity: 0.18; }
}

/* Extra powder particles via container pseudo */
.hero .container {
  position: relative;
}
.hero .container::before,
.hero .container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.1;
}
.hero .container::before {
  width: 5px; height: 5px;
  background: var(--accent);
  bottom: 30%; left: 8%;
  animation: powder-float-1 14s ease-in-out infinite 4s;
}
.hero .container::after {
  width: 3px; height: 3px;
  background: var(--accent-2);
  top: 45%; right: 10%;
  animation: powder-float-2 11s ease-in-out infinite 6s;
}

/* ── Gold Rule / Separator ── */
.gold-rule {
  display: block;
  width: 80px; height: 1px;
  background: var(--accent-2);
  margin: 0 auto;
  border: none;
  position: relative;
  overflow: visible;
}
.gold-rule::after {
  content: '';
  position: absolute;
  top: -1px; left: -20%;
  width: 30%; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.6), transparent);
  animation: shimmer-sweep 8s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0% { left: -30%; }
  100% { left: 130%; }
}

/* ── Section ── */
section {
  padding: clamp(3rem, 8vh, 5rem) 0;
}
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  display: block;
}
.section-heading {
  margin-bottom: 0.5em;
}
.section-intro {
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Manifesto / Drop Cap ── */
#manifesto {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.manifesto-text p {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  line-height: 1.85;
  margin-bottom: 1.5em;
  color: var(--ink);
}
.drop-cap::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 4.2em;
  line-height: 0.78;
  padding-right: 0.08em;
  padding-top: 0.04em;
  color: var(--accent);
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--accent);
  text-align: center;
  max-width: 38ch;
  margin: 2.5rem auto;
  position: relative;
  padding: 1rem 0;
}
.manifesto-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent-2);
  position: absolute;
  top: -0.5rem; left: -1.5rem;
  line-height: 1;
  opacity: 0.5;
  text-shadow: 0 0 18px rgba(212,165,116,0.3);
}

/* ── Services ── */
#hizmetler {
  background: var(--bg);
}
.services-grid {
  display: grid;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.service-item {
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 clamp(16px, 2vw, 24px);
  align-items: baseline;
  position: relative;
  overflow: hidden;
}
.service-item:last-child { border-bottom: none; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-2);
  opacity: 0.6;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.3em;
}
.service-desc {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-item::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.12), transparent);
  transform: skewX(-18deg);
  transition: left 600ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.service-item:hover::after { left: 160%; }
.service-item:hover .service-num {
  opacity: 1;
  color: var(--accent);
  transition: color 300ms ease, opacity 300ms ease;
}
.service-item:hover .service-title {
  color: var(--accent);
  transition: color 300ms ease;
}

/* ── Process Timeline ── */
#surec {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: var(--accent-2);
  opacity: 0.4;
}
.timeline-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  background: var(--bg);
  transition: background 300ms, border-color 300ms;
}
.timeline-step:hover .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px 2px rgba(155,35,53,0.2);
}
.timeline-step:hover .timeline-title {
  color: var(--accent);
  transition: color 300ms ease;
}
.timeline-when {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
  display: block;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.timeline-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Stats Counter ── */
.stats-band {
  background: var(--ink);
  padding: clamp(2.5rem, 5vh, 3.5rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--accent-2);
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(212,165,116,0.25);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.7);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Pricing ── */
#fiyatlar {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: 1.5rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(155,35,53,0.15), 0 0 20px -4px rgba(212,165,116,0.12);
}
.pricing-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px -8px rgba(155,35,53,0.15);
}
.pricing-card.is-featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.pricing-note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.pricing-list {
  list-style: none;
  margin-bottom: 1rem;
}
.pricing-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
  margin-top: 8px;
}
.pricing-excluded {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}
.pricing-excluded li::before {
  background: var(--line-strong);
}
.pricing-excluded li {
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
}
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  padding: 10px 0;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms;
}
.pricing-cta:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}
.pricing-card.is-featured .pricing-cta {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.pricing-card.is-featured .pricing-cta:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.pricing-card.is-featured {
  animation: warm-glow-pulse 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ── Testimonials ── */
#referanslar {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  max-width: 800px;
  margin: 0 auto;
}
.testimonial:first-child {
  grid-column: 1 / -1;
}
.testimonial {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  background: var(--bg);
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 20px;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-detail {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:first-child { grid-column: 1; }
}

/* ── FAQ Accordion ── */
#sss { background: var(--bg); }
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.5vw, 22px) 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Serif 4', serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ── CTA Band ── */
.cta-band {
  background: var(--ink);
  padding: clamp(3rem, 6vh, 4.5rem) 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--surface);
  margin-bottom: 0.5em;
}
.cta-band p {
  color: rgba(250,247,242,0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.cta-band .btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.cta-band .btn-primary:hover {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(212,165,116,0.45), 0 0 20px 0 rgba(212,165,116,0.2);
}
.cta-band .btn-primary:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  color: var(--surface);
}

/* ── Availability Badge ── */
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.availability-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5a8a3c;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── News / Atölye Notları ── */
.news-block {
  max-width: 680px;
  margin: 2rem auto 0;
}
.news-heading {
  font-size: 0.95rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 1rem;
}
.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  align-items: baseline;
}
.news-date {
  color: var(--accent-2);
  font-size: 0.75rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.news-text {
  color: var(--ink-soft);
  transition: color 200ms;
}
.news-item:hover .news-text {
  color: var(--ink);
}

/* ── Form ── */
.form-section {
  max-width: 560px;
  margin: 0 auto;
}
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.92rem;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155,35,53,0.1);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}

.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);
}

.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.btn-submit {
  display: inline-block;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(155,35,53,0.3), 0 0 14px 0 rgba(212,165,116,0.15);
}
.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: var(--surface);
}

/* ── Contact Channels ── */
.contact-channels {
  max-width: 560px;
  margin: 0 auto 3rem;
}
.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px;
  padding-left: 4px;
  padding-right: 4px;
}
.channel-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.channel-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
}
.channel-row:hover svg {
  color: var(--accent);
  transform: scale(1.08);
}
.channel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a {
  color: var(--ink);
  transition: color 200ms;
}
.channel-value a:hover { color: var(--accent); }

.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 0.88rem;
}
.hours-day { font-weight: 600; color: var(--ink); }
.hours-time { color: var(--ink-soft); }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(250,247,242,0.65);
  padding: clamp(2.5rem, 5vh, 4rem) 0 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--surface);
  margin-bottom: 0.8rem;
  display: block;
}
.footer-desc {
  margin-bottom: 1rem;
  max-width: 36ch;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a {
  color: rgba(250,247,242,0.65);
  font-size: 0.82rem;
  transition: color 200ms;
}
.footer-links a:hover { color: var(--accent-2); }
.footer-contact p {
  margin-bottom: 4px;
}
.footer-contact a {
  color: rgba(250,247,242,0.65);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(250,247,242,0.4);
}
.footer-bottom a { color: rgba(250,247,242,0.4); }
.footer-bottom a:hover { color: var(--accent-2); }

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── 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: 10px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.18);
  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: 0.95rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.82rem;
  cursor: pointer;
  min-height: 44px;
  transition: background 200ms, color 200ms;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-actions button[data-consent="reject"] {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
  font-weight: 600;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--surface-2);
  color: var(--ink);
}

@media (max-width: 639px) {
  .cookie-banner {
    bottom: 12px; left: 12px; right: 12px;
    padding: 16px 18px;
    border-radius: 10px;
  }
  .cookie-banner p { margin-bottom: 0.8rem; }
  .cookie-actions { gap: 6px; }
  .cookie-actions button { padding: 10px 14px; flex: 1; min-width: 0; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

@media (min-width: 640px) {
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1),
              transform 700ms cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche Animations — Bridal Warmth ── */

/* Warm glow pulse for featured/hovered cards */
@keyframes warm-glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px -8px rgba(212,165,116,0.12); }
  50% { box-shadow: 0 8px 28px -6px rgba(212,165,116,0.28); }
}

/* Soft luminosity shimmer for CTA buttons */
@keyframes cta-luminosity {
  0% { box-shadow: 0 0 0 0 rgba(155,35,53,0); }
  50% { box-shadow: 0 0 18px 2px rgba(155,35,53,0.18); }
  100% { box-shadow: 0 0 0 0 rgba(155,35,53,0); }
}

/* Brush stroke underline on headings */
.brush-underline {
  position: relative;
  display: inline-block;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  border-radius: 2px;
  transition: width 800ms cubic-bezier(.16,1,.3,1);
}
.brush-underline.is-in::after,
.reveal.is-in .brush-underline::after {
  width: 100%;
}

/* Mirror gleam on hover */
@keyframes mirror-gleam {
  0% { left: -50%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* Soft glow on gold decorations */
@keyframes soft-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,165,116,0); }
  50% { box-shadow: 0 0 12px 2px rgba(212,165,116,0.25); }
}

/* Quote fade-in with scale */
.testimonial {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(155,35,53,0.1), 0 0 16px -2px rgba(212,165,116,0.1);
}
.testimonial:hover .testimonial-quote-mark {
  opacity: 0.45;
  text-shadow: 0 0 16px rgba(155,35,53,0.2);
  transition: opacity 400ms ease, text-shadow 400ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after,
  .hero .container::before, .hero .container::after { animation: none !important; }
  .gold-rule::after { animation: none !important; }
  .availability-dot { animation: none !important; }
  .service-item::after { transition: none !important; }
  .pricing-card.is-featured { animation: none !important; }
  .pricing-card, .testimonial, .team-card, .hero-cta, .cta-band .btn-primary,
  .pricing-cta, .nav-desktop .nav-cta, .btn-submit, .btn-primary, .btn-ghost {
    transition: none !important;
  }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── 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 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
th, td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--surface-2);
}
td { color: var(--ink-soft); }

/* ── Legal / Policy Pages ── */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(2rem, 4vh, 3rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
}
.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.3em;
}
.page-content .page-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.page-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 0.6em;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.page-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}
.page-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4em;
}
.page-content p {
  margin-bottom: 1em;
  line-height: 1.75;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.page-content ul, .page-content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.page-content li {
  margin-bottom: 0.4em;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ── Thank You Page ── */
.thankyou-section {
  text-align: center;
  padding: clamp(5rem, 12vh, 8rem) 0;
}
.thankyou-section h1 { margin-bottom: 0.5em; }
.thankyou-section p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── 404 ── */
.error-section {
  text-align: center;
  padding: clamp(5rem, 15vh, 10rem) 0;
}
.error-section h1 {
  font-size: clamp(4rem, 10vw, 4.5rem);
  color: var(--accent-2);
  opacity: 0.3;
  margin-bottom: 0.2em;
}
.error-section h2 { margin-bottom: 0.5em; }
.error-section p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* ── Sitemap Page ── */
.sitemap-list {
  list-style: none;
  max-width: 480px;
}
.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
}

/* ── Team (hakkimizda) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 2rem;
}
.team-card {
  text-align: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px -8px rgba(155,35,53,0.12), 0 0 18px -4px rgba(212,165,116,0.1);
}
.team-card:hover .team-avatar {
  background: linear-gradient(135deg, var(--surface-2), rgba(212,165,116,0.15));
  transition: background 400ms ease;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-2);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  text-align: left;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ── Cancellation Table ── */
.cancel-tiers {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 1rem auto;
}
.cancel-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  align-items: center;
  font-size: 0.88rem;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.cancel-tier:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.06);
}
.cancel-period {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.cancel-policy { color: var(--ink-soft); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
}
@media (max-width: 480px) {
  .trust-strip { flex-direction: column; align-items: center; gap: 10px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 10px; }
  .timeline-dot { left: -30px; }
}
@media (max-width: 360px) {
  body { font-size: 0.94rem; }
  h2 { font-size: 1.6rem; }
}

/* ── Smooth Scroll override ── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ── Focus ring enhancement ── */
button:focus-visible,
.pricing-cta:focus-visible,
.btn-submit:focus-visible,
.cookie-actions button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Footer links hover lift ── */
.footer-links a {
  transition: color 200ms, padding-left 200ms;
}
.footer-links a:hover {
  padding-left: 4px;
}

/* ── Bridal Warmth Micro-effects ── */

.hero-cta {
  animation: cta-luminosity 4s ease-in-out 1.5s infinite;
}
.cta-band .btn-primary {
  position: relative;
  overflow: hidden;
}
.cta-band .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-18deg);
  transition: left 600ms cubic-bezier(.22,.68,.36,1);
  pointer-events: none;
}
.cta-band .btn-primary:hover::before { left: 140%; }

.pricing-card {
  overflow: hidden;
}
.pricing-card:not(.is-featured)::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.08), transparent);
  transform: skewX(-18deg);
  transition: left 700ms cubic-bezier(.22,.68,.36,1);
  pointer-events: none;
}
.pricing-card:not(.is-featured):hover::before { left: 160%; }
.pricing-card.is-featured::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.08), transparent);
  transform: skewX(-18deg);
  transition: left 700ms cubic-bezier(.22,.68,.36,1);
  pointer-events: none;
  z-index: 0;
}
.pricing-card.is-featured:hover::after { left: 160%; }

.timeline-dot {
  transition: background 300ms, border-color 300ms, box-shadow 400ms;
}

.channel-row {
  position: relative;
  overflow: hidden;
}
.channel-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent-2);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.channel-row:hover::before { transform: scaleY(1); }

.cancel-tier {
  position: relative;
  overflow: hidden;
}
.cancel-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent-2);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.cancel-tier:hover::before { transform: scaleY(1); }

.team-card {
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212,165,116,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.team-card:hover::before { opacity: 1; }

.faq-item summary {
  position: relative;
  overflow: hidden;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.04), transparent);
  transition: left 500ms cubic-bezier(.22,.68,.36,1);
  pointer-events: none;
}
.faq-item summary:hover::before { left: 100%; }

.news-item {
  position: relative;
  overflow: hidden;
}
.news-item::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-2);
  transition: width 400ms cubic-bezier(.22,.68,.36,1);
}
.news-item:hover::before { width: 100%; }

.hero-cta:hover,
.pricing-card.is-featured .pricing-cta:hover,
.cta-band .btn-primary:hover {
  box-shadow: 0 10px 28px -6px rgba(155,35,53,0.35), 0 0 20px 0 rgba(212,165,116,0.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta { animation: none !important; }
  .cta-band .btn-primary::before,
  .pricing-card:not(.is-featured)::before,
  .pricing-card.is-featured::after,
  .channel-row::before,
  .cancel-tier::before,
  .team-card::before,
  .faq-item summary::before,
  .news-item::before { transition: none !important; display: none; }
}

/* ── Print ── */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}


/* contrast hardening (mass-fix) */
.hero-title{color:var(--ink, currentColor);}
@supports not (background-clip:text){
  .hero-title{background-image:none !important;-webkit-text-fill-color:currentColor !important;color:var(--ink);}
}
.hero-title .letter,.hero-title span{color:inherit;background:inherit;-webkit-background-clip:inherit;background-clip:inherit;-webkit-text-fill-color:inherit}
.no-js .hero-title{background-image:none !important;-webkit-text-fill-color:currentColor !important;color:var(--ink) !important}
.no-js .hero-title .letter{opacity:1 !important;transform:none !important;animation:none !important}
