/* ============================================================
   BEYAZ TERZİ — Styles
   ============================================================ */

:root {
  --bg: #0F1923;
  --surface: #1A2C3D;
  --surface-2: #22374A;
  --ink: #EBE5DA;
  --ink-soft: rgba(235,229,218,0.55);
  --accent: #C9A96E;
  --accent-2: #7A6545;
  --line: rgba(201,169,110,0.18);
  --line-strong: rgba(201,169,110,0.35);
  --header-h: 72px;
  --radius: 4px;
  interpolate-size: allow-keywords;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

html.no-js .reveal { opacity: 1; transform: none; animation: none; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection { background: var(--accent); color: var(--bg); }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: var(--radius);
  font-weight: 600; z-index: 10000;
}
.skip-link:focus { top: 12px; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

section {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

section[id] {
  scroll-margin-top: var(--header-h);
}

a, span, td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* --- Gold Rule Divider --- */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
  max-width: 200px;
  opacity: 0.6;
}

/* --- Stitch Divider --- */
.stitch-divider {
  max-width: 280px;
  margin: 0 auto;
  padding: 1rem 0;
}
.stitch-divider svg {
  width: 100%;
  height: 14px;
  display: block;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(15,25,35,0.88);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-header.scrolled {
  background: rgba(15,25,35,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}

.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  z-index: 1;
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }

/* --- Desktop Nav --- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop .nav__link {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop .nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop .nav__link:hover,
.nav-desktop .nav__link.is-active {
  color: var(--ink);
}

.nav-desktop .nav__link.is-active::after,
.nav-desktop .nav__link:hover::after {
  width: 100%;
}

.nav-desktop .nav-cta {
  margin-left: 8px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent-2); color: var(--ink); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.4,0,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.4,0,.2,1),
              border-color 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  line-height: 1.2;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

/* --- Nav Toggle (Hamburger) --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: rgba(201,169,110,0.18);
  border: 1.5px solid rgba(201,169,110,0.55);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  transition: background 240ms ease, border-color 240ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201,169,110,0.15);
  border-color: var(--accent);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              opacity 240ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ============================================================
   DRAWER (mobile)
   ============================================================ */
.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);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) clamp(24px, 6vw, 40px) 32px;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
}

.drawer__link {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms ease, padding-left 240ms ease;
}
.drawer__link:hover { color: var(--accent); padding-left: 8px; }
.drawer__link.is-active { color: var(--accent); }

.drawer__link.btn-primary {
  margin-top: 24px;
  text-align: center;
  border-bottom: none;
  padding: 14px 28px;
}

.drawer__contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.drawer__contact a { color: var(--accent); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}


@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(4rem, 12vw, 8rem) clamp(16px, 4vw, 32px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(201,169,110,0.025) 2px, rgba(201,169,110,0.025) 4px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(201,169,110,0.025) 2px, rgba(201,169,110,0.025) 4px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s cubic-bezier(.2,.7,.2,1),
              transform 0.45s cubic-bezier(.2,.7,.2,1);
  animation: char-auto-reveal 0.45s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 35ms + 0.2s);
}

