:root {
  --bg: #09090b;
  --fg: #fafafa;
  --rose: #e8c4b8;
  --champagne: #d4af7a;
  --gold: #c9a962;
  --muted: #a1a1aa;
  --card: rgba(24, 24, 27, 0.82);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html.scroll-lock,
html.scroll-lock body {
  overflow: hidden !important;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

html.scroll-lock body {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--champagne);
  color: #1a1008;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
  left: 0;
}

/* Video layer */
.video-shell {
  position: relative;
}

.video-shell.intro-active {
  height: 100dvh;
  overflow: hidden;
}

.video-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  contain: layout style paint;
  transform: translateZ(0);
}

.video-layer.ended {
  contain: strict;
}

.video-layer.intro {
  z-index: 100;
}

.video-layer video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-layer.poster-reveal video,
.video-layer.ended video {
  opacity: 0;
}

/* Fotoğraf — videodan yumuşak geçiş */
.hero-poster-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-layer.poster-reveal .hero-poster-wrap,
.video-layer.ended .hero-poster-wrap {
  opacity: 1;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  opacity: 0;
  filter: brightness(1) saturate(1);
  transition:
    opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 2s ease;
}

.hero-poster-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(9, 9, 11, 0.06);
  opacity: 0;
  transition: opacity 1.8s ease, background 2s ease;
}

.video-layer.poster-reveal .hero-poster,
.video-layer.ended .hero-poster {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1.38) saturate(1.2) contrast(1.06);
}

.video-layer.poster-reveal .hero-poster-shade,
.video-layer.ended .hero-poster-shade {
  opacity: 1;
}

.video-layer.ended .hero-poster-wrap {
  animation: posterBreath 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes posterBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

.video-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 48%,
    rgba(0, 0, 0, 0.22) 74%,
    rgba(0, 0, 0, 0.52) 100%
  );
  transition: background 1s ease;
}

.vignette.intense {
  background: radial-gradient(
    ellipse at center,
    transparent 20%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px 40px rgba(0, 0, 0, 0.7);
}

.vignette-gradients {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent, rgba(0, 0, 0, 0.8)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.9));
}

.video-dim {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.68);
  opacity: 0;
  transition: opacity 1s ease, background 1.2s ease;
}

.video-layer.background .video-dim,
.video-layer.ended .video-dim {
  opacity: 1;
  background: rgba(9, 9, 11, 0.28);
}

.video-layer.ended .vignette::after {
  box-shadow: inset 0 0 50px 22px rgba(0, 0, 0, 0.28);
}

.video-layer.ended .vignette-gradients {
  opacity: 0.55;
}

/* Sparkles — hafif: 8 öğe, sadece transform + opacity, GPU katmanı */
.sparkles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  overflow: hidden;
  contain: strict;
  isolation: isolate;
}

.sparkles.is-paused .sparkle {
  animation-play-state: paused;
}

.sparkle {
  position: absolute;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 1px rgba(201, 169, 98, 0.45);
  opacity: 0;
  animation: sparkleRise var(--dur, 10s) linear infinite;
  animation-delay: var(--delay, 0s);
  animation-play-state: paused;
}

body.intro-complete .sparkle {
  animation-play-state: running;
}

.sparkle:nth-child(1) { left: 12%; top: 72%; --dur: 11s; --delay: 0s; }
.sparkle:nth-child(2) { left: 28%; top: 85%; --dur: 9s; --delay: 1.2s; }
.sparkle:nth-child(3) { left: 45%; top: 78%; --dur: 12s; --delay: 2.5s; }
.sparkle:nth-child(4) { left: 62%; top: 88%; --dur: 10s; --delay: 0.8s; }
.sparkle:nth-child(5) { left: 78%; top: 75%; --dur: 13s; --delay: 3.1s; }
.sparkle:nth-child(6) { left: 88%; top: 82%; --dur: 9.5s; --delay: 1.8s; }
.sparkle:nth-child(7) { left: 35%; top: 90%; --dur: 11.5s; --delay: 4s; }
.sparkle:nth-child(8) { left: 55%; top: 68%; --dur: 10.5s; --delay: 2.2s; }

