* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #060606;
  --bg-soft: #0c0c0c;
  --text: #f5f1ea;
  --muted: rgba(245, 241, 234, 0.68);
  --muted-2: rgba(245, 241, 234, 0.5);
  --line: rgba(245, 241, 234, 0.12);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", Arial, sans-serif;

  --hero-overlay-dark: rgba(8, 8, 8, 0.52);
  --hero-overlay-mid: rgba(8, 8, 8, 0.2);

  /* Nav: aynı mat ton, parlak beyaz değil */
  --nav-matte: #b5afa3;
}

html {
  margin: 0;
  padding: 0;
  background: #000;
  scroll-behavior: smooth;
  min-height: 100%;
  min-height: 100dvh;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100%;
  min-height: 100dvh;
}

/* Custom cursor — fareyi takip eder; difference ile altındaki piksel rengi tersler */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f5f1ea;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0.88;
  transition:
    width 0.2s ease,
    height 0.2s ease,
    opacity 0.2s ease;
}

.cursor.is-hover {
  width: 44px;
  height: 44px;
  opacity: 0.8;
}

/* Logo, MENU, menü linkleri: aynı daire (44px) */
.cursor.is-hover.is-text {
  width: 44px;
  height: 44px;
}

body.has-custom-cursor {
  cursor: none;
}

/* Özel imleç açıkken nav / menüde sistem ok/pointer’ı gösterme */
body.has-custom-cursor .logo,
body.has-custom-cursor .menu-toggle,
body.has-custom-cursor .menu-close,
body.has-custom-cursor .menu-link {
  cursor: none !important;
}

@media (pointer: coarse) {
  .cursor {
    display: none !important;
  }

  body.has-custom-cursor {
    cursor: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor {
    display: none !important;
  }

  body.has-custom-cursor {
    cursor: auto !important;
  }
}

/* Performance: let the browser skip rendering work for off-screen sections.
   Massive help on low-end devices and on slow connections (e.g. mobile in
   regions far from the CDN edge). The contain-intrinsic-size keeps the
   scrollbar stable while content is still not painted. */
.process-editorial,
.process-scene,
.process-transition,
.result-case,
.about-editorial-v2,
.contact-editorial {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* Videos: hint the compositor and avoid layout thrash */
.hero-video-el,
.insight-video {
  transform: translateZ(0);
  will-change: transform;
}

/* NAV — sayfanın parçası; bar/blur yok, okunabilirlik için kelimelerde gölge */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  padding: 28px clamp(22px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  pointer-events: none;
  background: transparent;
}

.nav > * {
  pointer-events: auto;
}

/* GUNES: eski serif (Cormorant), daire yok — sadece MENU gibi ince alt çizgi */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--nav-matte);
  padding: 0.2em 0;
}

.logo-text {
  position: relative;
  display: inline-block;
  color: rgba(245, 241, 234, 0.9);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.menu-text {
  position: relative;
  display: inline-block;
  color: rgba(245, 241, 234, 0.9);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(245, 241, 234, 0.72);
  transition: width 0.35s ease;
  pointer-events: none;
}

.logo:hover::after,
.logo:focus-visible::after {
  width: 100%;
}

.logo:focus-visible {
  outline: 1px solid rgba(245, 241, 234, 0.35);
  outline-offset: 6px;
}

.menu-toggle,
.menu-close {
  appearance: none;
  font-family: var(--font-body);
  cursor: pointer;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0.2em 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--nav-matte);
}

.menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(245, 241, 234, 0.72);
  transition: width 0.35s ease;
  pointer-events: none;
}

.menu-toggle:hover::after,
.menu-toggle:focus-visible::after {
  width: 100%;
}

.menu-close {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--nav-matte);
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 54px) 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.menu-overlay-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--nav-matte);
}

.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  margin: auto 0;
}

.menu-link {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transform: translateY(34px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, color 0.2s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(245, 241, 234, 0.72);
  transition: width 0.35s ease;
  pointer-events: none;
}

.menu-link:hover::after,
.menu-link:focus-visible::after {
  width: 100%;
}

.menu-link:hover,
.menu-link:focus-visible {
  color: rgba(245, 241, 234, 0.84);
}

.menu-link:focus-visible {
  outline: 1px solid rgba(245, 241, 234, 0.35);
  outline-offset: 6px;
}

/* Overlay nav (About / Process / Contact) — logo refactor öncesiyle aynı */
.menu-link span {
  display: inline-block;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    color 0.18s ease;
}

.menu-link span.is-space {
  width: 0.32em;
}

.menu-link span.scrambling {
  opacity: 0.72;
}

.menu-text span,
.logo-text span {
  display: inline-block;
  position: relative;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    color 0.18s ease;
}

.menu-text span.is-space,
.logo-text span.is-space {
  width: 0.32em;
}

.menu-text span.scrambling,
.logo-text span.scrambling {
  opacity: 0.72;
}

.hero-title span.scrambling {
  color: rgba(245, 241, 234, 0.38);
}

.menu-overlay-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.menu-overlay.is-open .menu-overlay-top {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}

.menu-overlay.is-open .menu-link {
  transform: translateY(0);
  opacity: 1;
}

.menu-overlay.is-open .menu-link:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-overlay.is-open .menu-link:nth-child(2) {
  transition-delay: 0.16s;
}

.menu-overlay.is-open .menu-link:nth-child(3) {
  transition-delay: 0.22s;
}

.menu-overlay.is-open .menu-overlay-meta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.24s;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

/* HERO ile alttaki section tamamen birleşsin — seam/line kapatma */
.hero.hero-video-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.hero.hero-video-section .hero-video,
.hero.hero-video-section .hero-overlay,
.hero.hero-video-section .hero-noise,
.hero.hero-video-section .hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Video katmanları siyah zemin (letterbox); overlay gradyanı ayrı kuralda */
.hero.hero-video-section .hero-video,
.hero.hero-video-section .hero-video video {
  background: #000 !important;
}

.hero.hero-video-section .hero-video {
  z-index: 0;
  overflow: hidden;
}

.hero.hero-video-section .hero-overlay,
.hero.hero-video-section .hero-noise,
.hero.hero-video-section .hero-grain {
  z-index: 1;
}

.hero.hero-video-section .hero-video video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1.1);
  transform-origin: center center;
  display: block;
}