@keyframes char-auto-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__title.is-revealed .char {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* --- Hero Stitch Animation --- */
.hero__stitch {
  position: relative;
  width: 60%;
  max-width: 480px;
  height: 24px;
  margin: 0 auto 2rem;
  overflow: hidden;
}

.hero__stitch svg {
  width: 100%;
  height: 100%;
  display: block;
}

.stitch-line-hero {
  stroke-dasharray: 8 6;
  stroke-dashoffset: 600;
  animation: stitch-draw 2s cubic-bezier(.2,.7,.2,1) 0.8s forwards;
}

@keyframes stitch-draw {
  to { stroke-dashoffset: 0; }
}

.stitch-needle-hero {
  opacity: 0;
  animation: needle-appear 0.4s ease 2.6s forwards;
}
@keyframes needle-appear {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .stitch-line-hero {
    stroke-dashoffset: 0;
    animation: none;
  }
  .stitch-needle-hero { opacity: 1; animation: none; }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* --- Trust Strip --- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: 3rem;
}

.trust-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.trust-strip__badge svg {
  width: 14px; height: 14px;
  stroke: var(--accent);
  flex-shrink: 0;
}

/* --- Stats Row --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
  min-width: 100px;
}

.stat__number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--accent);
  line-height: 1.1;
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--bg);
}

.manifesto__inner {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto__text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.manifesto__text p:first-of-type::first-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.8em;
  float: left;
  line-height: 0.85;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--accent);
}

.manifesto__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-style: italic;
  text-align: center;
  color: var(--accent);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 2rem;
  line-height: 1.3;
  text-transform: none;
}

/* ============================================================
   KUMASLAR (Fabric Archive) — horizontal scroll
   ============================================================ */
.kumaslar { background: var(--surface); }

.kumaslar__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.kumaslar__scroll {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) var(--surface-2);
}

.kumaslar__scroll::-webkit-scrollbar { height: 4px; }
.kumaslar__scroll::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 4px; }
.kumaslar__scroll::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 4px; }

.kumas-card {
  flex: 0 0 clamp(260px, 30vw, 300px);
  scroll-snap-align: start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms cubic-bezier(.2,.7,.2,1);
}

.kumas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.12);
  border-color: var(--accent);
}

.kumas-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.kumas-card__icon svg {
  width: 100%; height: 100%;
}

.kumas-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}

.kumas-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.kumas-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.kumas-card__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* ============================================================
   SÜREÇ (5-step vertical timeline)
   ============================================================ */
.surec { background: var(--bg); }

.surec__header {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 20px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0, var(--accent) 8px,
    transparent 8px, transparent 14px
  );
  animation: timeline-draw 1.5s cubic-bezier(.2,.7,.2,1) 0.8s both;
}

@keyframes timeline-draw {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0); }
}

@media (prefers-reduced-motion: reduce) {
  .timeline::before { animation: none; }
}

.timeline__step {
  position: relative;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.timeline__step:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -48px; top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 1;
}

.timeline__marker svg {
  width: 20px; height: 20px;
}

.timeline__time {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline__step h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.timeline__step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   REFERANSLAR (Testimonials)
   ============================================================ */
.referanslar { background: var(--surface); }

.referanslar__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid .testimonial:first-child {
    grid-column: 1 / -1;
  }
}

.testimonial {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.08);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial__author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.testimonial__meta {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ============================================================
   FIYAT (Pricing)
   ============================================================ */
.fiyat { background: var(--bg); }

.fiyat__header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms cubic-bezier(.2,.7,.2,1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.12);
  border-color: var(--accent);
}

.pricing-card h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.pricing-card__price small {
  font-size: 0.55em;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink-soft);
  display: block;
  margin-top: 4px;
  text-transform: none;
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  flex: 1;
}

.pricing-card__list li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent);
}

.pricing-card__excluded {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.7;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.pricing-card__excluded strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.fiyat__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2rem;
  opacity: 0.75;
}

/* ============================================================
   SSS (FAQ accordion)
   ============================================================ */
.sss { background: var(--surface); }

.sss__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 22px) 0;
  cursor: pointer;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color 240ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   RANDEVU (Appointment form)
   ============================================================ */
.randevu { background: var(--bg); }

.randevu__header {
  text-align: center;
  margin-bottom: 3rem;
}

.randevu__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
  .randevu__grid { grid-template-columns: 1.3fr 1fr; }
}

/* --- Form --- */
.form-block { }

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 240ms ease, box-shadow 240ms ease;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  outline: none;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.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);
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field-checkbox label {
  margin-bottom: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-block .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  margin-top: 8px;
}

/* --- Info panel (hours) --- */
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  align-self: start;
}

.info-panel h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}