@keyframes sparkleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  12% {
    opacity: 0.85;
  }
  88% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100vh, 0);
  }
}

@media (max-width: 768px) {
  .sparkle:nth-child(5),
  .sparkle:nth-child(6),
  .sparkle:nth-child(7),
  .sparkle:nth-child(8) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sparkles {
    display: none;
  }

  .hero-poster-wrap {
    animation: none !important;
    transition-duration: 0.01ms;
  }

  .video-layer.poster-reveal .hero-poster,
  .video-layer.ended .hero-poster {
    transform: scale(1);
  }

  .about-shine-panel,
  .about-shine-sweep,
  .about-title-shine {
    animation: none !important;
  }

  .about-title-shine {
    background: none;
    -webkit-text-fill-color: #1a1008;
  }
}

/* Content stacking */
.content-layer {
  position: relative;
  z-index: 10;
}

.content-layer.intro-active {
  pointer-events: none;
  height: 100dvh;
  overflow: hidden;
  z-index: 110;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.92);
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img-wrap {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
}

.header-cta {
  white-space: nowrap;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover {
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--champagne), var(--rose));
  color: #1a1008;
  border-color: transparent;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 1rem;
}

@media (min-width: 640px) {
  .hero {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 0 4rem;
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  opacity: 0;
}

.hero-title {
  max-width: 98vw;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(3rem, 14vw, 8.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
}

.hero-title .shimmer {
  background: linear-gradient(
    120deg,
    #fff 0%,
    var(--rose) 35%,
    var(--champagne) 55%,
    #fff 75%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 200% center;
  }
}

.hero-sub {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-sub {
    margin-top: 2rem;
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #e4e4e7;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 20rem;
  line-height: 1.5;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 5.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes heroTextReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translate3d(-32px, 0, 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-eyebrow.reveal {
  animation: heroTextReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 3s forwards;
}

.hero-title.reveal {
  animation: heroTextReveal 2s cubic-bezier(0.77, 0, 0.175, 1) 3.2s forwards;
}

.hero-sub.reveal {
  animation: heroTextReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 4.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }
}

/* Sections */
.section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: #fff;
}

.section-desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-desc a {
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s;
}

.section-desc a:hover {
  color: #fff;
}

/* Hizmetler — fotoğraf kartları */
.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-photo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}

.service-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.service-photo-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 37 / 24;
  background: #18181b;
}

.service-photo-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-photo-body {
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-photo-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.service-photo-brand {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}

.service-photo-desc {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.service-photo-cta {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  transition: color 0.2s;
}

.service-photo-card:hover .service-photo-cta {
  color: #fff;
}

/* Instagram galeri */
.gallery-header {
  margin-bottom: 0;
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.text-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--rose);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-btn:hover {
  color: #fff;
}

.gallery-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 9 / 16;
}

.gallery-video-wrap {
  position: absolute;
  inset: 0;
  background: #000;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-mute-btn {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(9, 9, 11, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.gallery-mute-btn:hover {
  background: rgba(9, 9, 11, 0.92);
  border-color: var(--champagne);
}

.gallery-mute-btn.is-unmuted {
  border-color: var(--champagne);
  background: rgba(201, 169, 98, 0.25);
}

.mute-icon {
  display: block;
  width: 0.9rem;
  height: 0.7rem;
  border: 2px solid #fff;
  border-radius: 2px;
  position: relative;
}

.mute-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #fff;
  transform: translateY(-50%);
}

.gallery-mute-btn.is-unmuted .mute-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    45deg,
    transparent 42%,
    #fff 42%,
    #fff 58%,
    transparent 58%
  );
}

.gallery-ig-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.3rem 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border-radius: 0.25rem;
  background: rgba(9, 9, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, color 0.2s;
}

.gallery-ig-badge:hover {
  background: rgba(201, 169, 98, 0.35);
  color: #fff;
}

.gallery-cta {
  margin-top: 2rem;
  text-align: center;
}

.collection-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem 1.25rem;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.25);
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.collection-card p {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* About */
.section-about {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  background: #ffffff;
}

.section-about .about-grid {
  max-width: 80rem;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2rem;
  }
}