.hero.hero-video-section .hero-content {
  position: relative;
  z-index: 3;
  min-height: 100%;
  height: 100%;
  margin: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.94) contrast(1.04) saturate(0.92);
  transform: scale(1.05);
  pointer-events: none;
}

.hero-video video::-webkit-media-controls,
.hero-video video::-webkit-media-controls-enclosure,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 85% 65% at 50% 40%,
      transparent 0%,
      rgba(8, 8, 8, 0.22) 72%,
      rgba(0, 0, 0, 0.36) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.12) 55%,
      rgba(0, 0, 0, 0.32) 100%
    );
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.02;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0.7px, transparent 0.9px),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.12) 0.6px, transparent 0.85px),
    radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.1) 0.7px, transparent 0.9px);
  background-size: 180px 180px, 240px 240px, 200px 200px;
  mix-blend-mode: screen;
}

.hero-grain {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.015;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0.7px, transparent 0.8px);
  background-size: 20px 20px;
  animation: heroGrain 0.45s steps(1) infinite;
}

@keyframes heroGrain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1.5%); }
  20% { transform: translate(1.5%, 1%); }
  30% { transform: translate(-1%, 2%); }
  40% { transform: translate(2%, -1%); }
  50% { transform: translate(-1.5%, 1.5%); }
  60% { transform: translate(1%, -2%); }
  70% { transform: translate(-2%, 0.8%); }
  80% { transform: translate(0.8%, -1.2%); }
  90% { transform: translate(1.5%, 1.5%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 60px);
}

.hero-side-text {
  position: absolute;
  top: 120px;
  left: clamp(24px, 5vw, 60px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(245, 241, 234, 0.9);
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 14ch;
  color: rgba(245, 241, 234, 0.96);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 30px rgba(0, 0, 0, 0.42);
  margin: 0;
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
}

.hero-title .l1 {
  padding-left: 0;
}

.hero-title .l2 {
  padding-left: 5rem;
}

/* FR hero: wider measure + tighter l2 indent so two-word lines don't split mid-phrase */
html[lang="fr"] .hero-title {
  max-width: min(26ch, 92vw);
}

html[lang="fr"] .hero-title .l2 {
  padding-left: clamp(1.5rem, 5vw, 3.25rem);
}

/* INSIGHT — siyah blok + video; metin scroll ile domino */
.insight-section {
  position: relative;
  z-index: 2;
  background: #000 !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6.5vw, 72px) clamp(22px, 4vw, 54px);
  margin-top: 0 !important;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.insight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.insight-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-0.5em, 0.42em, 0) rotate(-1.1deg);
  transition:
    opacity 1.18s cubic-bezier(0.26, 1, 0.4, 1),
    transform 1.18s cubic-bezier(0.26, 1, 0.4, 1);
  transition-delay: calc(var(--w, 0) * 142ms);
  will-change: opacity, transform;
}

.insight-copy.is-revealed .insight-word {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
}

.insight-last-sentence {
  display: block;
  margin-top: 0.4em;
}

.insight-last-sentence.insight-last-sentence--slump {
  animation: insight-last-slump 1.12s cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

@keyframes insight-last-slump {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 0.7em, 0);
  }
  100% {
    transform: translate3d(0, 0.38em, 0);
  }
}

.insight-lead {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.75vw, 2.15rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: rgba(245, 241, 234, 0.82);
  max-width: 32ch;
  margin: 0;
}

.insight-note {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.48);
  max-width: 40ch;
  margin: 1.1rem 0 0;
}

.insight-video-wrap {
  position: relative;
  border-radius: 0;
  overflow: visible;
  border: 0;
  aspect-ratio: 3 / 4;
  max-height: min(380px, 52vh);
  margin-left: auto;
  width: 100%;
  max-width: 280px;
  background: var(--bg-soft);
  user-select: none;
  -webkit-user-select: none;
}

.insight-video-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.insight-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  object-position: center 20%;
  /* Düşük kontrast + hafif blur: H.264 blok / mosquito noise daha az belirgin */
  filter: brightness(0.96) contrast(0.94) saturate(0.88) blur(0.35px);
  transform: scale(1);
  opacity: 1;
  pointer-events: none;
}

/* Varsayılan oynatıcı kontrolleri (WebKit / bazı Chromium sürümleri) */
.insight-video::-webkit-media-controls,
.insight-video::-webkit-media-controls-enclosure,
.insight-video::-webkit-media-controls-panel,
.insight-video::-webkit-media-controls-overlay-enclosure {
  display: none !important;
}

.insight-video-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: default;
  background: transparent;
  border-radius: 0;
}

/* PROCESS — transition line (editorial beat) */
.process-transition {
  position: relative;
  background: transparent;
  padding: clamp(40px, 7vh, 72px) clamp(22px, 4vw, 54px)
    clamp(36px, 6vh, 64px);
  margin-top: clamp(48px, 7vw, 72px);
  margin-bottom: clamp(72px, 10vw, 120px);
}

.process-transition-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.process-transition-line {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  max-width: min(44ch, 92vw);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
  color: rgba(245, 241, 234, 0.78);
}

.process-transition-line--scroll-blur {
  --intro-progress: 0;
  opacity: calc(0.2 + var(--intro-progress) * 0.8);
  filter: blur(calc((1 - var(--intro-progress)) * 12px));
  transform: translate3d(0, calc((1 - var(--intro-progress)) * 18px), 0);
  will-change: opacity, filter, transform;
}