.info-row:last-child { border-bottom: none; }
.info-row:hover { transform: translateX(4px); }

.info-row svg {
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms ease, transform 240ms ease;
}

.info-row:hover svg {
  color: var(--ink);
  transform: scale(1.08);
}

.info-row strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-row span, .info-row a {
  color: var(--ink-soft);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.info-row a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}

.footer__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 240ms ease, padding-left 240ms ease;
  text-decoration: none;
}
.footer__col a:hover { color: var(--accent); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.footer__bottom a { color: var(--ink-soft); }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

@media (max-width: 639px) {
  .cookie-banner {
    bottom: 8px; left: 8px; right: 8px;
  }
}


@media (min-width: 640px) {
  .cookie-banner {
    left: 24px; right: auto;
    max-width: 420px;
  }
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner p a { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  min-height: 44px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease;
  border: 1px solid var(--line-strong);
  padding: 10px 12px;
}

.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions .cookie-accept:hover {
  background: var(--accent-2);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}

.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-actions .cookie-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line-strong);
}

.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-actions .cookie-settings:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/* ============================================================
   PAGE — inner (about, contact, policies)
   ============================================================ */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.page-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5em;
  color: var(--ink-soft);
}

.page-content li { margin-bottom: 0.4rem; line-height: 1.65; }

.page-content strong { color: var(--ink); }

/* --- Team Cards --- */
.team-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.08);
}

.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.team-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- Contact channels (iletisim) --- */
.contact-channels {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: clamp(14px, 2vw, 18px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1),
              background 240ms cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}

.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}

.contact-row svg {
  width: 20px; height: 20px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 240ms ease, transform 240ms ease;
}

.contact-row:hover svg {
  transform: scale(1.08);
}

.contact-row strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact-row span,
.contact-row a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-row a:hover { color: var(--accent); }

/* ============================================================
   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-scroll table {
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table-scroll th {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
}

.table-scroll td { color: var(--ink-soft); }

.table-scroll tr:last-child td { border-bottom: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.16,.73,.24,1),
              transform 650ms cubic-bezier(.16,.73,.24,1);
  animation: reveal-auto 650ms cubic-bezier(.16,.73,.24,1) 0.6s both;
}

@keyframes reveal-auto {
  to { opacity: 1; transform: translateY(0); }
}

.reveal.is-in {
  animation: none;
  opacity: 1;
  transform: none;
}

.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 90ms);
  animation-delay: calc(0.6s + var(--i) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   NICHE ANIMATIONS — Tailoring
   ============================================================ */

/* Cross-stitch underline on h2 */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 12px;
  margin: 14px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'%3E%3Cpath d='M0 6l5-4 5 8 5-8 5 8 5-8 5 8 5-8 5 8 5-8 5 8 5-8' fill='none' stroke='%23C9A96E' stroke-width='0.8' stroke-dasharray='3 2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Thread-weave ambient in manifesto bg */
@keyframes thread-drift {
  0%, 100% { background-position: 0 0, 20px 20px; }
  50% { background-position: 10px 5px, 30px 15px; }
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(201,169,110,0.015) 30px, rgba(201,169,110,0.015) 31px),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(201,169,110,0.015) 30px, rgba(201,169,110,0.015) 31px);
  pointer-events: none;
  animation: thread-drift 15s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .manifesto::before { animation: none; }
}

.manifesto { position: relative; }

/* Needle-thread shimmer on timeline markers */
@keyframes marker-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}

.timeline__marker {
  animation: marker-pulse 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .timeline__marker { animation: none; }
}

/* Fabric swatch shimmer on hover */
@keyframes fabric-shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.kumas-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(105deg, transparent 40%, rgba(201,169,110,0.06) 45%, rgba(201,169,110,0.12) 50%, rgba(201,169,110,0.06) 55%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.kumas-card { position: relative; overflow: hidden; }

.kumas-card:hover::after {
  opacity: 1;
  animation: fabric-shine 900ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .kumas-card:hover::after { animation: none; opacity: 0; }
}

/* CTA hover hue shift */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: var(--accent-2);
  transform: translate(-50%, -50%);
  transition: width 360ms cubic-bezier(.2,.7,.2,1), height 360ms cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}

