/* ── Design Tokens ─────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #A07830;
  --black:       #0A0A08;
  --black-2:     #111110;
  --black-3:     #1A1A17;
  --black-4:     #242420;
  --cream:       #F5F0E8;
  --cream-dim:   rgba(245,240,232,0.72);
  --cream-muted: rgba(245,240,232,0.42);
  /* aliases — eski adlar geriye dönük çalışsın */
  --white:       var(--cream);
  --white-dim:   var(--cream-dim);
  --white-muted: var(--cream-muted);
  --border:      rgba(201,168,76,0.18);
  --border-hover:rgba(201,168,76,0.55);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block; max-width: 100%;
}

a {
  color: inherit; text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Utility ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.gold {
  color: var(--gold);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark); border-radius: 3px;
}

/* ═══════════════════════════════════════════════════ */
/*  HERO                                               */
/* ═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 5.5rem; /* stats bar height */
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark + gold gradient overlay over video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(105deg, rgba(10,10,8,0.88) 0%, rgba(10,10,8,0.6) 55%, rgba(10,10,8,0.35) 100%),
  linear-gradient(to top, rgba(10,10,8,0.95) 0%, transparent 30%);
  z-index: 1;
}

/* Subtle gold grid on top of overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
  linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-tag span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--white); border-color: rgba(245,240,232,0.5);
}

/* Stats bar — pinned to bottom of hero, full width */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
  border-top: 1px solid rgba(201,168,76,0.2);
  background: rgba(10,10,8,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-stat {
  flex: 0 1 220px;
  text-align: center;
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat small {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Decorative vertical line */
.hero-line {
  position: absolute;
  top: 0; right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.1;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════ */
/*  MARQUEE STRIP                                       */
/* ═══════════════════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 0.9rem;
  overflow: hidden;
  background: var(--black-2);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 2.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  white-space: nowrap;
}

.marquee-item span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════ */
/*  SECTION COMMONS                                    */
/* ═══════════════════════════════════════════════════ */
section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic; color: var(--gold);
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
  line-height: 1.8;
}

.divider {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════ */
/*  ABOUT                                              */
/* ═══════════════════════════════════════════════════ */
#about {
  background: var(--black-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 4/5;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-img-frame .placeholder-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
  radial-gradient(ellipse at 40% 30%, rgba(201,168,76,0.1) 0%, transparent 60%),
  var(--black-3);
}

.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: 48%;
  aspect-ratio: 1/1;
  border: 3px solid var(--black-2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}

.about-img-frame .placeholder-visual svg {
  width: 80px; height: 80px;
  opacity: 0.35;
}

.about-img-frame .placeholder-visual p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.1rem;
  box-shadow: 0 0 40px rgba(201,168,76,0.25);
}

.about-badge strong {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.about-badge small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,8,0.7);
}

.about-text {
  padding-left: 1rem;
}

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--black-3);
}

.feature-icon svg {
  width: 18px; height: 18px; color: var(--gold);
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════ */
/*  SERVICES                                           */
/* ═══════════════════════════════════════════════════ */
#services {
  background: var(--black);
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to top,
  rgba(10,10,8,0.92) 0%,
  rgba(10,10,8,0.45) 50%,
  rgba(10,10,8,0.15) 100%
  );
  transition: background 0.4s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
  to top,
  rgba(10,10,8,0.96) 0%,
  rgba(10,10,8,0.6) 50%,
  rgba(10,10,8,0.25) 100%
  );
}

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}

.service-card-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  font-size: 0.78rem;
  color: var(--white-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0;
}

.service-card:hover p {
  max-height: 80px; opacity: 1;
}

.service-card-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
}

.service-card-arrow svg {
  width: 13px; height: 13px; color: var(--gold);
}

.service-card:hover .service-card-arrow {
  opacity: 1; transform: translateY(0); border-color: var(--gold); background: rgba(201,168,76,0.1);
}

/* ═══════════════════════════════════════════════════ */
/*  PROCESS                                            */
/* ═══════════════════════════════════════════════════ */
#process {
  background: var(--black-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.25;
}

.process-step {
  padding: 0 1.5rem;
  text-align: center;
}

.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--black-3);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════ */
/*  CTA BANNER                                         */
/* ═══════════════════════════════════════════════════ */
#cta-banner {
  background: var(--black-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#cta-banner .section-title {
  margin-bottom: 1.25rem;
}

#cta-banner .section-desc {
  margin: 0 auto 2.5rem; text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════ */
/*  CONTACT                                            */
/* ═══════════════════════════════════════════════════ */
#contact {
  background: var(--black-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--black-3);
}

.contact-icon svg {
  width: 18px; height: 18px; color: var(--gold);
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* Form */
.contact-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.form-group input,
    .form-group textarea,
    .form-group select {
  background: var(--black-4);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-group input::placeholder,
    .form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}

.form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--black-3);
}