/* PROCESS — editorial hero (cinematic scene) */
.process-editorial {
  position: relative;
  background: transparent;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 40px);
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.process-editorial-top {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 18px;
}

.process-editorial-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.process-editorial-head-top {
  display: none;
}

.process-editorial-kicker,
.process-editorial-dot {
  display: none;
}

.process-editorial-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-left: 0;
  margin-top: 2px;
  margin-bottom: 18px;
}

.process-editorial-step-line {
  width: 34px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(245, 241, 234, 0.22) 0%,
    rgba(245, 241, 234, 0.04) 100%
  );
  box-shadow: 0 0 10px rgba(245, 241, 234, 0.05);
}

.process-editorial-step-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(245, 241, 234, 0.5);
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 12px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(0, 0, 0, 0.55);
}

.process-editorial-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.process-editorial-copy {
  padding-top: 2px;
}

.process-editorial-title {
  display: flex;
  flex-direction: column;
  gap: 0.01em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: rgba(245, 241, 234, 0.96);
  width: max-content;
  max-width: 100%;
}

.process-editorial-title span {
  display: block;
  white-space: nowrap;
}

.process-editorial-title.is-tight span:nth-child(2) {
  padding-left: 0.2em;
}

.process-editorial-title.is-tight span:nth-child(3) {
  padding-left: 0.4em;
}

.process-editorial-text {
  margin-top: 20px;
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.48);
}

.process-editorial-media {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  align-self: start;
  margin-top: -20px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}

.process-editorial-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(1.06) contrast(1.05) saturate(0.9);
  transform: scale(1.01);
}

.process-editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.14));
}

.process-float-tag {
  position: absolute;
  right: clamp(12px, 1.6vw, 22px);
  bottom: clamp(12px, 1.8vw, 20px);
  z-index: 3;

  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.28em;

  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  color: #fff;
  mix-blend-mode: difference;
  opacity: 0.85;

  pointer-events: none;
  user-select: none;
}

.tag-line-1 {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.58;
}

.tag-line-2 {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.process-editorial-meta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 14px auto 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.process-editorial-meta span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.3);
}

/* Process: pixel sprite — in Hairline row; sheet → 96px tile */
.process-pixel-asset {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  margin-right: 2px;

  background-image: url("assets/hairline-animation.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 960px 96px;

  image-rendering: pixelated;
  image-rendering: crisp-edges;

  opacity: 0;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(0, 2px, 0);

  will-change: opacity, background-position;
}

.process-editorial.is-visible .process-pixel-asset {
  animation:
    pixelAppear 0.4s ease forwards 1s,
    pixelDrawLoop96 1.2s steps(10) infinite 1.4s;
}

@keyframes pixelAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.7;
  }
}

@keyframes pixelDrawLoop96 {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -960px 0;
  }
}

@media (max-width: 980px) {
  .process-editorial {
    min-height: auto;
    padding: 34px 20px 48px;
  }

  .process-editorial-step {
    margin-left: 0;
  }

  .process-editorial-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 3vw, 24px);
    align-items: center;
  }

  .process-editorial-title,
  .process-editorial-text {
    max-width: 100%;
  }

  .process-editorial-media {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-top: 0;
  }

  .process-editorial-meta {
    justify-content: flex-start;
  }

  .process-pixel-asset {
    width: 76px;
    height: 76px;
    background-size: 760px 76px;
    transform: translate3d(0, 2px, 0);
  }

  .process-editorial.is-visible .process-pixel-asset {
    animation:
      pixelAppear 0.4s ease forwards 1s,
      pixelDrawLoop76 1.2s steps(10) infinite 1.4s;
  }
}

@keyframes pixelDrawLoop76 {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -760px 0;
  }
}