.about-shine-panel {
  position: relative;
  border-radius: 1.25rem;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.65),
    rgba(232, 196, 184, 0.35) 35%,
    rgba(201, 169, 98, 0.55) 70%,
    rgba(212, 175, 106, 0.4)
  );
  background-size: 300% 300%;
  animation: aboutBorderGlow 10s ease infinite;
  box-shadow:
    0 0 32px rgba(201, 169, 98, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-shine-inner {
  position: relative;
  z-index: 1;
  border-radius: calc(1.25rem - 2px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(160deg, #ffffff 0%, #faf7f2 50%, #ffffff 100%);
  overflow: hidden;
}

.about-shine-sweep {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.6) 48%,
    rgba(201, 169, 98, 0.22) 52%,
    rgba(255, 255, 255, 0.5) 56%,
    transparent 68%
  );
  background-size: 220% 100%;
  animation: aboutTextSweep 7s ease-in-out infinite;
}

.section-about .section-label {
  color: #8b7355;
}

.about-label-glow {
  color: #9a7b3c;
  text-shadow: none;
}

.about-title-shine {
  background: linear-gradient(
    100deg,
    #1a1008 0%,
    #8b6914 22%,
    #1a1008 44%,
    #c9a962 62%,
    #1a1008 82%,
    #6b4f2a 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aboutTitleShine 9s linear infinite;
  filter: none;
}

.about-lead {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: #2d2a26;
  font-style: italic;
}

.about-lead em {
  color: #9a6b55;
  font-style: normal;
  text-shadow: none;
}

.about-subheading {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #1a1008;
  letter-spacing: 0.02em;
  text-shadow: none;
}

.about-text {
  margin-top: 0.75rem;
  line-height: 1.85;
  color: #4a4540;
  font-size: 0.95rem;
}

.about-glow {
  color: #9a7b3c;
  font-weight: 600;
  text-shadow: none;
}

.about-quote {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  color: #2d2a26;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.14), transparent);
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: none;
}

.about-cta {
  margin-top: 2rem;
  display: inline-flex;
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.15);
}

.section-about .btn-outline {
  color: #1a1008;
  border-color: rgba(154, 123, 60, 0.45);
  background: rgba(201, 169, 98, 0.08);
}

.section-about .btn-outline:hover {
  color: #1a1008;
}

@keyframes aboutBorderGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes aboutTextSweep {
  0%,
  100% {
    background-position: 200% 0;
    opacity: 0.6;
  }
  50% {
    background-position: -20% 0;
    opacity: 1;
  }
}

@keyframes aboutTitleShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-stats {
    position: sticky;
    top: 6rem;
  }
}

.stat-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: linear-gradient(160deg, #ffffff, #faf7f2);
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(201, 169, 98, 0.15), transparent 55%);
  pointer-events: none;
}

.stat-card:hover {
  border-color: rgba(201, 169, 98, 0.45);
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.15);
}

.stat-card .value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1008;
  text-shadow: none;
}