.btn-primary:hover::before {
  width: 300px; height: 300px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
}

.thankyou-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.thankyou-section p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
}

.error-section .error-code {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}

.error-section h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 1rem 0;
}

.error-section p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-list a {
  font-size: 0.95rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sitemap-list a:hover { color: var(--accent); }

.sitemap-list a::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; }
  .stats-row { gap: 1.5rem; }
  .stat__number { font-size: clamp(1.8rem, 8vw, 2.6rem); }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }

  .hero { padding: clamp(3rem, 10vw, 5rem) clamp(16px, 4vw, 24px); }

  .trust-strip { gap: 8px; }
  .trust-strip__badge { font-size: 0.65rem; padding: 5px 10px; }

  .pricing-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }

  .kumas-card { flex: 0 0 85vw; }

  .timeline { padding-left: 40px; }
  .timeline__marker {
    width: 32px; height: 32px;
    left: -40px;
  }
  .timeline__marker svg { width: 16px; height: 16px; }
}

@media (max-width: 360px) {
  h1 { font-size: 2.2rem; }

  .pricing-card { padding: 18px; }

  .hero__stitch { width: 80%; }
}

/* ============================================================
   ENHANCED TAILORING MICRO-EFFECTS
   ============================================================ */

/* Gold thread shimmer on section titles on hover */
.section-title {
  transition: color 320ms ease;
}
.section-title:hover {
  color: var(--accent);
}

/* Testimonial card warm border glow on hover */
.testimonial:hover {
  border-color: var(--accent);
}

/* Pricing card gold accent line on hover */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card { position: relative; overflow: hidden; }
.pricing-card:hover::before {
  opacity: 1;
}

/* Stagger reveal for timeline steps */
.timeline__step.is-in {
  transition-delay: calc(var(--i, 0) * 120ms);
}

/* FAQ item hover gold accent */
.faq-item summary:hover::after {
  border-color: var(--ink);
}

/* Info row gold line on hover */
.info-row:hover {
  border-bottom-color: var(--accent);
}

/* Team card gold top accent */
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 320ms ease;
}
.team-card { position: relative; overflow: hidden; }
.team-card:hover::before {
  opacity: 1;
}

/* Contact row icon gold rotation on hover */
.contact-row:hover svg {
  color: var(--accent);
}

/* Footer link subtle slide */
.footer__col a {
  position: relative;
}
.footer__col a::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer__col a:hover::before {
  width: 100%;
}

/* Warm ambient glow on hero CTA */
.hero__actions .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(201,169,110,0.3), 0 0 60px rgba(201,169,110,0.08);
}

/* Eyebrow letter-spacing animation */
.eyebrow {
  transition: letter-spacing 320ms cubic-bezier(.2,.7,.2,1), color 240ms ease;
}

/* Trust strip badge hover */
.trust-strip__badge {
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}
.trust-strip__badge:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Gold-rule pulse on scroll */
@keyframes gold-rule-shimmer {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}
.gold-rule.is-in {
  animation: gold-rule-shimmer 2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .gold-rule.is-in { animation: none; }
  .trust-strip__badge:hover { transform: none; }
  .hero__actions .btn-primary:hover { box-shadow: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }

  main { padding-top: 0; }

  body {
    color: #1a1a1a;
    background: #fff;
    font-size: 11pt;
  }

  a { color: #1a1a1a; text-decoration: underline; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; }

  .hero { min-height: auto; padding: 2rem 0; }

  section { padding: 1.5rem 0; page-break-inside: avoid; }

  .reveal { opacity: 1 !important; transform: none !important; }
}