@media (max-width: 768px) {
  .process-editorial {
    padding: 28px 18px 40px;
  }

  .process-editorial-step {
    margin-left: 0;
    margin-top: 0;
    gap: 10px;
  }

  .process-editorial-step-line {
    width: 30px;
  }

  .process-editorial-step-name {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .process-editorial-title {
    font-size: clamp(1.35rem, 5.6vw, 2.4rem);
    max-width: 100%;
  }

  .process-editorial-text {
    font-size: 11px;
    line-height: 1.55;
    margin-top: 10px;
  }

  .process-editorial-media {
    max-width: 100%;
  }

  .process-float-tag {
    right: 6px;
    bottom: 6px;
  }

  .tag-line-1 {
    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .tag-line-2 {
    font-size: clamp(9px, 2.6vw, 12px);
  }

  .process-editorial-meta span {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .process-pixel-asset {
    width: 64px;
    height: 64px;
    background-size: 640px 64px;
    transform: translate3d(0, 0, 0);
  }

  .process-editorial.is-visible .process-pixel-asset {
    animation:
      pixelAppear 0.4s ease forwards 1s,
      pixelDrawLoop64 1.2s steps(10) infinite 1.4s;
  }
}

@keyframes pixelDrawLoop64 {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -640px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-pixel-asset {
    opacity: 0.7 !important;
    animation: none !important;
    background-position: 0 0 !important;
  }

  .process-scene-figure--tilt-right,
  .process-scene-figure--tilt-left {
    transform: none;
  }
}

/* PROCESS — editorial steps */
.process-scene {
  display: grid;
  grid-template-columns: 120px minmax(0, 1180px);
  justify-content: center;
  gap: 30px;
  padding: 80px clamp(22px, 4vw, 54px);
  background: transparent;
}

.process-scene-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

/* Extraction label = Hairline ile aynı sistem */
.process-scene-label {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  padding-left: 50px;
}

.process-scene-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(245, 241, 234, 0.2);
  transform: translateY(-50%);
}

.process-scene-title {
  margin: 0 0 48px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: rgba(245, 241, 234, 0.95);
}

.process-scene-text {
  margin-top: 0;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 241, 234, 0.52);
}

.process-scene-body--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.process-scene--layout-media-start .process-scene-media {
  order: 1;
}

.process-scene--layout-media-start .process-scene-main {
  order: 2;
}

.process-scene--layout-media-end .process-scene-media {
  order: 2;
}

.process-scene--layout-media-end .process-scene-main {
  order: 1;
}

.process-scene-main,
.process-scene-media {
  min-width: 0;
}

.process-scene-main {
  margin-left: auto;
  max-width: 520px;
  padding-left: 12px;
}

.process-scene-media {
  width: 100%;
}

/* Extraction / Implantation — şerit üstte (Hairline ile aynı step + çizgi), altında görsel + başlık + paragraf */
.process-scene--extraction,
.process-scene--implantation {
  display: block;
}

.process-scene--extraction .process-scene-stack,
.process-scene--implantation .process-scene-stack {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.process-scene--extraction .process-scene-body,
.process-scene--implantation .process-scene-body {
  padding-left: 0;
}

.process-scene-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-soft);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.process-scene-figure__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.process-scene-figure__video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.process-scene-figure--tilt-right,
.process-scene-figure--tilt-left {
  transform: none !important;
}

.process-scene--finale {
  padding-bottom: clamp(56px, 8vw, 100px);
}

/* Extraction — üç satır başlık + tek görsel */
.process-scene-title--triple {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  max-width: 12ch;
}

.process-scene-title--triple span {
  display: block;
}

.process-scene-title--triple span:nth-child(2) {
  padding-left: 0.24em;
}

.process-scene-title--triple span:nth-child(3) {
  padding-left: 0.48em;
}

.process-scene-figure__img--extract {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: min(560px, 70vh);
  object-position: 48% center;
}

@media (max-width: 900px) {
  .process-scene {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 40px 16px;
  }

  .process-scene-title {
    max-width: 100%;
    font-size: clamp(1.25rem, 5vw, 2.2rem);
    margin: 0 0 18px;
  }

  .process-scene-text {
    max-width: 100%;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .process-scene-body--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(12px, 3vw, 24px);
    align-items: center;
  }

  .process-scene-main {
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
  }

  .process-scene-figure__img--extract,
  .process-scene-figure__img--implantation {
    max-height: none;
  }
}

/* CONTACT — large CTA strip */
.contact-editorial {
  padding: clamp(80px, 12vw, 160px) clamp(22px, 4vw, 54px);
  background: transparent;
}

.contact-editorial-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-editorial-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.36);
}

.contact-editorial-lead {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(245, 241, 234, 0.55);
}

.contact-mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: rgba(245, 241, 234, 0.92);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: rgba(245, 241, 234, 1);
  opacity: 1;
}

.contact-mail:focus-visible {
  outline: 1px solid rgba(245, 241, 234, 0.35);
  outline-offset: 8px;
}

.contact-social {
  margin-top: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.8vw, 32px);
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 26px);
  padding: 6px 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: rgba(245, 241, 234, 0.96);
  transition: color 0.35s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: rgba(245, 241, 234, 1);
}

.contact-social-link:focus {
  outline: none;
}

.contact-social-link:focus-visible {
  outline: 1px solid rgba(245, 241, 234, 0.35);
  outline-offset: 10px;
}

.contact-social-link-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(245, 241, 234, 0.96);
  transform-origin: center;
  animation: socialBreathe 2.6s ease-in-out infinite;
  transition: color 0.35s ease, transform 0.35s ease;
  will-change: transform, opacity;
}

.contact-social-link--whatsapp .contact-social-link-icon {
  animation-delay: -1.3s;
}

.contact-social-link-icon svg {
  display: block;
  width: clamp(42px, 5.2vw, 56px);
  height: clamp(42px, 5.2vw, 56px);
  stroke-width: 1.4;
}

.contact-social-link:hover .contact-social-link-icon,
.contact-social-link:focus-visible .contact-social-link-icon {
  color: rgba(245, 241, 234, 1);
  animation-duration: 1.6s;
}

@keyframes socialBreathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.contact-social-link-body {
  display: inline-flex;
  align-items: center;
}

.contact-social-link-handle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: rgba(245, 241, 234, 0.96);
}

.contact-social-link--whatsapp .contact-social-link-handle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  letter-spacing: 0.015em;
  font-weight: 400;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1;
}