.stat-card .label {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b7355;
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.from-left {
  transform: translateX(-20px);
}

.reveal-on-scroll.from-right {
  transform: translateX(20px);
}

.reveal-on-scroll.from-left.visible,
.reveal-on-scroll.from-right.visible {
  transform: translate(0);
}

/* Contact */
.contact-box {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-box {
    padding: 3rem;
  }
}

.contact-desc {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.contact-item p,
.contact-item a {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  text-decoration: none;
  display: block;
}

.contact-item a:hover {
  color: var(--rose);
}

.contact-email {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.map-box {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.map-box-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.map-box-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.map-box-address {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.map-directions {
  font-size: 0.875rem;
  color: var(--rose);
  text-decoration: none;
  white-space: nowrap;
}

.map-directions:hover {
  color: #fff;
}

.map-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
}

.map-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(25%) invert(92%) hue-rotate(180deg) contrast(0.95);
}

.contact-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1008;
  text-decoration: none;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, var(--champagne), var(--rose));
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #09090b;
  text-decoration: none;
  border-radius: 0.375rem;
  background: #fff;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #e4e4e7;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.92);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #71717a;
}

/* Sol iletişim butonu — sabit, patlayan efektler */
.contact-fab {
  position: fixed;
  left: 0;
  top: auto;
  bottom: 0.35rem;
  z-index: 120;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
  .contact-fab {
    bottom: 0.2rem;
  }
}

body.intro-complete .contact-fab {
  opacity: 1;
  pointer-events: auto;
}

.contact-fab-btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-fab-fx {
  position: absolute;
  inset: -12px -8px -12px 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.contact-fab-ring {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 88%;
  height: 88%;
  border: 2px solid rgba(255, 230, 160, 0.85);
  border-radius: 1rem;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  box-shadow: 0 0 20px rgba(255, 220, 140, 0.5);
  animation: fabRingBurst 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.contact-fab-ring-2 {
  animation-delay: 0.12s;
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-fab-ring-3 {
  animation-delay: 0.24s;
  border-color: rgba(201, 169, 98, 0.9);
}

.contact-fab-spark {
  position: absolute;
  top: 50%;
  left: 70%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px #fff,
    0 0 14px var(--gold),
    0 0 22px rgba(255, 200, 100, 0.8);
  opacity: 0;
  animation: fabSparkBurst 2.6s ease-out infinite;
}

.contact-fab-spark:nth-child(4) {
  animation-name: fabSpark1;
}

.contact-fab-spark:nth-child(5) {
  animation-name: fabSpark2;
}

.contact-fab-spark:nth-child(6) {
  animation-name: fabSpark3;
}

.contact-fab-spark:nth-child(7) {
  animation-name: fabSpark4;
}

.contact-fab-spark:nth-child(8) {
  animation-name: fabSpark5;
}

.contact-fab-spark:nth-child(9) {
  animation-name: fabSpark6;
}

.contact-fab-trigger {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 11.5rem;
  padding: 1.25rem 2.15rem 1.25rem 1.5rem;
  border: none;
  border-radius: 0 1rem 1rem 0;
  background: linear-gradient(
    120deg,
    #fff4d6 0%,
    #f0ddb8 20%,
    var(--champagne) 45%,
    var(--gold) 70%,
    #ffe08a 100%
  );
  background-size: 280% 280%;
  color: #1a1008;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  isolation: isolate;
  animation:
    fabGradientShift 3.5s ease infinite,
    fabGlowPulse 1.8s ease-in-out infinite,
    fabExplodePop 2.6s cubic-bezier(0.34, 1.45, 0.64, 1) infinite;
  box-shadow:
    0 0 30px rgba(255, 220, 140, 0.7),
    0 0 60px rgba(201, 169, 98, 0.45),
    0 0 90px rgba(255, 200, 100, 0.2),
    4px 0 28px rgba(0, 0, 0, 0.3);
  transition: filter 0.25s ease;
}

.contact-fab-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.95), transparent 65%);
  opacity: 0;
  pointer-events: none;
  animation: fabFlashBurst 2.6s ease-out infinite;
}

.contact-fab-trigger-glow {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 255, 255, 0.85),
    rgba(255, 220, 140, 0.35) 45%,
    transparent 70%
  );
  animation: fabInnerGlow 1.4s ease-in-out infinite;
  pointer-events: none;
}

.contact-fab-trigger-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.25) 42%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.25) 58%,
    transparent 75%
  );
  background-size: 280% 100%;
  animation: fabShineSweep 1.6s ease-in-out infinite;
  pointer-events: none;
}

.contact-fab-trigger-text {
  position: relative;
  z-index: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 240, 200, 0.5);
}

.contact-fab-trigger:hover {
  filter: brightness(1.1);
}

.contact-fab.is-open .contact-fab-trigger,
.contact-fab.is-open .contact-fab-fx,
.contact-fab.is-open .contact-fab-flash {
  animation-play-state: paused;
}

.contact-fab.is-open .contact-fab-trigger {
  border-radius: 0;
}

@keyframes fabRingBurst {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  64% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  92% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

@keyframes fabSpark1 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 55px), calc(-50% - 28px)) scale(0.5);
  }
}

@keyframes fabSpark2 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 62px), calc(-50% + 8px)) scale(0.5);
  }
}