.form-group textarea {
  resize: vertical; min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════════════════ */
/*  MOBILE                                             */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card--featured {
    grid-column: span 2; grid-row: span 1; min-height: 340px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 1 50%; border-bottom: 1px solid rgba(201,168,76,0.14);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(201,168,76,0.14);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 0; bottom: -1rem;
  }

  .about-text {
    padding-left: 0; margin-top: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: span 1; min-height: 300px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr; gap: 2.5rem;
  }

  .process-grid::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  PREMIUM LAYER — grain, reveal, particles, shimmer  */
/* ═══════════════════════════════════════════════════ */
/* Grain dokusu — tüm sayfaya çok hafif atmosfer */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll-reveal sistemi */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Reveal sonrası kart hover lift'i geri kazan */
.service-card[data-reveal].revealed {
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.service-card[data-reveal].revealed:hover {
  transform: translateY(-4px);
}

/* Hero başlık — satır satır kinetik giriş */
.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: heroLine 1.1s var(--ease-out) forwards;
}

.hero-title .line:nth-child(1) > span {
  animation-delay: 0.15s;
}

.hero-title .line:nth-child(2) > span {
  animation-delay: 0.3s;
}

.hero-title .line:nth-child(3) > span {
  animation-delay: 0.45s;
}

@keyframes heroLine {
  to { transform: translateY(0); }
}

.hero-tag {
  animation: heroFade 0.9s var(--ease-out) 0.05s backwards;
}

.hero-desc {
  animation: heroFade 0.9s var(--ease-out) 0.65s backwards;
}

.hero-actions {
  animation: heroFade 0.9s var(--ease-out) 0.8s backwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Altın toz partikül canvas'ı */
#gold-dust {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.btn-primary::before, .form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover::before, .form-submit:hover::before {
  left: 130%;
}

/* Services — bento düzeni */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}

.service-card {
  aspect-ratio: auto; min-height: 300px;
}

.service-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
}

.service-card--featured h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.service-card--featured .service-card-body {
  padding: 2.25rem;
}

.service-card--featured p {
  font-size: 0.88rem; max-width: 480px;
}

/* Hover altın çizgi */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 3;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Process — çizgi + adım reveal */
.process-grid::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-in-out) 0.2s;
}

.process-grid.revealed::before {
  transform: scaleX(1);
}

/* Reduced motion — animasyonlar kapanır, içerik görünür kalır */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1; transform: none; transition: none;
  }

  .hero-title .line > span {
    transform: none; animation: none;
  }

  .hero-tag, .hero-desc, .hero-actions {
    animation: none;
  }

  .process-grid::before {
    transform: scaleX(1); transition: none;
  }

  #gold-dust {
    display: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important; animation-duration: 0.01ms !important;
  }
}

/* ── FormLayer bridge ──────────────────────────────── */
/* The plugin ships light-theme defaults at a higher specificity than the
   section rules above (.formlayer-form input[type="text"]), so the design is
   restated here with one extra class to win outright, regardless of load order. */
.contact-form .formlayer-form-fields-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

.contact-form .formlayer-field-wrap,
.contact-form .formlayer-submit-wrap {
  grid-column: 1 / -1;
}

.contact-form .formlayer-field-wrap.fl-half {
  grid-column: span 1;
}

.contact-form .formlayer-form .formlayer-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.contact-form .formlayer-form .required-indicator {
  color: var(--gold);
  margin-left: 0.25em;
}

.contact-form .formlayer-form .formlayer-input {
  background: var(--black-4);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  height: auto;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  box-shadow: none;
  width: 100%;
  transition: border-color 0.25s;
}

.contact-form .formlayer-form .formlayer-input::placeholder {
  color: rgba(245,240,232,0.25);
}

.contact-form .formlayer-form .formlayer-input:focus {
  border-color: var(--gold);
  box-shadow: none;
  transform: none;
}

.contact-form .formlayer-form select.formlayer-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

.contact-form .formlayer-form .formlayer-input option {
  background: var(--black-3);
  color: var(--white);
}

.contact-form .formlayer-form textarea.formlayer-input {
  min-height: 110px;
  resize: vertical;
}

.contact-form .formlayer-form .formlayer-submit-btn {
  flex: 1 1 100%;
  width: 100%;
  height: auto;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.contact-form .formlayer-form .formlayer-submit-btn:hover {
  background: var(--gold-light);
}

.contact-form .formlayer-form-status {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gold-light);
}

.contact-form .formlayer-form-status:not(:empty) {
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  background: var(--black-3);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .contact-form .formlayer-form-fields-wrapper {
    grid-template-columns: 1fr;
  }
}