@media (max-width: 480px) {
  .contact-social-link-icon svg {
    width: 38px;
    height: 38px;
  }

  .contact-social-link-handle {
    font-size: 1.25rem;
  }

  .contact-social-link--whatsapp .contact-social-link-handle {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-social-link-icon {
    animation: none;
    opacity: 1;
  }
}

.contact-closing {
  margin-top: clamp(48px, 7vw, 96px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  max-width: 52ch;
}

.contact-closing-text {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: rgba(245, 241, 234, 0.62);
}

.contact-closing-signature {
  margin: clamp(14px, 2vw, 20px) 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0.01em;
  color: rgba(245, 241, 234, 0.82);
}

@media (max-width: 480px) {
  .contact-closing {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .insight-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr);
    gap: clamp(14px, 3vw, 28px);
    align-items: center;
  }

  .insight-video-wrap {
    max-height: none;
    max-width: 100%;
    margin-left: 0;
  }

  .insight-lead {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 22px 20px;
  }

  .menu-overlay {
    padding: 22px 20px 28px;
  }

  .menu-link {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    line-height: 1;
  }

  .hero-content {
    padding: clamp(20px, 5vw, 40px);
  }

  .hero-side-text {
    top: 92px;
    left: 20px;
    font-size: 13px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    max-width: min(14ch, 92vw);
    line-height: 0.9;
  }

  html[lang="fr"] .hero-title {
    max-width: min(24ch, 92vw);
  }

  .hero-title .l2 {
    padding-left: clamp(1.5rem, 12vw, 5rem);
  }

  .insight-section {
    padding: clamp(28px, 5vw, 44px) 16px;
    min-height: auto;
  }

  .insight-lead {
    font-size: clamp(0.95rem, 3.8vw, 1.45rem);
    line-height: 1.2;
  }

  .insight-note {
    font-size: 11px;
    line-height: 1.5;
  }

  .insight-video-wrap {
    max-width: 100%;
    max-height: none;
  }

  .contact-mail {
    font-size: clamp(1.65rem, 7vw, 2.8rem);
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grain {
    animation: none;
  }

  .hero-video video {
    transform: scale(1.02);
  }

  .hero.hero-video-section .hero-video video {
    transform: translate(-50%, -50%) scale(1.04);
  }

  .process-editorial-media img {
    transform: scale(1);
    filter: brightness(1.04) contrast(1.04) saturate(0.88);
  }

  .process-transition-line--scroll-blur {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .insight-word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .insight-last-sentence.insight-last-sentence--slump {
    animation: none !important;
    transform: none !important;
  }

  .insight-fall-line.insight-fall-line--slump {
    animation: none !important;
    transform: none !important;
  }

  .insight-video {
    filter: brightness(0.9) contrast(0.94) saturate(0.88) blur(0.35px);
    transform: scale(1);
    opacity: 1;
  }

  .logo::after {
    transition: none !important;
  }

  .menu-toggle::after,
  .menu-link::after {
    transition: none !important;
  }

  .menu-link span {
    transition: none !important;
  }

  .menu-text span,
  .logo-text span {
    transition: none !important;
  }

  .menu-overlay,
  .menu-overlay-top,
  .menu-link,
  .menu-overlay-meta {
    transition: none !important;
  }

  .insight-fall-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .restore-progress-fill {
    transition: none !important;
  }

  .restore-message {
    transition: none !important;
  }

  .restore-progress-break {
    transition: none !important;
  }
}

/* Insight — alt paragraf cümle cümle düşüş */
.insight-fall-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, -1.2em, 0);
  transition:
    opacity 1.5s cubic-bezier(0.18, 0.82, 0.32, 1),
    transform 1.75s cubic-bezier(0.2, 0.88, 0.34, 1);
  transition-delay: calc(
    var(--insight-after-lead, 4000ms) + var(--line, 0) * 1.25s
  );
  will-change: opacity, transform;
}

.insight-fall-line + .insight-fall-line {
  margin-top: 0.35em;
}

.insight-copy.is-revealed .insight-fall-line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Son cümle: düşüş bittikten sonra eski “slump” — hafif aşağı */
.insight-copy.is-revealed .insight-fall-line.insight-fall-line--slump {
  transition: none;
  animation: insight-last-slump 1.12s cubic-bezier(0.42, 0, 0.2, 1) forwards;
}

.insight-video-wrap--interactive {
  position: relative;
  overflow: visible;
}

/* Insight — restoration metaphor UI (progress, message, bar break) */
.restore-ui {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.restore-cta {
  position: absolute;
  left: 50%;
  top: -12%;
  transform: translateX(-50%);
  pointer-events: auto;
  z-index: 6;
  border: 0;
  background: transparent;
  color: rgba(245, 241, 234, 0.92);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0 2px 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  animation: restoreCtaBreath 3s ease-in-out infinite;
}

.restore-cta,
.restore-cta * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.restore-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: rgba(245, 241, 234, 0.45);
  opacity: 0.75;
}

@keyframes restoreCtaBreath {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

.restore-ui.is-locked .restore-cta {
  opacity: 0.28;
  pointer-events: none;
  animation: none;
}

.restore-progress {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 148px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: visible;
  border-radius: 1px;
}

.restore-progress-fill {
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1px;
  transition: width 0.18s linear, opacity 0.35s ease;
}

.restore-progress.is-jittering .restore-progress-fill {
  transition: width 0.08s linear;
}

.restore-progress-shatter {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.restore-progress-shatter span {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  filter: blur(0.2px);
  border-radius: 1px;
  opacity: 0;
}

.restore-progress-shatter span:nth-child(1) {
  left: 0%;
  width: 14%;
}

.restore-progress-shatter span:nth-child(2) {
  left: 17%;
  width: 11%;
}

.restore-progress-shatter span:nth-child(3) {
  left: 31%;
  width: 16%;
}

.restore-progress-shatter span:nth-child(4) {
  left: 52%;
  width: 12%;
}

.restore-progress-shatter span:nth-child(5) {
  left: 68%;
  width: 10%;
}

.restore-progress-shatter span:nth-child(6) {
  left: 81%;
  width: 15%;
}

.restore-progress.is-broken .restore-progress-fill {
  opacity: 0;
}

.restore-progress.is-broken .restore-progress-shatter {
  opacity: 1;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(1) {
  animation: shatterLeft 0.65s ease forwards;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(2) {
  animation: shatterLeft 0.7s ease forwards 0.03s;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(3) {
  animation: shatterLeft 0.75s ease forwards 0.05s;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(4) {
  animation: shatterRight 0.68s ease forwards 0.02s;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(5) {
  animation: shatterRight 0.72s ease forwards 0.04s;
}

.restore-progress.is-broken .restore-progress-shatter span:nth-child(6) {
  animation: shatterRight 0.78s ease forwards 0.06s;
}

@keyframes shatterLeft {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(-8px) rotate(-4deg);
  }
}

@keyframes shatterRight {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(8px) rotate(4deg);
  }
}

.restore-percent {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  color: rgba(245, 241, 234, 0.88);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.restore-message {
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(88%, 340px);
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.restore-message-main {
  margin: 0;
  color: rgba(245, 241, 234, 0.94);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.restore-message-sub {
  margin: clamp(72px, 14vh, 140px) 0 0;
  color: rgba(245, 241, 234, 0.52);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.restore-message.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.restore-retry {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: rgba(245, 241, 234, 0.52);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease 0.15s;
}

.restore-retry.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.restore-retry:hover {
  color: rgba(245, 241, 234, 0.72);
}

@media (hover: hover) {
  .restore-retry:focus-visible {
    outline: 1px solid rgba(245, 241, 234, 0.35);
    outline-offset: 3px;
  }
}

.insight-hair-catchment {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 0;
  overflow: hidden;
}

.hair-drop {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 64px;
  pointer-events: none;
  z-index: 4;
  will-change: transform, opacity;
  opacity: 0;
}

.hair-drop svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hair-drop path {
  fill: none;
  stroke: rgba(24, 17, 12, 0.95);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(0.15px);
}

.hair-drop.is-falling {
  animation: hairDropFall 1800ms cubic-bezier(0.2, 0.78, 0.22, 1) forwards;
}

@keyframes hairDropFall {
  0% {
    opacity: 0;
    transform:
      translate3d(var(--start-x), var(--start-y), 0)
      rotate(var(--start-r))
      scale(0.92);
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--end-x), var(--end-y), 0)
      rotate(var(--end-r))
      scale(1.02);
  }
}

@media (hover: hover) {
  .restore-cta:hover {
    animation: none;
    opacity: 1;
  }
}

/* IMPLANTATION — precision placement interaction */
.implant-figure {
  position: relative;
  transform: none !important;
  overflow: hidden;
}

.process-scene-figure__img--implantation {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  max-height: min(560px, 70vh);
  object-fit: cover;
  object-position: center center;
}

.implant-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.implant-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
  outline: 1px solid rgba(0, 0, 0, 0.55);
  outline-offset: 0;
  box-shadow:
    0 0 0 0 rgba(255, 255, 255, 0),
    0 2px 8px rgba(0, 0, 0, 0.55);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    opacity 0.5s ease;
  animation: implantPulse 2.4s ease-in-out infinite;
}

.implant-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.implant-dot:hover {
  width: 26px;
  height: 26px;
  border-color: #fff;
}

.implant-dot:focus-visible {
  outline: 2px solid rgba(245, 241, 234, 0.9);
  outline-offset: 3px;
}

.implant-dot.is-placed {
  width: 14px;
  height: 14px;
  background: #fff;
  border-color: #fff;
  box-shadow:
    0 0 16px 3px rgba(255, 255, 255, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.5);
  outline-color: transparent;
  animation: none;
  cursor: default;
  pointer-events: none;
}

.implant-dot.is-placed::before {
  opacity: 0;
}

@keyframes implantPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.5),
      0 2px 8px rgba(0, 0, 0, 0.55);
  }

  50% {
    box-shadow:
      0 0 0 8px rgba(255, 255, 255, 0),
      0 2px 8px rgba(0, 0, 0, 0.55);
  }
}

.implant-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.implant-figure.is-complete .implant-hint {
  opacity: 0;
}

.implant-figure.is-complete .implant-dots {
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
  pointer-events: none;
}

/* Implantation — prompt + locked content */
.process-scene--implantation .process-scene-main {
  position: relative;
}

.implant-prompt {
  position: absolute;
  top: 0;
  left: 12px;
  right: 0;
  z-index: 2;
  max-width: 36ch;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.implant-prompt-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(245, 241, 234, 0.95);
  max-width: 28ch;
}

.implant-prompt-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245, 241, 234, 0.5);
}

.implant-prompt-sub::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.9);
  animation: implantPromptPulse 2.4s ease-in-out infinite;
}