@keyframes fabSpark3 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 48px), calc(-50% + 32px)) scale(0.5);
  }
}

@keyframes fabSpark4 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 38px), calc(-50% - 12px)) scale(0.5);
  }
}

@keyframes fabSpark5 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 70px), calc(-50% - 8px)) scale(0.5);
  }
}

@keyframes fabSpark6 {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  66% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
  }
  88% {
    opacity: 0;
    transform: translate(calc(-50% + 44px), calc(-50% + 22px)) scale(0.5);
  }
}

@keyframes fabExplodePop {
  0%,
  62%,
  100% {
    transform: scale(1);
  }
  65% {
    transform: scale(1.22);
  }
  69% {
    transform: scale(0.9);
  }
  73% {
    transform: scale(1.12);
  }
  77% {
    transform: scale(0.97);
  }
  81% {
    transform: scale(1.05);
  }
  85% {
    transform: scale(1);
  }
}

@keyframes fabFlashBurst {
  0%,
  63%,
  100% {
    opacity: 0;
  }
  65% {
    opacity: 0.85;
  }
  72% {
    opacity: 0;
  }
}

@keyframes fabGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fabGlowPulse {
  0%,
  100% {
    box-shadow:
      0 0 24px rgba(255, 220, 140, 0.55),
      0 0 48px rgba(201, 169, 98, 0.3),
      4px 0 24px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow:
      0 0 50px rgba(255, 230, 160, 0.95),
      0 0 90px rgba(201, 169, 98, 0.6),
      0 0 120px rgba(255, 200, 100, 0.35),
      4px 0 36px rgba(0, 0, 0, 0.32);
  }
}

@keyframes fabInnerGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes fabShineSweep {
  0%,
  100% {
    background-position: 220% 0;
    opacity: 0.6;
  }
  50% {
    background-position: -40% 0;
    opacity: 1;
  }
}

.contact-fab-menu {
  width: min(17rem, calc(100vw - 4rem));
  margin-left: -0.5rem;
  padding: 1.25rem;
  border-radius: 0 1rem 1rem 0;
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-left: none;
  background: rgba(12, 12, 14, 0.94);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 40px rgba(201, 169, 98, 0.1),
    8px 0 32px rgba(0, 0, 0, 0.4);
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.contact-fab.is-open .contact-fab-menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.contact-fab-menu[hidden] {
  display: block;
}

.contact-fab-menu-title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.contact-fab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-fab-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(24, 24, 27, 0.7);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}

.contact-fab-item:hover {
  border-color: rgba(201, 169, 98, 0.3);
  background: rgba(32, 32, 36, 0.9);
  transform: translateX(3px);
}

.contact-fab-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
}

.contact-fab-icon-phone {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
}

.contact-fab-icon-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.35);
}

.contact-fab-icon-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 16px rgba(220, 39, 67, 0.3);
}

.contact-fab-icon-facebook {
  background: linear-gradient(135deg, #1877f2, #0d65d9);
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.35);
}

.contact-fab-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.contact-fab-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-fab-item-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 480px) {
  .contact-fab-trigger {
    min-width: 8.5rem;
    padding: 0.95rem 1.35rem 0.95rem 1rem;
    font-size: 0.95rem;
  }

  .contact-fab-menu {
    width: min(15.5rem, calc(100vw - 3.5rem));
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab-trigger,
  .contact-fab-trigger-glow,
  .contact-fab-trigger-shine,
  .contact-fab-flash,
  .contact-fab-ring,
  .contact-fab-spark {
    animation: none !important;
  }

  .contact-fab-menu {
    transition-duration: 0.01ms;
  }
}

.footer-copy a {
  color: var(--rose);
  text-decoration: none;
}

.footer-copy a:hover {
  color: #fff;
}

/* SSS — yerel SEO */
.faq-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem 1.75rem;
}

.faq-item dt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.faq-item dd {
  margin-top: 0.75rem;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item dd a {
  color: var(--rose);
  text-decoration: none;
}

.faq-item dd a:hover {
  color: #fff;
}

/* Deferred sections hidden until intro done */
.deferred {
  display: none;
}

.deferred.show {
  display: block;
}