@keyframes implantPromptPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.implant-prompt.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  .implant-prompt-sub::before {
    animation: none;
  }
}

.process-scene--implantation .implant-content {
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 0.9s cubic-bezier(0.26, 1, 0.4, 1),
    filter 0.9s cubic-bezier(0.26, 1, 0.4, 1);
}

.process-scene--implantation .implant-content.is-locked {
  opacity: 0.16;
  filter: blur(10px);
  transition-delay: 0.15s;
}

@media (max-width: 900px) {
  .process-scene-figure__img--implantation {
    max-height: none;
  }

  .implant-prompt {
    left: 4px;
    right: 4px;
  }

  .implant-prompt-text {
    font-size: clamp(0.95rem, 4vw, 1.6rem);
    max-width: 100%;
  }

  .implant-prompt-sub {
    margin-top: 14px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 768px) {
  .implant-dot {
    width: 18px;
    height: 18px;
  }

  .implant-dot:hover {
    width: 22px;
    height: 22px;
  }

  .implant-dot.is-placed {
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .implant-dot {
    animation: none !important;
  }

  .process-scene--implantation .implant-content.is-locked {
    opacity: 1 !important;
    filter: none !important;
  }

  .implant-prompt {
    display: none !important;
  }

  .implant-dots,
  .implant-hint {
    display: none !important;
  }
}

/* Implantation tag — hidden until placement complete */
.implant-figure .process-float-tag {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.7s cubic-bezier(0.26, 1, 0.4, 1) 0.3s,
    transform 0.7s cubic-bezier(0.26, 1, 0.4, 1) 0.3s;
}

.implant-figure.is-complete .process-float-tag {
  opacity: 0.85;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .implant-figure .process-float-tag {
    opacity: 0.85 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hero — scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(40px, 6vh, 80px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  opacity: 0;
  animation: heroScrollFadeIn 1.2s cubic-bezier(0.26, 1, 0.4, 1) 2.2s forwards;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(245, 241, 234, 0.18);
  overflow: hidden;
}

.hero-scroll-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(245, 241, 234, 0.85) 50%,
    transparent 100%
  );
  animation: heroScrollTravel 2.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes heroScrollFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScrollTravel {
  0% { top: -40%; }
  100% { top: 100%; }
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    right: 18px;
    bottom: 32px;
    gap: 10px;
  }
  .hero-scroll-line {
    height: 44px;
  }
  .hero-scroll-label {
    font-size: 8px;
    letter-spacing: 0.28em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator {
    animation: none;
    opacity: 1;
  }
  .hero-scroll-line-fill {
    animation: none;
    top: 30%;
    height: 30%;
  }
}

/* ABOUT v2 — editorial, layered */
.about-editorial-v2 {
  position: relative;
  padding: clamp(100px, 12vw, 160px) clamp(22px, 4vw, 54px)
    clamp(80px, 10vw, 120px);
  background: #000;
  overflow: hidden;
}

/* Two-column rigid grid — text NEVER enters portrait column */
.about-v2-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-v2-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

/* Title — three lines, stepped indentation, tighter scale */
.about-v2-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.95);
  text-transform: uppercase;
}

.about-v2-title .about-v2-line {
  display: block;
  white-space: nowrap;
}

.about-v2-title .l2 {
  padding-left: 1.6em;
  color: rgba(245, 241, 234, 0.82);
}

.about-v2-title .l3 {
  padding-left: 3.2em;
  color: rgba(245, 241, 234, 0.62);
  font-style: italic;
}

/* Copy — narrow column, separated from title, body-typeface */
.about-v2-copy {
  max-width: 46ch;
  padding-left: clamp(0px, 3vw, 48px);
  border-left: 1px solid rgba(245, 241, 234, 0.08);
}

.about-v2-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: rgba(245, 241, 234, 0.62);
}

.about-v2-signature {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245, 241, 234, 0.78);
}

/* Portrait — caption overlaid inside image (process-float-tag style) */
.about-v2-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.about-v2-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  background: var(--bg-soft);
  filter: brightness(0.96) contrast(1.05);
}

.about-v2-portrait-caption {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 20px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.28em;
  text-align: right;
  font-family: var(--font-body);
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
  opacity: 0.88;
  pointer-events: none;
}

.about-v2-portrait-caption span:first-child {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
  opacity: 0.72;
  color: #fff;
}

.about-v2-portrait-caption span:last-child {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

/* Mobile — stack */
@media (max-width: 900px) {
  .about-v2-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: clamp(14px, 3vw, 32px);
    align-items: start;
  }

  .about-v2-main {
    gap: clamp(18px, 4vw, 32px);
  }

  .about-v2-portrait {
    max-width: 100%;
  }

  .about-v2-title {
    font-size: clamp(1.1rem, 4.6vw, 2.2rem);
  }

  .about-v2-title .l2 {
    padding-left: 0.6em;
  }

  .about-v2-title .l3 {
    padding-left: 1.2em;
  }

  .about-v2-text {
    font-size: 11.5px;
    line-height: 1.6;
  }

  .about-v2-copy {
    padding-left: clamp(0px, 2vw, 24px);
    border-left: 1px solid rgba(245, 241, 234, 0.08);
    padding-top: 0;
  }

  .about-editorial-v2 {
    padding: clamp(60px, 10vw, 120px) 16px clamp(48px, 8vw, 100px);
  }

  /* Caption stays INSIDE the portrait, anchored to the bottom-right corner
     just like on desktop. We only shrink the type and tighten the corner so
     it never climbs high enough to touch the face/mouth. */
  .about-v2-portrait-caption {
    right: 8px;
    bottom: 8px;
    gap: 0.18em;
    max-width: 70%;
  }

  .about-v2-portrait-caption span:first-child {
    font-size: 7.5px;
    letter-spacing: 0.14em;
  }

  .about-v2-portrait-caption span:last-child {
    font-size: 9.5px;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
}

/* Phones — even tighter so two-word specialty stays low in the corner */
@media (max-width: 520px) {
  .about-v2-portrait-caption {
    right: 6px;
    bottom: 6px;
    max-width: 78%;
  }

  .about-v2-portrait-caption span:first-child {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }

  .about-v2-portrait-caption span:last-child {
    font-size: 8.5px;
    line-height: 1.1;
  }
}

.about-v2-top {
  max-width: 1280px;
  margin: 0 auto clamp(60px, 9vw, 110px);
}

.about-editorial-v2 .process-editorial-step-name {
  font-size: 16px;
}

/* Prevent text selection on scroll-blur transition lines */
.process-transition-line--scroll-blur {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.process-transition-line--scroll-blur::selection {
  background: transparent;
  color: transparent;
}

/* GLOBAL — site-wide no-select except where explicitly allowed */
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

input,
textarea,
.is-copyable {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
}

::selection {
  background: rgba(245, 241, 234, 0.22);
  color: rgba(245, 241, 234, 1);
}

.contact-mail-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: wrap;
}

.contact-mail-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.35);
  cursor: pointer;
  transition:
    color 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
  user-select: none;
  opacity: 0;
  transform: translateX(-6px);
}

.contact-mail-row:hover .contact-mail-copy,
.contact-mail-copy:focus-visible {
  opacity: 1;
  transform: translateX(0);
  color: rgba(245, 241, 234, 0.75);
}

.contact-mail-copy:hover {
  color: rgba(245, 241, 234, 1);
}

.contact-mail-copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-mail-copy:hover .contact-mail-copy-icon {
  transform: translate(1px, -1px);
}

.contact-mail-copy-label {
  display: inline-block;
  transition: letter-spacing 0.3s ease;
}

.contact-mail-copy.is-copied {
  opacity: 1;
  transform: translateX(0);
  color: rgba(245, 241, 234, 1);
  pointer-events: none;
}

.contact-mail-copy.is-copied .copy-path {
  display: none;
}

.contact-mail-copy.is-copied .check-path {
  display: block !important;
}

.contact-mail-copy.is-copied .contact-mail-copy-icon {
  transform: scale(1.15);
}

@media (hover: none) {
  .contact-mail-copy {
    opacity: 1;
    transform: translateX(0);
    color: rgba(245, 241, 234, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-mail-copy {
    transition: none;
  }
  .contact-mail-copy-icon {
    transition: none;
  }
}

/* RESULTS — editorial before/after cases */
.process-results {
  position: relative;
  padding: clamp(80px, 10vw, 120px) clamp(22px, 4vw, 54px)
    clamp(100px, 12vw, 160px);
  background: #000;
}

.process-results .process-editorial-top {
  max-width: 1280px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.result-case {
  max-width: 1280px;
  margin: 0 auto clamp(100px, 14vw, 180px);
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.result-case:last-of-type {
  margin-bottom: 0;
}

.result-case-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  padding-top: 4px;
  position: sticky;
  top: 80px;
}

.result-case-label,
.result-case-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(245, 241, 234, 0.92);
}

.result-case-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.45);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.result-case-date > span:last-of-type {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.42);
}

.result-case-spec {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em 0.5em;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(245, 241, 234, 0.45);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.result-case-spec > span:first-of-type {
  text-transform: uppercase;
}

.result-case-spec > span:last-of-type {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 241, 234, 0.42);
}

.result-case-spec-sep {
  text-transform: none;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(245, 241, 234, 0.32);
}

.result-case-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 234, 0.78);
}

.result-case-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-case-detail-main {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 234, 0.78);
}

.result-case-detail-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 234, 0.42);
}

.result-case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 22px);
  min-width: 0;
}

.result-case-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}

.result-case-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: brightness(0.96) contrast(1.02);
  transition: filter 0.6s ease;
}

.result-case-figure:hover img {
  filter: brightness(1) contrast(1.04);
}

.result-case-stage {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  left: clamp(14px, 2vw, 20px);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: difference;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 900px) {
  .result-case {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: clamp(60px, 9vw, 110px);
    padding: 0 16px;
  }
  .result-case-meta {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
  }
  .result-case-date,
  .result-case-spec {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .result-case-detail,
  .result-case-note {
    width: 100%;
  }
  .result-case-pair {
    gap: 8px;
  }
}

.process-results-title {
  max-width: 1280px;
  margin: 0 auto clamp(80px, 12vw, 140px);
  font-family: var(--font-display);
  font-weight: 300;
  color: rgba(245, 241, 234, 0.92);
}

.process-results-line {
  display: block;
  letter-spacing: -0.02em;
}

.process-results-line.l1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.028em;
  max-width: 100%;
  color: rgba(245, 241, 234, 0.95);
  margin-bottom: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  font-weight: 300;
}

.process-results-line.l2 {
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  line-height: 1.32;
  font-style: italic;
  max-width: 42ch;
  margin-left: auto;
  color: rgba(245, 241, 234, 0.68);
  text-align: right;
  padding-left: clamp(0px, 20vw, 280px);
}

@media (max-width: 900px) {
  .process-results {
    padding: clamp(48px, 8vw, 80px) 16px clamp(60px, 10vw, 120px);
  }

  .process-results-title {
    margin-bottom: clamp(40px, 7vw, 80px);
  }

  .process-results-line.l1 {
    font-size: clamp(1.4rem, 6vw, 2.4rem);
    margin-bottom: clamp(20px, 4vw, 40px);
  }

  .process-results-line.l2 {
    text-align: left;
    padding-left: 0;
    font-size: clamp(0.8rem, 3.2vw, 1.2rem);
  }

  .rl-part-2 {
    padding-left: 1.2em;
  }

  .result-case-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
}

.result-case-title em {
  font-style: italic;
  color: rgba(245, 241, 234, 0.68);
  font-weight: 300;
  margin-left: 4px;
  letter-spacing: 0.02em;
}

.rl-part {
  display: block;
  white-space: nowrap;
}

.rl-part-1 {
  padding-left: 0;
}

.rl-part-2 {
  padding-left: 5.25em;
  color: rgba(245, 241, 234, 0.82);
}

.rl-part-3 {
  padding-left: 0;
}

#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.logo {
  text-decoration: none;
}

/* Turkish: capital İ and Ğ diacritics sit above cap height in Cormorant Garamond.
   At the large, light-weight results title, this makes them visually overhang.
   Scoped tweak: activate case-aware / localized forms + subtle size compensation. */
html[lang="tr"] .process-results-line.l1 {
  font-feature-settings: "case" on, "locl" on;
  font-size: clamp(2.2rem, 4.8vw, 4.45rem);
  letter-spacing: -0.032em;
}

/* Language switcher inside menu overlay meta */
.menu-overlay-lang {
  display: flex;
  gap: 0.7em;
  align-items: center;
  margin-top: 0.35rem;
}

.menu-overlay-lang a {
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.menu-overlay-lang a:hover,
.menu-overlay-lang a:focus-visible {
  opacity: 1;
}

.menu-overlay-lang a[aria-current="page"] {
  opacity: 1;
  color: var(--nav-matte);
}

.menu-overlay-lang-sep {
  opacity: 0.3;
}

/* Nav actions — right cluster: persistent language switcher + MENU button */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 24px);
}

.nav-lang {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--nav-matte);
  line-height: 1;
}

.nav-lang a {
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
  padding: 0.2em 0;
  transition: opacity 0.25s ease;
}

.nav-lang a:hover,
.nav-lang a:focus-visible {
  opacity: 1;
}

.nav-lang a[aria-current="page"] {
  opacity: 1;
}

.nav-lang-sep {
  opacity: 0.3;
}

@media (max-width: 640px) {
  .nav-actions {
    gap: 14px;
  }

  .nav-lang {
    font-size: 9px;
    letter-spacing: 0.14em;
    gap: 0.4em;
  }
}
