/* ============================================
   A_LIZ HAIRDRESSER — Rose Gold & Soft Minimal
   ============================================ */

:root {
  --nav-h: 64px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ: cubic-bezier(0.65, 0, 0.35, 1);

  /* Color palette */
  --bg: #FAFAFA;
  --bg-2: #F7E7E6;
  --bg-warm: #FBF5F4;
  --bg-3: #F5EFED;
  --surface: #FFFFFF;
  --fg-primary: #FFFFFF;
  --ink: #2C2C2C;
  --ink-soft: #5C5C5C;
  --ink-mute: #8C8C8C;
  --rose: #B76E79;
  --rose-light: #D4A5A5;
  --rose-soft: #E8C7C5;
  --rose-dark: #8C4F5A;
  --rose-gradient: linear-gradient(135deg, #B76E79 0%, #D4A5A5 100%);
  --rose-gradient-soft: linear-gradient(135deg, rgba(183, 110, 121, 0.2), rgba(212, 165, 165, 0.15));
  --line: #E8D7D5;
  --shadow-sm: 0 2px 8px rgba(140, 79, 90, 0.1);
  --shadow-md: 0 6px 20px rgba(140, 79, 90, 0.15);
  --shadow-lg: 0 16px 48px rgba(140, 79, 90, 0.25);
  --serif: "Inter", -apple-system, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--rose-soft);
  border-radius: 6px;
  transition: background 240ms;
}
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 240ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: rgba(183, 110, 121, 0.18);
  color: white;
  border: 1px solid rgba(183, 110, 121, 0.45);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 24px rgba(140, 79, 90, 0.18), inset 0 1px 0 rgba(255,255,255,0.14);
  text-shadow: none;
  letter-spacing: 0.7px;
}
.btn-primary:hover {
  background: rgba(183, 110, 121, 0.32);
  border-color: rgba(183, 110, 121, 0.7);
  box-shadow: 0 12px 32px rgba(140, 79, 90, 0.32), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(183, 110, 121, 0.32);
}
.btn-primary:active { transform: translateY(0); }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn-link:hover {
  border-bottom-color: var(--rose);
  color: var(--rose);
}
.btn-link .arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 240ms var(--ease);
  margin-left: 4px;
}
.btn-link:hover .arrow { transform: translateX(3px); }

.brush-under {
  position: relative;
  display: inline;
  background: linear-gradient(90deg,
    var(--rose-light) 0%, var(--rose-light) 100%) bottom / 100% 3px no-repeat;
  background-size: 0% 3px;
  transition: background-size 1400ms var(--ease) 200ms;
}
.brush-under.in::after { background-size: 100% 100%; }

/* ====== SPLIT-TEXT HEADING ====== */
.split-heading {
  display: inline;
}
.sh-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.sh-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 900ms var(--ease);
}
.split-heading.in .sh-inner { transform: translateY(0); }

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: #0A0604;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12, 8, 6, 0.42) 0%,
    rgba(20, 14, 12, 0.38) 40%,
    rgba(28, 18, 16, 0.48) 100%),
    #0A0604;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 40px 60px;
  z-index: 2;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  z-index: 3;
  max-width: 640px;
  background: linear-gradient(180deg,
    rgba(8, 4, 2, 0.68) 0%,
    rgba(10, 5, 3, 0.64) 50%,
    rgba(8, 4, 2, 0.68) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 44px 48px;
  border-radius: 14px;
  border: 1px solid rgba(183, 110, 121, 0.22);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.52);
}
.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0;
  text-wrap: balance;
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-rise 900ms var(--ease) forwards;
}
.hero-title .word:nth-child(2) span { animation-delay: 120ms; }
.hero-title .word:nth-child(3) span { animation-delay: 240ms; }
.hero-title .word:nth-child(4) span { animation-delay: 360ms; }
.hero-title .word:nth-child(5) span { animation-delay: 480ms; }
@keyframes hero-rise { to { transform: translateY(0); } }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 28px);
  padding-top: 20px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 8px;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.hero-meta-item .k {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}
.hero-meta-item .v {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.005em;
  white-space: normal;
  text-wrap: balance;
}

@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-meta-item:nth-child(3) { grid-column: 1 / -1; }
}

.hero-right {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0A0604;
}
.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(140, 79, 90, 0.45),
    0 12px 24px -10px rgba(140, 79, 90, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  background: #1a1010;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(40, 14, 22, 0.65) 100%),
    radial-gradient(ellipse at 50% 30%, transparent 40%, rgba(40,14,22,0.18) 100%);
  z-index: 5;
  pointer-events: none;
}
/* Subtle film grain */
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Corner accents — rose gold L-shaped frame marks */
.hero-frame-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 8;
  pointer-events: none;
  transition: opacity 600ms ease;
}
.hero-frame-corner::before, .hero-frame-corner::after {
  content: "";
  position: absolute;
  background: var(--rose-light);
  opacity: 0.6;
}
.hero-frame-corner::before { width: 100%; height: 1px; top: 0; }
.hero-frame-corner::after { width: 1px; height: 100%; left: 0; top: 0; }
.hero-frame-corner.tl { top: 14px; left: 14px; }
.hero-frame-corner.tr { top: 14px; right: 14px; transform: scaleX(-1); }
.hero-frame-corner.bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.hero-frame-corner.br { bottom: 14px; right: 14px; transform: scale(-1, -1); }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.14) translateX(4%);
  /* backface-visibility kaldırıldı — resmi görünmez yapabilir */
  will-change: transform, opacity;
  z-index: 1;
}
.hero-slide.active {
  z-index: 3;
  animation: hero-slide-in 1800ms cubic-bezier(0.12, 0.88, 0.28, 1) forwards;
}
.hero-slide.exiting {
  opacity: 1;
  z-index: 2;
  transform: scale(1.06) translateX(0);
  animation: hero-slide-out 1100ms cubic-bezier(0.42, 0, 0.82, 0.96) forwards;
}
@keyframes hero-slide-in {
  0% {
    opacity: 0;
    filter: blur(8px) brightness(0.92);
    transform: scale(1.18) translateX(3%);
  }
  40% {
    opacity: 0.88;
    filter: blur(3px) brightness(0.96);
    transform: scale(1.10) translateX(1.5%);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1.048) translateX(-1.5%);
  }
}
@keyframes hero-slide-out {
  0% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1.048) translateX(0);
  }
  35% {
    opacity: 0.6;
    filter: blur(2px) brightness(0.94);
    transform: scale(1.08) translateX(-3%);
  }
  100% {
    opacity: 0;
    filter: blur(12px) brightness(0.88);
    transform: scale(1.16) translateX(-6%);
  }
}

/* Caption that slides in with the image */
.hero-slide-caption {
  position: absolute;
  bottom: 60px;
  left: 28px;
  right: 28px;
  z-index: 7;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.hero-slide-caption .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 800ms var(--ease) 400ms;
}
.hero-slide-caption .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 800ms var(--ease) 600ms;
}
.hero-slide-caption.in .label,
.hero-slide-caption.in .title {
  opacity: 1;
  transform: translateY(0);
}

/* Slide counter + progress (replaces dots) */
.hero-slide-meta {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-slide-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: white;
  letter-spacing: 0.06em;
}
.hero-slide-counter .now {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0;
}
.hero-slide-counter .sep { opacity: 0.4; margin: 0 4px; }
.hero-slide-counter .total {
  font-family: var(--sans);
  font-size: 11px;
  opacity: 0.7;
  font-style: normal;
}

/* Bottom progress bars (one per slide) */
.hero-slide-progress {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 24px;
  z-index: 7;
  display: flex;
  gap: 6px;
}
.hero-slide-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.18);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 200ms;
}
.hero-slide-bar:hover { background: rgba(255,255,255,0.4); }
.hero-slide-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--rose-light), white);
  transform-origin: left;
  transform: scaleX(0);
}
.hero-slide-bar.active::after {
  animation: bar-progress 5s linear forwards;
}
.hero-slide-bar.done::after { transform: scaleX(1); background: rgba(255,255,255,0.5); }
@keyframes bar-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-slide-dots { display: none; } /* old dots hidden */

.hero-floating-stat {
  position: absolute;
  top: 12%;
  right: -32px;
  background: white;
  padding: 14px 20px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  opacity: 0;
  transform: translateY(-12px);
  animation: hero-frame-in 900ms var(--ease) 1100ms forwards;
}
.hero-floating-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: #1a0f00;
  font-weight: 800;
}
.hero-floating-stat .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .hero-slide-caption { bottom: 50px; left: 18px; right: 18px; }
  .hero-slide-caption .title { font-size: 22px; }
  .hero-slide-meta { top: 14px; right: 14px; }
  .hero-slide-progress { left: 14px; right: 14px; bottom: 14px; }
}
@keyframes hero-frame-in {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes hero-float {
  0%,  100% { transform: translateY(0px)   rotateZ(0deg); }
  30%        { transform: translateY(-12px) rotateZ(0.3deg); }
  65%        { transform: translateY(-6px)  rotateZ(-0.18deg); }
}
.hero-ambient-glow {
  position: absolute;
  inset: -22% -16%;
  background: radial-gradient(ellipse at 50% 62%,
    rgba(183, 110, 121, 0.55) 0%,
    rgba(183, 110, 121, 0.22) 36%,
    transparent 62%);
  z-index: -1;
  pointer-events: none;
  filter: blur(38px);
  animation: glow-breathe 5.5s ease-in-out 800ms infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.94); }
  50%       { opacity: 1;    transform: scale(1.07); }
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: white;
  padding: 22px 28px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  animation: hero-frame-in 800ms var(--ease) 900ms forwards;
}
.hero-badge .v {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: #1a0f00;
  font-weight: 800;
  line-height: 1;
}
.hero-badge .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

/* Hero marquee — brand logos scrolling */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}
.marquee-item.brands {
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  padding-right: clamp(40px, 5vw, 72px);
}
.m-sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}
.hero-marquee .brand {
  transition: opacity 280ms, transform 280ms;
  opacity: 0.7;
}
.hero-marquee .brand:hover { opacity: 1; transform: translateY(-2px); }
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 960px) {
  .hero-inner { flex-direction: column; padding: 80px 20px 40px; }
  .hero-left { max-width: 92%; }
  .hero-title { font-size: clamp(28px, 5vw, 52px); }
}
@media (max-width: 640px) {
  .hero-inner { padding: 90px 14px 36px; }
  .hero-left { gap: 16px; padding: 32px 24px; max-width: 100%; }
  .hero-title { font-size: clamp(24px, 6vw, 38px); line-height: 1.15; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-meta-item:nth-child(3) { grid-column: 1 / -1; }
}

.lede {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
  max-width: 64ch;
  text-wrap: pretty;
  letter-spacing: 0.01em;
  margin: 0;
}
.hero-left .lede {
  color: rgba(255, 255, 255, 0.92);
}

.italic-serif { font-family: "Inter", sans-serif; font-style: italic; font-weight: 300; }

/* ====== LAYOUT ====== */
.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section {
  padding: clamp(72px, 11vh, 160px) 0;
  position: relative;
}

/* ====== NAV LANGUAGE SWITCHER ====== */
.lang-switch {
  position: relative;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.lang-trigger:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(183, 110, 121, 0.4);
}
.lang-trigger .chev {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform 220ms;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(18, 12, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(183, 110, 121, 0.18);
  border-radius: 10px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.lang-menu.open { display: flex; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background 180ms;
  width: 100%;
}
.lang-item:hover { background: rgba(255, 255, 255, 0.08); }
.lang-item.active { background: rgba(183, 110, 121, 0.2); }
.lang-item .lang-name {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  flex: 1;
  text-align: left;
}
.lang-item .code {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Nav links */
.nav-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 4px;
  position: relative;
  transition: color 240ms;
}
.nav-link:hover, .nav-link.active { color: var(--rose-light); }
.nav-link::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--rose-light); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 320ms var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 960px) { .nav-toggle { display: flex; } }
.nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 300ms; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-menu .lang-switch { display: none; }
@media (max-width: 960px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(18, 12, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.12);
    flex-direction: column;
    padding: 8px 0 16px;
    z-index: 79;
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { padding: 13px clamp(20px, 5vw, 80px); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu .lang-switch { display: flex; margin: 8px clamp(20px, 5vw, 80px) 0; }
}

/* Nav tel icon */
.nav-tel {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  transition: all 220ms;
  cursor: pointer; text-decoration: none;
}
.nav-tel:hover { background: var(--rose); border-color: var(--rose); color: white; }
.nav-tel svg { width: 15px; height: 15px; }

/* Instagram follow button icon */
.ig-cta-row .btn svg { width: 18px; height: 18px; }
/* All btn icons normalized */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn img { width: 18px; height: 18px; flex-shrink: 0; }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 16px 0;
  transition: all 320ms var(--ease-smooth);
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.88) 0%, rgba(28, 18, 16, 0.72) 100%);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid rgba(183, 110, 121, 0.14);
}
.nav.scrolled {
  background: rgba(18, 12, 10, 0.94);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border-bottom: 1px solid rgba(183, 110, 121, 0.18);
  padding: 12px 0;
  box-shadow: 0 12px 48px -8px rgba(140, 79, 90, 0.24);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
}
.nav-brand {
  display: flex; align-items: center;
  font-size: 15px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--fg-primary);
  text-decoration: none;
  gap: 8px;
  transition: transform 220ms var(--ease);
}
.nav-brand:hover {
  transform: scale(1.04);
}
.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo-img {
  height: 76px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-menu {
  display: flex; gap: 40px; align-items: center;
}
@media (max-width: 960px) {
  .nav-menu { display: none; }
}
.nav-item {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: all 240ms var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.nav-item:hover {
  color: var(--accent);
}
.nav-item::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2.2px; background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 340ms var(--ease);
}
.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-locale-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 240ms;
}
.nav-locale-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-flag {
  width: 20px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}
.nav-lang-code {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.88);
}

.nav-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 960px) {
  .nav-hamburger { display: flex; }
}
.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 300ms;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-menu-mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(18, 12, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.14);
  padding: 20px 0;
  display: none;
  flex-direction: column;
}
.nav-menu-mobile.open { display: flex; }
.nav-menu-mobile .nav-item {
  padding: 12px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}
.nav-menu-mobile .nav-item::after { display: none; }

/* ====== SECTION HEADERS ====== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Display headings — Inter semibold */
.display {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.display-lg {
  font-size: clamp(28px, 4vw, 56px);
}

/* ====== TRUST STRIP ====== */
.trust-strip {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vh, 72px) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  background: var(--surface);
  text-align: center;
  transition: background 280ms var(--ease), transform 280ms var(--ease);
  position: relative;
}
.trust-item:hover {
  background: #FFFFFF;
  z-index: 1;
  box-shadow: 0 8px 32px -8px rgba(140, 79, 90, 0.18);
}
.trust-item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--rose-gradient);
  transition: left 320ms var(--ease), right 320ms var(--ease);
}
.trust-item:hover::after { left: 20%; right: 20%; }
.trust-item .v {
  font-family: "Inter", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1a0f00;
  font-weight: 800;
}
.trust-item .k {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  line-height: 1.4;
}
.trust-open .slash {
  font-style: normal;
  opacity: 0.4;
  font-size: 0.7em;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 28px 16px; }
  .trust-item .v { font-size: clamp(36px, 7vw, 52px); }
}

/* ====== PRESS STRIP ====== */
.press-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.press-row {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.press-row .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: nowrap;
  overflow: hidden;
}
@media (max-width: 640px) {
  .press-row { flex-direction: column; gap: 16px; }
  .press-logos { flex-wrap: wrap; justify-content: center; }
}


.services-bg {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(232, 199, 197, 0.45), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #F7E7E6 100%);
  position: relative;
}
.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Services section — dark text on light bg */
.services-bg .lede,
.services-head .lede {
  color: var(--ink-soft) !important;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
/* ====== 3D TILT SERVICE CARDS ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  perspective: 1400px;
}
.service-card {
  position: relative;
  background: var(--surface);
  padding: 40px 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: background 360ms var(--ease), transform 480ms var(--ease-smooth), box-shadow 360ms var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  background: #FFF;
  box-shadow: 0 24px 48px -16px rgba(140, 79, 90, 0.28);
  z-index: 2;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose-gradient-soft);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(212,165,165,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover { background: #FFF; }
.service-card > * { position: relative; z-index: 2; transform: translateZ(20px); }
.service-card .service-arrow { transform: translateZ(40px); }
.service-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--rose);
  font-style: italic;
}
.service-name {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.service-name-alt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.service-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-end;
  transition: all 280ms var(--ease);
  background: white;
}
.service-card:hover .service-arrow {
  background: var(--rose);
  border-color: var(--rose);
  transform: translate(4px, -4px);
}
.service-arrow svg { width: 14px; height: 14px; color: var(--ink); transition: color 280ms; }
.service-card:hover .service-arrow svg { color: white; }

@media (max-width: 960px) {
  
/* Services section — dark text on light bg */
.services-bg .lede,
.services-head .lede {
  color: var(--ink-soft) !important;
}
.services-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 220px; padding: 28px 20px; }
  .service-name { font-size: 22px; }
}

/* ====== GALLERY / BEFORE-AFTER ====== */
.gallery-bg { background: var(--bg); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: white;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(0,0,0,0.3);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.ba-knob::before, .ba-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}
.ba-knob::before { left: 14px; border-right: 7px solid var(--rose); }
.ba-knob::after { right: 14px; border-left: 7px solid var(--rose); }
.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 4;
}
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; color: var(--rose); }

@media (max-width: 960px) {
  .ba-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ====== SCROLLING SHOWCASE (alternating image marquee) ====== */
.showcase {
  position: relative;
  padding: clamp(72px, 10vh, 120px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 199, 197, 0.4), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.showcase-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.showcase-head .display { margin-top: 16px; }
/* ====== SHOWCASE VIDEO BLOCK ====== */
.showcase-videos {
  display: flex;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 72px);
  margin-bottom: 48px;
  align-items: stretch;
  height: 555px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-video-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
}
.showcase-video-wrap:last-child {
  flex: 1.15;
}
.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .showcase-videos { height: auto; flex-direction: column; }
  .showcase-video-wrap { height: 420px; }
  .showcase-video-wrap:last-child { flex: 1; }
}
@media (max-width: 640px) {
  .showcase-videos { padding: 0 16px; gap: 8px; margin-bottom: 32px; }
  .showcase-video-wrap { height: 340px; border-radius: 12px; }
}
/* ====== END SHOWCASE VIDEO BLOCK ====== */

.showcase-strips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.showcase-strip {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.showcase-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  animation: showcase-left 48s linear infinite;
  align-items: center;
}
.showcase-strip.reverse .showcase-track {
  animation: showcase-right 56s linear infinite;
}
.showcase-strip:hover .showcase-track { animation-play-state: paused; }

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

.showcase-card {
  flex-shrink: 0;
  position: relative;
  height: clamp(220px, 30vh, 320px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 32px -16px rgba(140, 79, 90, 0.32);
  transition: transform 360ms var(--ease-smooth), box-shadow 360ms var(--ease);
  cursor: pointer;
}
.showcase-card.wide { width: clamp(360px, 36vw, 460px); }
.showcase-card.tall { width: clamp(220px, 22vw, 280px); }
.showcase-card.square { width: clamp(260px, 26vw, 320px); }
.showcase-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(40, 14, 22, 0.55));
  opacity: 0.4;
  transition: opacity 360ms;
}
.showcase-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 56px -16px rgba(140, 79, 90, 0.45);
}
.showcase-card:hover img { transform: scale(1.08); }
.showcase-card:hover::after { opacity: 0.7; }
.showcase-card-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: white;
  transform: translateY(8px);
  opacity: 0;
  transition: all 360ms var(--ease);
}
.showcase-card:hover .showcase-card-tag { transform: translateY(0); opacity: 1; }
.showcase-card-tag .cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-light);
}
.showcase-card-tag .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.ba-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.ba-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 240ms var(--ease-smooth);
}
.ba-tab:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.ba-tab.active {
  background: var(--rose-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 14px -6px rgba(183, 110, 121, 0.45);
}
.ba-tab-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}
.ba-tab.active .ba-tab-num { opacity: 1; }

.ba-current-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  animation: ba-cl-in 600ms var(--ease) 100ms backwards;
}
@keyframes ba-cl-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ba-current-label .cat {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-light);
}
.ba-current-label .lbl {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
/* Restore shimmer + tilt highlight on hover */
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.reviews-bg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 165, 165, 0.4), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 199, 197, 0.45), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
}

/* ====== RESULTS (Hakiki Sonuçlar) — Web Only ====== */
.results-bg {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 80px 0;
}
.results-web-only { display: none; }
@media (min-width: 641px) {
  .results-web-only { display: block; }
}
@media (max-width: 640px) {
  .results-web-only { display: block; }
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}

/* Tablet: 2 columns */
@media (max-width: 960px) and (min-width: 641px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }
  .results-bg {
    padding: 60px 0;
  }
}
.results-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.results-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.results-tile:hover img { transform: scale(1.08); }
.results-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.results-tile:hover .results-overlay { opacity: 1; }
.results-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
}

.faq-bg {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(232, 199, 197, 0.3), transparent 50%),
    var(--bg);
}

/* ====== REVIEWS CAROUSEL ====== */
.reviews-carousel {
  margin-top: 64px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.reviews-carousel:active { cursor: grabbing; }
.reviews-track {
  display: flex;
  transition: transform 720ms var(--ease-smooth);
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  padding: 8px 12px;
}
.review-card-large {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 64px;
  position: relative;
}
.review-card-large .review-quote {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
}
.review-quote::before {
  content: """;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--rose-soft);
  line-height: 0;
  position: absolute;
  top: 32px;
  left: 24px;
  opacity: 0.4;
}
.review-stars { display: flex; gap: 4px; color: var(--rose); }
.review-stars svg { width: 14px; height: 14px; fill: currentColor; }
.review-foot { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rose-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.review-foot .meta { display: flex; flex-direction: column; }
.review-foot .name { font-size: 14px; font-weight: 500; color: var(--ink); }
.review-foot .src { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }

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

/* ====== OFFER BADGE (circular foot-massage promo) ====== */
.offer-badge-wrap {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.offer-badge {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 18px 40px -10px rgba(140, 79, 90, 0.38);
  cursor: pointer;
  overflow: visible;
  pointer-events: auto;
  transform: scale(0) rotate(-30deg);
  opacity: 0;
  transition: transform 720ms var(--ease-bounce), opacity 420ms var(--ease);
}
.offer-badge.show {
  transform: scale(1) rotate(0);
  opacity: 1;
}
.offer-badge.collapsed {
  transform: scale(0.46) rotate(-20deg);
  opacity: 0.85;
  cursor: pointer;
}
.offer-badge.collapsed:hover {
  transform: scale(0.55) rotate(0);
  opacity: 1;
}
.offer-badge-link {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.offer-badge-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(140,79,90,0.4), rgba(80,30,40,0.78));
  z-index: 2;
}
.offer-badge-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 800ms var(--ease);
}
.offer-badge:hover .offer-badge-bg { transform: scale(1.08) rotate(2deg); }

.offer-badge-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #D4A5A5, #B76E79, #8C4F5A, #B76E79, #D4A5A5);
  z-index: 0;
  animation: ring-spin 18s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.offer-badge-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 18px 10px 12px;
}
.offer-badge-eyebrow {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1;
}
.offer-badge-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.offer-badge-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-top: 6px;
  background: linear-gradient(135deg, #FFE4D6 0%, #FFCFC1 60%, #F4B5A4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.offer-badge-wa {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.offer-badge-wa svg { width: 10px; height: 10px; }

/* Pulse halo */
.offer-badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--rose-light);
  opacity: 0;
  animation: badge-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes badge-pulse {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Close button — clearly separate, outside the ring */
.offer-badge-close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  transition: all 200ms;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.offer-badge-close:hover {
  background: var(--ink);
  color: white;
  transform: rotate(90deg) scale(1.08);
}
.offer-badge.collapsed .offer-badge-close { display: none; }

@media (max-width: 720px) {
  .offer-badge-wrap { bottom: 100px; left: 16px; }
  .offer-badge { width: 112px; height: 112px; }
  .offer-badge-price { font-size: 26px; }
  .offer-badge-title { font-size: 12px; }
}


.offer-bg {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.offer-bg::before {
  content: "";
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-soft), transparent 60%);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}
.offer-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.offer-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.offer-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.offer-image:hover img { transform: scale(1.05); }
.offer-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(140,79,90,0.4));
  pointer-events: none;
}
.offer-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  z-index: 3;
  border: 1px solid var(--rose-soft);
}
.offer-tag::before {
  content: "✦";
  margin-right: 8px;
  color: var(--rose);
}
.offer-price-overlay {
  position: absolute;
  bottom: -32px;
  right: 24px;
  background: white;
  padding: 24px 32px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: rotate(-3deg);
  transition: transform 360ms var(--ease-smooth);
}
.offer-price-overlay:hover { transform: rotate(0) scale(1.04); }
.offer-price-overlay::after {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--rose);
  border-right: 2px solid var(--rose);
}
.offer-price-overlay::before {
  content: "";
  position: absolute;
  bottom: -1px; left: -1px;
  width: 24px; height: 24px;
  border-bottom: 2px solid var(--rose);
  border-left: 2px solid var(--rose);
}
.offer-price-overlay .amt {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: #1a0f00;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.offer-price-overlay .lbl {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.offer-content { display: flex; flex-direction: column; gap: 24px; }
.offer-content .display { margin-top: 8px; }
.offer-meta {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.offer-meta-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
.offer-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.offer-fine {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

@media (max-width: 960px) {
  .offer-wrap { grid-template-columns: 1fr; gap: 56px; }
  .offer-price-overlay { right: 16px; bottom: -20px; padding: 16px 22px; }
  .offer-price-overlay .amt { font-size: 38px; }
  .offer-meta { flex-direction: column; gap: 12px; }
}

/* ====== BRAND WORDMARK LOGOS ====== */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--ink-soft);
  transition: color 320ms, transform 320ms var(--ease-smooth);
  cursor: default;
  text-align: center;
  white-space: nowrap;
}
.brand:hover { color: var(--rose); transform: translateY(-3px); }

/* Schwarzkopf — bold italic sans-serif with star glyph */
.brand-sk {
  flex-direction: row;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-sk .brand-glyph { width: 14px; height: 14px; }

/* L'Oréal — bold black sans with "professionnel" small below */
.brand-loreal { line-height: 1; }
.brand-loreal .loreal-main {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.brand-loreal .loreal-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.42em;
  margin-top: 4px;
  opacity: 0.7;
}

/* Olaplex — bold uppercase sans */
.brand-olaplex {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.16em;
  flex-direction: row;
  gap: 2px;
}
.brand-olaplex sup {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 1px;
  vertical-align: super;
  opacity: 0.7;
}

/* Kérastase — thin elegant uppercase */
.brand-kerastase { line-height: 1; }
.brand-kerastase .kt-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.34em;
}
.brand-kerastase .kt-sub {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.5em;
  margin-top: 6px;
  opacity: 0.65;
}

/* Wella — bold uppercase sans + thin sub */
.brand-wella { line-height: 1; }
.brand-wella > span:first-child {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.06em;
}
.brand-wella .wella-sub {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.42em;
  margin-top: 4px;
  opacity: 0.65;
}

/* Rallis — script-style italic */
.brand-rallis { line-height: 1; }
.brand-rallis em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.brand-rallis .rallis-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.65;
}

/* VOGUE — heavy compressed serif (Didone vibe) */
.brand-vogue {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.04em;
  transform: scaleY(1.05);
}

/* ELLE — tall thin uppercase */
.brand-elle {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.04em;
  transform: scaleY(1.1);
}

/* Marie Claire — clean serif uppercase */
.brand-marie > span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.18em;
}

/* ====== DISPLAY SIZE HELPERS ====== */
.display-lg { font-size: clamp(40px, 6vw, 80px); }
.display-md { font-size: clamp(28px, 3.5vw, 48px); }
.centered { text-align: center; }

/* ====== CTA STRIP ====== */
.cta-strip {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(135deg, #1A0E10 0%, #2C1820 50%, #1A0E10 100%);
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(183, 110, 121, 0.28), transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(183, 110, 121, 0.18), transparent 50%);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.cta-strip .shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-strip .eyebrow {
  color: var(--rose-light);
}
.cta-strip .display {
  color: #FFFFFF;
  font-size: clamp(40px, 6vw, 88px);
  max-width: 800px;
}
.cta-strip .lede {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: clamp(16px, 1.5vw, 20px);
}
.cta-strip .btn-primary {
  margin-top: 12px;
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 0.8px;
}

/* ====== REVEAL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-expo), transform 760ms var(--ease-expo);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 130ms; }
.reveal-delay-2 { transition-delay: 260ms; }
.reveal-delay-3 { transition-delay: 390ms; }

/* ====== FLOW DIVIDER ====== */
.flow-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 60px;
  position: relative;
  z-index: 2;
}
.flow-divider svg {
  width: 100%;
  height: 100%;
}
.strand-1, .strand-2, .strand-3 {
  fill: none;
  stroke-width: 1.5;
}
.strand-1 { stroke: rgba(183, 110, 121, 0.55); }
.strand-2 { stroke: rgba(183, 110, 121, 0.3); }
.strand-3 { stroke: rgba(183, 110, 121, 0.18); }

/* ====== PARTNERS ====== */
.partners-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: center;
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 960px) {
  .partners-wrap { grid-template-columns: 1fr; gap: 40px; }
  .partners-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .partners-logos { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}

/* ====== INSTAGRAM SECTION (PRO — no photos) ====== */
.ig-pro-section {
  background: #0e0508;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.ig-pro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(131,58,180,.18) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 100%, rgba(253,29,29,.10) 0%, transparent 50%);
  pointer-events: none;
}
.ig-pro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* TOP ROW */
.ig-pro-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.ig-pro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ig-pro-handle {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #fcb045, #fd1d1d, #833ab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity .2s;
  line-height: 1.1;
}
.ig-pro-handle:hover { opacity: .8; }
/* DIVIDER */
.ig-pro-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(131,58,180,.4), rgba(253,29,29,.3), rgba(252,176,69,.3), transparent);
}
/* MIDDLE */
.ig-pro-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.ig-pro-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ig-pro-stat { display: flex; flex-direction: column; gap: 4px; }
.ig-pro-stat-n {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.ig-pro-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ig-pro-stat-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
  margin-top: -8px;
}
.ig-pro-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  font-style: italic;
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}
/* BOTTOM */
.ig-pro-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.ig-pro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  transition: opacity .22s, transform .22s;
}
.ig-pro-btn:hover { opacity: .85; transform: translateY(-2px); }
.ig-pro-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.5; flex-shrink: 0; }
.ig-pro-istanbul {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── TABLET (≤960px) ── */
@media (max-width: 960px) {
  .ig-pro-section { padding: 64px 0; }
  .ig-pro-handle { font-size: clamp(24px, 4vw, 40px); }
  .ig-pro-sub { text-align: left; max-width: 100%; }
  .ig-pro-mid { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 0; }
}
/* Hide old pro layout everywhere — stories replaces it */
.ig-pro-section .shell { display: none; }

/* ── Stories Ring — all versions ── */
.ig-stories-wrap {
  display: flex; /* visible everywhere */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px 48px;
  background: #0e0508;
  position: relative;
}
.ig-stories-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(131,58,180,.22) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 100%, rgba(253,29,29,.12) 0%, transparent 50%);
  pointer-events: none;
}
/* Ring */
.ig-stories-ring {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  margin-bottom: 16px;
  text-decoration: none;
  transition: transform .3s;
}
.ig-stories-ring:hover { transform: scale(1.05); }
.ig-stories-ring-inner {
  background: #1a0a0a;
  border-radius: 50%;
  padding: 6px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ig-stories-ring-inner img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
/* Handle */
.ig-stories-handle {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  margin-bottom: 4px;
}
.ig-stories-name {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
/* Stats */
.ig-stories-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.ig-stories-stat { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.ig-stories-stat-n { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.ig-stories-stat-l { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px; }
.ig-stories-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.15); }
/* Button */
.ig-stories-btn {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity .2s, transform .2s;
}
.ig-stories-btn:hover { opacity: .85; transform: translateY(-2px); }
/* Sub text */
.ig-stories-sub {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* ── WEB (>960px) ── */
@media (min-width: 961px) {
  .ig-pro-section { padding: 96px 0; }
  .ig-stories-ring-inner { width: 160px; height: 160px; }
  .ig-stories-handle { font-size: 22px; }
  .ig-stories-name { font-size: 14px; margin-bottom: 32px; }
  .ig-stories-stats { gap: 36px; margin-bottom: 36px; }
  .ig-stories-stat-n { font-size: 32px; }
  .ig-stories-stat-l { font-size: 12px; }
  .ig-stories-stat-sep { height: 44px; }
  .ig-stories-btn { font-size: 15px; padding: 14px 52px; }
  .ig-stories-sub { font-size: 14px; }
}

/* ── TABLET (641–960px) ── */
@media (min-width: 641px) and (max-width: 960px) {
  .ig-pro-section { padding: 72px 0; }
  .ig-stories-ring-inner { width: 136px; height: 136px; }
  .ig-stories-handle { font-size: 20px; }
  .ig-stories-name { font-size: 13px; margin-bottom: 28px; }
  .ig-stories-stats { gap: 28px; margin-bottom: 32px; }
  .ig-stories-stat-n { font-size: 26px; }
  .ig-stories-btn { font-size: 14px; padding: 13px 44px; }
}

/* ====== INSTAGRAM SECTION (OLD — kept for CSS compat) ====== */
.ig-bg {
  background:
    radial-gradient(ellipse at 60% 0%, rgba(212, 165, 165, 0.35), transparent 55%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.ig-head .display { margin-top: 16px; }
.ig-profile {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  transition: all 360ms var(--ease);
  margin-bottom: 32px;
  max-width: 680px;
}
.ig-profile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--rose-soft);
}
.ig-profile-avatar {
  flex-shrink: 0;
  width: 88px; height: 88px;
}
.ig-avatar-ring {
  display: block;
  width: 88px; height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #B76E79, #D4A5A5, #F7C59F);
}
.ig-avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: white;
  padding: 2px;
}
.ig-profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.ig-profile-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ig-profile-handle {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.ig-verified {
  display: inline-flex;
  align-items: center;
  color: #0095f6;
}
.ig-verified svg { width: 18px; height: 18px; }
.ig-profile-follow {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid var(--rose-soft);
  padding: 5px 14px;
  border-radius: 2px;
  transition: all 240ms;
}
.ig-profile:hover .ig-profile-follow {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}
.ig-profile-stats {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-soft);
}
.ig-profile-stats strong {
  color: var(--ink);
  font-weight: 700;
}
.ig-profile-bio {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 400px;
  font-style: normal;
}
.ig-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  background: var(--rose-soft);
}
.ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 14, 22, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 320ms;
  color: white;
}
.ig-cell:hover .ig-cell-overlay { opacity: 1; }
.ig-cell-overlay svg { width: 22px; height: 22px; }
@media (max-width: 960px) {
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .ig-grid .ig-cell:nth-child(n+5) { display: none; }
}
@media (max-width: 640px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid .ig-cell:nth-child(n+7) { display: none; }
  .ig-profile { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .ig-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ig-profile-follow { margin-left: 0; }
}

/* ====== LOCATION ====== */
.location-bg {
  background: linear-gradient(135deg, #1A0E10 0%, #2C1820 40%, #1A0E10 100%);
  position: relative;
  overflow: hidden;
}
.location-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(183, 110, 121, 0.25), transparent 60%);
  pointer-events: none;
}
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.location-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.location-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.location-row .k {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 600;
  flex-shrink: 0;
}
.location-row .v {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  line-height: 1.5;
}
.location-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.map-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(183, 110, 121, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  background: #0E0810;
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  filter: contrast(1.05) saturate(1.1);
}
.map-stylized {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1E1218 0%, #2A1820 50%, #1A1016 100%);
  z-index: 0;
}
.map-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(183, 110, 121, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 110, 121, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-paths {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%; height: 100%;
}
.map-pin {
  position: absolute;
  top: 42%; left: 44%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -100%);
}
.map-pin-label {
  background: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 2px;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.map-pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.4);
  animation: pin-pulse 2s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(183, 110, 121, 0.15); }
}
.map-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--ink);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-overlay svg { width: 14px; height: 14px; color: var(--rose); }
@media (max-width: 960px) {
  .location-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ====== FAQ ====== */
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  gap: 16px;
  transition: color 240ms;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-trigger:hover { color: var(--rose); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 300ms var(--ease);
  color: var(--rose);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--rose);
  border-radius: 2px;
  transition: all 300ms var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon {
  background: var(--rose);
  border-color: var(--rose);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: white; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 480ms var(--ease);
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-bottom: 22px;
  padding-right: 44px;
}
@media (max-width: 960px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ====== WHATSAPP FAB ====== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.whatsapp-fab svg {
  width: 28px; height: 28px;
  fill: white;
}
.whatsapp-fab > svg:first-child {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: all 320ms var(--ease-smooth);
  fill: white;
}
.whatsapp-fab:hover > svg:first-child {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 280ms var(--ease);
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) {
  .whatsapp-fab { bottom: 20px; right: 20px; }
  .whatsapp-fab > svg:first-child { width: 52px; height: 52px; padding: 12px; }
  .whatsapp-tooltip { display: none; }
}

/* ====== LOADING CURTAIN ====== */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}
.curtain-panel {
  flex: 1;
  background: #0A0604;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}
.curtain.lift .curtain-panel { transform: translateY(-100%); }
.curtain-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
  pointer-events: none;
}
.curtain-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px);
  transition: all 800ms var(--ease) 200ms;
}
.curtain.logo-in .curtain-logo { opacity: 1; transform: translateY(0); }
.curtain-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--rose-light), transparent);
  opacity: 0;
  transition: opacity 600ms var(--ease) 700ms;
}
.curtain.logo-in .curtain-line { opacity: 0.6; }
.curtain-city {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 600ms var(--ease) 900ms;
}
.curtain.logo-in .curtain-city { opacity: 1; }

/* ====== CUSTOM CURSOR ====== */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 80ms, opacity 200ms;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(183, 110, 121, 0.5);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 160ms var(--ease), width 280ms, height 280ms, opacity 200ms;
}
.cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.6; }
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ====== FOOTER ====== */
.footer {
  background: #0A0604;
  border-top: 1px solid rgba(183, 110, 121, 0.14);
  padding: clamp(56px, 8vh, 96px) 0 0;
  color: rgba(255,255,255,0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  max-width: 240px;
}
.footer-brand .lede {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
  font-style: normal;
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 240ms;
  display: inline-block;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-credit { display: flex; gap: 8px; align-items: center; }
.footer-sep { opacity: 0.4; }
.footer-design a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 240ms; }
.footer-design a:hover { color: var(--rose-light); }

/* IG Follow button in footer */
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 280ms;
  width: fit-content;
  max-width: 100%;
}
.ig-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(131,58,180,0.4); }
.ig-follow-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ig-follow-icon svg { width: 20px; height: 20px; }
.ig-follow-text { display: flex; flex-direction: column; gap: 1px; }
.ig-follow-handle { font-size: 13px; font-weight: 700; }
.ig-follow-cta { font-size: 11px; opacity: 0.85; letter-spacing: 0.06em; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ====== PRIVACY / KVKK PAGE ====== */
.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px) 80px;
}
.privacy-page h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.privacy-page .meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.privacy-section { margin-bottom: 40px; }
.privacy-section h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.privacy-section p, .privacy-section li {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.privacy-section ul { padding-left: 20px; }
.privacy-section li { margin-bottom: 6px; }

/* ====== SCROLLBAR ON DARK SECTIONS ====== */
.location-bg::-webkit-scrollbar-thumb { background: rgba(183, 110, 121, 0.4); }

/* ====== TIME DISPLAY — Trust Strip ====== */
.trust-open {
  display: flex !important;
  align-items: center;
  gap: 4px;
  font-size: clamp(22px, 3vw, 36px) !important;
  line-height: 1;
}
.time-from, .time-to {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  color: #1a0f00;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.time-sep {
  font-family: var(--sans);
  font-size: 0.55em;
  color: var(--rose-light);
  opacity: 0.7;
  margin: 0 2px;
  font-weight: 300;
}

/* ====== ANNOUNCEMENT BAR ====== */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #E8A000;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px 10px 20px;
  min-height: 44px;
  animation: ann-slide-in 600ms var(--ease) forwards;
  box-shadow: 0 3px 16px rgba(200, 140, 0, 0.35);
}
@keyframes ann-slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
body.has-announce { padding-top: 44px; }
body.has-announce .nav { top: 44px; }

.announce-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5C3800;
}
.announce-divider {
  color: rgba(0,0,0,0.3);
  font-size: 14px;
}
.announce-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a00;
  letter-spacing: 0.01em;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
}
.announce-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.2);
  padding: 3px 10px;
  border-radius: 2px;
}
.announce-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3a2000;
  font-weight: 700;
}
.announce-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #1a0f00;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.announce-close {
  position: absolute;
  right: 14px;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(0,0,0,0.4);
  font-size: 13px;
  cursor: pointer;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 200ms;
  flex-shrink: 0;
}
.announce-close:hover {
  color: #000;
  background: rgba(0,0,0,0.12);
}
@media (max-width: 640px) {
  .announce-bar { padding: 10px 40px 10px 16px; min-height: 44px; }
  .announce-msg { font-size: 13px; }
  body.has-announce { padding-top: 44px; }
  body.has-announce .nav { top: 40px; }
}

/* ====== ATELIER WARM TONE — tüm galeri resimleri ====== */
/* Sıcak, rose-gold renk tonu: sepia + saturate + slight hue shift */
.showcase-card img,
.ba-slider img,
.hero-slide,
.offer-image img,
.ig-cell img {
  filter: sepia(18%) saturate(115%) brightness(97%) contrast(103%) hue-rotate(-8deg);
  transition: filter 600ms var(--ease), transform 800ms var(--ease);
}
.showcase-card:hover img {
  filter: sepia(10%) saturate(120%) brightness(100%) contrast(105%) hue-rotate(-5deg);
  transform: scale(1.08);
}
.ba-slider img {
  filter: sepia(22%) saturate(112%) brightness(96%) contrast(104%) hue-rotate(-10deg);
}

/* ====== REVIEW NAV ARROWS — Modern ====== */
.rv-arrow {
  width: 96px; height: 44px;
  border-radius: 0;
  border: 1px solid rgba(183, 110, 121, 0.35);
  background: transparent;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  transition: all 320ms var(--ease);
  position: relative;
  overflow: hidden;
}
.rv-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose-gradient);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  z-index: 0;
}
.rv-arrow svg { position: relative; z-index: 1; transition: transform 320ms var(--ease); }
.rv-arrow:hover { color: white !important; border-color: transparent; box-shadow: 0 8px 24px rgba(140,79,90,0.3); }
.rv-arrow:hover::before { opacity: 1; }
.rv-arrow[aria-label="prev"]:hover svg { transform: translateX(-4px); }
.rv-arrow[aria-label="next"]:hover svg { transform: translateX(4px); }
.rv-arrow:active { transform: scale(0.96); }

/* Reviews nav — centered, horizontal row */
.reviews-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-top: 40px !important;
}
.rv-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* FAQ section — left side text should be dark */
.faq-bg .lede,
.faq-grid .lede {
  color: var(--ink-soft) !important;
}

/* WhatsApp FAB — row-reverse */
.whatsapp-fab {
  flex-direction: row-reverse !important;
}

/* ====================================================
   INNER PAGES — Services, Gallery, About, Contact
   ==================================================== */

/* ---- Page Head ---- */
.page-head {
  background: linear-gradient(180deg, #0A0604 0%, #1a0e0c 100%);
  padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(183,110,121,0.22), transparent 65%);
  pointer-events: none;
}
.page-head .crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.page-head .crumb a {
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  text-decoration: none;
  transition: color 240ms;
}
.page-head .crumb a:hover { color: var(--rose-light); }
.page-head .crumb .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.page-head .display { color: white; }
.page-head .lede {
  color: rgba(255,255,255,0.7) !important;
  margin-top: 20px;
  max-width: 56ch;
}
.display-xl {
  font-size: clamp(36px, 5.5vw, 72px);
}
.display-sm {
  font-size: clamp(22px, 2.8vw, 36px);
}

/* ---- Services Cats ---- */
.svc-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.svc-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 240ms var(--ease);
}
.svc-cat:hover { border-color: var(--rose); color: var(--rose); }
.svc-cat.active {
  background: var(--rose-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(140,79,90,0.3);
}
.svc-cat-count {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 400;
}

/* ---- Service List ---- */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
  transition: all 280ms var(--ease);
  width: 100%;
  font-family: inherit;
}
.svc-row:hover { background: var(--bg-2); padding-left: 12px; }
.svc-row:hover .svc-icon::after { transform: translateX(4px); }
.svc-num {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.1em;
}
.svc-name {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.svc-name small {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.svc-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-desc-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.svc-desc-meta svg { width: 12px; height: 12px; }
.svc-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 280ms;
}
.svc-row:hover .svc-icon {
  background: var(--rose-gradient);
  border-color: transparent;
}
.svc-icon::after {
  content: "→";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--ink-mute);
  transition: all 280ms var(--ease);
}
.svc-row:hover .svc-icon::after { color: white; transform: translate(-46%, -50%); }

@media (max-width: 768px) {
  .svc-row { grid-template-columns: 36px 1fr 24px; }
  .svc-desc { display: none; }
}
@media (max-width: 480px) {
  .svc-row { grid-template-columns: 30px 1fr 20px; gap: 12px; }
  .svc-name { font-size: 15px; }
}

/* ---- Service Drawer ---- */
/* When drawer is open, hide top announcement bar to prevent overlap with close button */
body.drawer-open .announce-bar,
body.drawer-open .announce,
body.drawer-open [class*="announce-"]:not(.svc-drawer-overlay):not([class*="drawer"]) {
  display: none !important;
}

.svc-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,6,4,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  animation: overlay-in 300ms var(--ease) forwards;
}
@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.svc-drawer {
  width: min(520px, 100vw);
  background: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -24px 0 64px rgba(0,0,0,0.28);
  animation: drawer-in 380ms var(--ease) forwards;
  position: relative;
}
@keyframes drawer-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.svc-drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 210;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
  transition: all 200ms;
  padding: 0;
}
.svc-drawer-close:hover { background: var(--ink); color: white; }
.svc-drawer-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-drawer-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(18%) saturate(115%) brightness(97%) contrast(103%) hue-rotate(-8deg);
}
.svc-drawer-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,6,4,0.6));
}
.svc-drawer-media-tag {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  color: white;
  display: flex; flex-direction: column; gap: 2px;
}
.svc-drawer-media-tag span {
  font-family: "Inter", sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
}
.svc-drawer-media-tag small {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.7;
}
.svc-drawer-content {
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  flex: 1;
}
.svc-drawer-head { display: flex; flex-direction: column; gap: 12px; }
.svc-drawer-long {
  font-size: 15px; line-height: 1.68;
  color: var(--ink-soft);
}
.svc-drawer-facts {
  display: flex; gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-fact { display: flex; flex-direction: column; gap: 4px; }
.svc-fact .k {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-dark);
}
.svc-fact .v { font-size: 14px; font-weight: 500; color: var(--ink); }
.svc-drawer-block { display: flex; flex-direction: column; gap: 10px; }
.svc-block-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-dark);
}
.svc-drawer-block p {
  font-size: 14px; line-height: 1.6; color: var(--ink-soft);
}
.svc-steps { display: flex; flex-direction: column; gap: 10px; }
.svc-step { display: flex; align-items: flex-start; gap: 12px; }
.svc-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-gradient);
  color: white;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.svc-step-text { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.svc-drawer-cta { margin-top: auto; align-self: flex-start; }

/* ---- Gallery Page ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
}
.gal-item.wide { grid-column: span 2; }
.gal-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
  filter: sepia(18%) saturate(115%) brightness(97%) contrast(103%) hue-rotate(-8deg);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(10,6,4,0.65));
  color: white;
  font-size: 14px; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: all 320ms var(--ease);
}
.gal-cap small {
  display: block;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose-light); margin-bottom: 3px;
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ---- About Page ---- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-hero p {
  font-size: 15px; line-height: 1.72; color: var(--ink-soft);
  margin-top: 16px;
}
.about-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(18%) saturate(115%) brightness(97%) contrast(103%) hue-rotate(-8deg);
}
@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ====== GALLERY COMING SOON ====== */
.gal-coming-wrap {
  padding: clamp(64px, 10vh, 120px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.gal-coming {
  max-width: 620px;
  margin-bottom: 64px;
}
.gal-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(183, 110, 121, 0.1);
  border: 1px solid rgba(183, 110, 121, 0.28);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 24px;
}
.gal-coming-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: badge-blink 1.6s ease-in-out infinite;
}
@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.gal-coming-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.gal-coming-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.gal-coming-note {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 28px;
}

/* Preview grid — blurred teaser */
.gal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gal-preview-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.gal-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(18%) saturate(115%) brightness(80%) contrast(103%) hue-rotate(-8deg) blur(6px);
  transform: scale(1.06);
}
.gal-preview-blur {
  position: absolute;
  inset: 0;
  background: rgba(247, 231, 230, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media (max-width: 640px) {
  .gal-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-preview-item:nth-child(5), .gal-preview-item:nth-child(6) { display: none; }
}

/* ====== CONTACT PAGE ====== */
.contact-section { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  gap: 64px;
}
.contact-channels { display: flex; flex-direction: column; gap: 0; }
.contact-ch {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all 280ms var(--ease);
  cursor: pointer;
}
.contact-ch:hover { padding-left: 8px; background: transparent; }
.contact-ch:hover .contact-ch-arrow { opacity: 1; transform: translateX(4px); color: var(--rose); }
.contact-ch-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 2px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 280ms;
  color: var(--rose);
}
.contact-ch:hover .contact-ch-icon { background: var(--rose-gradient); border-color: transparent; color: white; }
.contact-ch-icon svg { width: 18px; height: 18px; }
.contact-ch-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact-ch-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-dark);
}
.contact-ch-value {
  font-size: 15px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}
.contact-ch-sub {
  font-size: 12px; color: var(--ink-mute); margin-top: 1px;
}
.contact-ch-arrow {
  font-size: 16px; color: var(--ink-mute);
  opacity: 0; transition: all 280ms var(--ease);
}

.contact-right { display: flex; flex-direction: column; gap: 24px; }
.contact-hours-card {
  background: #0A0604;
  padding: 36px 32px;
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid rgba(183,110,121,0.18);
}
.contact-hours-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose-light);
}
.contact-hours-value {
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: white;
  letter-spacing: -0.025em; line-height: 1.1;
}
.contact-hours-note {
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-style: italic; line-height: 1.5;
}
.contact-hours-sep {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 4px 0;
}
.contact-map-mini {
  position: relative;
  height: 220px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(183,110,121,0.18);
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ====== FORCE trust-open size = 52px ====== */
.trust-item .trust-open,
.trust-item .trust-open .time-from,
.trust-item .trust-open .time-to {
  font-size: 52px !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--ink) !important;
  letter-spacing: -0.03em !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--ink) !important;
  line-height: 1 !important;
}
.trust-item .trust-open .time-sep {
  font-size: 28px !important;
  color: var(--rose) !important;
  font-weight: 300 !important;
  margin: 0 3px !important;
}

/* ====== RICH MAP ====== */
.map-compass {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.map-pin-label {
  background: rgba(10,6,4,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(183,110,121,0.4);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: white;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  border-radius: 2px;
}
.map-frame {
  aspect-ratio: 16/11;
  height: auto;
  min-height: 340px;
}

/* ====== COOKIE CONSENT BANNER (KVKK) ====== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  padding: 0;
  pointer-events: none;
}
.cookie-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(18, 12, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(183, 110, 121, 0.22);
  padding: 18px clamp(20px, 5vw, 80px);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
  pointer-events: auto;
  animation: cookie-slide-up 480ms var(--ease) forwards;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-bar-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.cookie-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cookie-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-light);
}
.cookie-desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  max-width: 640px;
}
.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 220ms var(--ease);
  white-space: nowrap;
}
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-settings:hover { color: white; border-color: rgba(255,255,255,0.4); }
.cookie-btn-necessary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}
.cookie-btn-necessary:hover { background: rgba(255,255,255,0.14); color: white; }
.cookie-btn-accept {
  background: var(--rose-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(183,110,121,0.35);
}
.cookie-btn-accept:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(183,110,121,0.45); }

/* Settings panel */
.cookie-settings-panel {
  background: rgba(18, 12, 10, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(183, 110, 121, 0.22);
  padding: 28px clamp(20px, 5vw, 80px);
  pointer-events: auto;
  animation: cookie-slide-up 400ms var(--ease) forwards;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-settings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cookie-settings-head .cookie-title {
  font-size: 14px;
}
.cookie-settings-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 200ms;
}
.cookie-settings-close:hover { color: white; background: rgba(255,255,255,0.1); }
.cookie-settings-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-cat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.cookie-cat-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  font-family: "Inter", sans-serif;
}
.cookie-cat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.cookie-always-on {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-light);
  white-space: nowrap;
  background: rgba(183,110,121,0.12);
  border: 1px solid rgba(183,110,121,0.25);
  padding: 4px 10px;
  border-radius: 12px;
}
/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 260ms;
}
.cookie-toggle-track::after {
  content: "";
  position: absolute;
  left: 3px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 260ms;
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--rose);
  border-color: var(--rose-dark);
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  left: calc(100% - 19px);
  background: white;
}
.cookie-settings-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-kvkk-link {
  font-size: 12px;
  color: var(--rose-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "Inter", sans-serif;
  transition: color 200ms;
}
.cookie-kvkk-link:hover { color: white; }
.cookie-settings-btns {
  display: flex;
  gap: 10px;
}
/* Mobile */
@media (max-width: 768px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 20px; }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; }
  .cookie-btn { padding: 8px 14px; font-size: 10px; }
  .cookie-settings-panel { padding: 20px; }
  .cookie-settings-foot { flex-direction: column; align-items: flex-start; }
  .cookie-settings-btns { width: 100%; }
  .cookie-settings-btns .cookie-btn { flex: 1; text-align: center; }
}

/* ====== APPOINTMENT PAGE ====== */
.appt-page {
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 80px;
}
.appt-header {
  background: linear-gradient(135deg, #0A0604 0%, #2C1820 60%, #1A0C10 100%);
  padding: clamp(80px, 12vh, 130px) 0 clamp(40px, 6vh, 64px);
  position: relative;
  overflow: hidden;
}
.appt-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(183,110,121,0.28), transparent 60%);
}
.appt-header .eyebrow { color: var(--rose-light); }
.appt-header .display { color: white; margin-top: 10px; }

/* Steps */
.appt-steps {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.appt-step-row {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 400px;
}
.appt-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.38;
  transition: opacity 320ms;
}
.appt-step.active { opacity: 1; }
.appt-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: all 320ms;
  font-family: "Inter", sans-serif;
}
.appt-step.active .appt-step-num {
  background: var(--rose-gradient);
  color: white;
  box-shadow: 0 4px 12px rgba(183,110,121,0.35);
}
.appt-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.appt-step-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 20px;
  max-width: 80px;
}

/* Blocks */
.appt-step1, .appt-step2 { padding-top: 48px; }
.appt-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.appt-block-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 20px;
}

/* Guest buttons */
.appt-guest-row { display: flex; gap: 12px; flex-wrap: wrap; }
.appt-guest-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 240ms var(--ease);
  min-width: 100px;
}
.appt-guest-btn:hover { border-color: var(--rose-light); }
.appt-guest-btn.active {
  border-color: var(--rose);
  background: linear-gradient(135deg, rgba(183,110,121,0.06), rgba(212,165,165,0.04));
  box-shadow: 0 4px 16px rgba(183,110,121,0.18);
}
.appt-guest-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color 220ms;
}
.appt-guest-btn.active .appt-guest-icon { color: var(--rose); }
.appt-guest-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.appt-guest-btn.active .appt-guest-label { color: var(--rose-dark); }

/* Calendar + time grid */
.appt-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 768px) { .appt-grid { grid-template-columns: 1fr; } }

/* Calendar */
.appt-calendar { width: 100%; }
.appt-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.appt-cal-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 220ms;
}
.appt-cal-arrow:hover { border-color: var(--rose); color: var(--rose); }
.appt-cal-month {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.appt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.appt-cal-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  padding: 6px 0 10px;
  text-transform: uppercase;
}
.appt-cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 200ms;
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif;
}
.appt-cal-day:hover:not(:disabled) { background: var(--bg-2); }
.appt-cal-day.today {
  font-weight: 800;
  color: var(--rose-dark);
}
.appt-cal-day.today::after {
  content: "";
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose);
  position: absolute;
  bottom: 4px;
}
.appt-cal-day { position: relative; }
.appt-cal-day.selected {
  background: var(--rose-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(183,110,121,0.35);
  font-weight: 700;
}
.appt-cal-day.past, .appt-cal-day:disabled { color: var(--line); cursor: not-allowed; }
.appt-cal-day.empty { pointer-events: none; }

/* Time slots */
.appt-time-block { overflow: hidden; }
.appt-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
}
.appt-time-grid::-webkit-scrollbar { width: 4px; }
.appt-time-grid::-webkit-scrollbar-thumb { background: var(--rose-soft); border-radius: 2px; }
.appt-time-slot {
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 200ms;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}
.appt-time-slot:hover { border-color: var(--rose-light); color: var(--rose); }
.appt-time-slot.active {
  background: var(--rose-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(183,110,121,0.3);
}

/* Summary bar */
.appt-summary-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(183,110,121,0.08), rgba(212,165,165,0.05));
  border: 1px solid rgba(183,110,121,0.18);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
}
.appt-sb-item { font-size: 13px; font-weight: 600; color: var(--ink); }
.appt-sb-sep { color: var(--rose-light); font-size: 18px; }

/* Footer */
.appt-footer { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.appt-next-btn { padding: 16px 48px; font-size: 14px; }
.appt-next-btn.disabled { opacity: 0.45; cursor: not-allowed; }
.appt-hint { font-size: 12px; color: var(--ink-mute); text-align: center; }

/* Step 2 */
.appt-step2 { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .appt-step2 { grid-template-columns: 1fr; } }

.appt-summary-card {
  background: linear-gradient(135deg, #0A0604 0%, #2C1820 100%);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 80px);
  color: white;
}
.appt-sc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 20px;
}
.appt-sc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.appt-sc-row span:first-child { font-size: 16px; flex-shrink: 0; }
.appt-sc-change {
  margin-top: 20px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms;
  font-family: "Inter", sans-serif;
}
.appt-sc-change:hover { background: rgba(255,255,255,0.14); color: white; }

/* Form */
.appt-form { display: flex; flex-direction: column; gap: 20px; }
.appt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .appt-form-row { grid-template-columns: 1fr; } }
.appt-field { display: flex; flex-direction: column; gap: 6px; }
.appt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.appt-input {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: white;
  transition: border-color 220ms;
  outline: none;
}
.appt-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(183,110,121,0.12); }
.appt-input.error { border-color: #E53935; }
.appt-textarea { resize: vertical; min-height: 80px; }
.appt-error { font-size: 11px; color: #E53935; font-weight: 500; }

/* Service chips */
.appt-svc-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.appt-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: white;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 220ms;
  font-family: "Inter", sans-serif;
}
.appt-svc-chip:hover { border-color: var(--rose-light); color: var(--rose); }
.appt-svc-chip.active {
  background: var(--rose-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 3px 10px rgba(183,110,121,0.28);
}
.appt-check { font-size: 11px; font-weight: 800; }

/* Confirm footer */
.appt-footer-2 { flex-direction: row; justify-content: flex-end; gap: 16px; margin-top: 8px; }
.appt-back-btn {
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 220ms;
  font-family: "Inter", sans-serif;
}
.appt-back-btn:hover { border-color: var(--rose); color: var(--rose); }
.appt-confirm-btn {
  padding: 14px 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.appt-confirm-btn:disabled,
.appt-back-btn:disabled { opacity: .5; pointer-events: none; }
.appt-hint-text { font-size: 11px; color: var(--ink-soft); margin-top: 4px; display: block; }
.appt-submit-error { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; padding: 12px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.appt-success { text-align: center; padding: 64px 24px; max-width: 480px; margin: 0 auto; }
.appt-success-icon { width: 72px; height: 72px; border-radius: 50%; background: #f0fdf4; border: 2px solid #1a7a3a; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: #1a7a3a; }
.appt-success-title { font-family: "Playfair Display", Georgia, serif; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.appt-success-msg { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; }
.appt-success-email { font-size: 14px; font-weight: 600; color: var(--rose); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .appt-footer-2 { flex-direction: column-reverse; }
  .appt-back-btn, .appt-confirm-btn { width: 100%; justify-content: center; }
  .appt-block { padding: 20px 16px; }
}

/* Nav highlight for appointment */
.nav-link[data-key="appointment"] {
  color: var(--rose-light) !important;
  border: 1px solid rgba(183,110,121,0.35);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 220ms;
}
.nav-link[data-key="appointment"]:hover {
  background: var(--rose-gradient);
  color: white !important;
  border-color: transparent;
}

/* ====== LEGAL PAGES ====== */
.privacy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px) 100px;
}
.privacy-page .eyebrow {
  color: var(--rose-dark);
  margin-bottom: 12px;
}
.privacy-page h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.privacy-page .meta {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.privacy-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.privacy-section:last-of-type { border-bottom: none; }
.privacy-section h2 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.privacy-section p, .privacy-section li {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.privacy-section ul { padding-left: 20px; }
.privacy-section li { margin-bottom: 6px; }

/* Contact box at bottom of legal pages */
.privacy-contact-box {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(183,110,121,0.06), rgba(212,165,165,0.04));
  border: 1px solid rgba(183,110,121,0.18);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.privacy-contact-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
}
.privacy-contact-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  min-width: 80px;
  flex-shrink: 0;
}
.privacy-contact-item a {
  color: var(--rose);
  text-decoration: none;
  transition: color 220ms;
}
.privacy-contact-item a:hover { color: var(--rose-dark); text-decoration: underline; }
.privacy-contact-item span { color: var(--ink-soft); }

/* ====== PREMIUM LEGAL PAGES ====== */
.legal-page { background: var(--bg); min-height: 100vh; padding-bottom: 80px; }

/* Hero banner */
.legal-hero {
  background: linear-gradient(135deg, #0A0604 0%, #2C1820 60%, #1A0C10 100%);
  padding: clamp(80px, 12vh, 130px) 0 clamp(48px, 7vh, 72px);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(183,110,121,0.22), transparent 55%);
}
.legal-hero-inner {
  position: relative;
  max-width: 640px;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(183,110,121,0.35);
  border-radius: 20px;
  background: rgba(183,110,121,0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 20px;
}
.legal-badge svg { flex-shrink: 0; }
.legal-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}
.legal-updated {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
}

/* Body layout */
.legal-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  padding-top: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .legal-body { grid-template-columns: 1fr; }
  .legal-sidebar { order: -1; }
}

/* Sections */
.legal-sections { display: flex; flex-direction: column; gap: 0; }
.legal-section {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.legal-section:last-child { border-bottom: none; }
.legal-section-num {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rose-light);
  background: rgba(183,110,121,0.08);
  border: 1px solid rgba(183,110,121,0.16);
  border-radius: 4px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-section-content { flex: 1; }
.legal-section-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.legal-section-text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-soft);
}

/* Sidebar */
.legal-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 24px); }

/* Contact card */
.legal-contact-card {
  background: linear-gradient(135deg, #0A0604 0%, #2C1820 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-contact-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 4px;
}
.legal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  line-height: 1.5;
  transition: color 200ms;
}
a.legal-contact-item:hover { color: white; }
.legal-contact-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(183,110,121,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--rose-light);
}

/* Other docs links */
.legal-other-links {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-other-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.legal-other-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  cursor: pointer;
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--rose-soft);
  border-radius: 6px;
  transition: all 220ms;
  display: block;
}
.legal-other-link:hover {
  background: var(--rose-gradient);
  color: white;
  border-color: transparent;
}



/* ================================================
   A_LIZ — MOBILE & TABLET RESPONSIVE SYSTEM
   Tablet : max-width 960px
   Mobile : max-width 640px
   XSmall : max-width 380px
   ================================================ */

/* ── TABLET (≤960px) ── */
@media (max-width: 960px) {

  /* Layout */
  .shell { padding: 0 clamp(18px, 4vw, 48px); }
  .section { padding: clamp(56px, 9vh, 100px) 0; }
  .display-lg { font-size: clamp(30px, 5vw, 56px); }
  .display-md { font-size: clamp(22px, 3.5vw, 36px); }

  /* Nav */
  .nav-menu { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(14, 9, 7, 0.98); backdrop-filter: blur(24px);
    flex-direction: column; padding: 8px 0 16px; z-index: 79; gap: 0;
    border-bottom: 1px solid rgba(183,110,121,0.14); }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 13px clamp(18px, 4vw, 48px); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; }

  /* Trust strip */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 28px 16px; }

  /* Services */
  .services-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 200px; padding: 24px 20px; }
  .service-name { font-size: 20px; }

  /* Before/After */
  .ba-wrap { grid-template-columns: 1fr; gap: 32px; }

  /* Offer */
  .offer-wrap { grid-template-columns: 1fr; gap: 40px; }
  .offer-image { aspect-ratio: 16/9; }
  .offer-price-overlay { right: 20px; bottom: -14px; padding: 16px 22px; }
  .offer-price-overlay .amt { font-size: 36px; }
  .offer-meta { flex-wrap: wrap; gap: 12px; }

  /* Instagram */
  .ig-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .ig-grid .ig-cell:nth-child(n+5) { display: none; }

  /* Location */
  .location-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Partners */
  .partners-wrap { grid-template-columns: 1fr; gap: 32px; }
  .partners-logos { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Reviews */
  .review-card-large { padding: 36px 28px; }

  /* Legal */
  .legal-body { grid-template-columns: 1fr; gap: 32px; }
  .legal-sidebar { order: -1; display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .legal-contact-card, .legal-other-links { flex: 1; min-width: 220px; }
  .legal-sidebar .legal-contact-card { position: static; }

  /* Appointment */
  .appt-step2 { grid-template-columns: 1fr; }
  .appt-summary-card { position: static; }
  .appt-grid { grid-template-columns: 1fr; }

  /* Pages */
  .about-hero { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {

  /* Global */
  .shell { padding: 0 16px; }
  .section { padding: clamp(40px, 8vh, 68px) 0; }
  .eyebrow { font-size: 10px; letter-spacing: 0.22em; }
  .display-lg { font-size: clamp(26px, 7vw, 42px); line-height: 1.05; }

  /* Announce bar — full on all viewports */
  body.has-announce { padding-top: 44px; }
  body.has-announce .nav { top: 44px; }
  .announce-bar { min-height: 44px; padding: 10px 44px 10px 16px; }
  .announce-eyebrow { display: inline; font-size: 9px; }
  .announce-msg { font-size: 12px; }
  .announce-divider { display: inline; }
  .announce-price-wrap { padding: 2px 8px; }
  .announce-price { font-size: 16px; }

  /* Nav */
  .nav { padding: 10px 0; }
  .nav-inner { padding: 0 16px; }
  .nav-logo-img { height: 56px !important; }
  .nav-right { gap: 8px; }
  .nav-tel { width: 36px; height: 36px; }
  .lang-trigger { padding: 6px 10px; gap: 6px; font-size: 11px; }

  /* Hero */
  .hero-inner {
    padding: 76px 14px 100px;
    align-items: center;
    justify-content: center;
  }
  .hero-left {
    padding: 24px 18px;
    gap: 14px;
    max-width: 100%;
    border-radius: 12px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .hero-title {
    font-size: clamp(26px, 7.5vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }
  .lede {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.82) !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }
  .hero-actions .btn-link {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 8px 0;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    margin-top: 4px;
  }
  .hero-meta-item:nth-child(3) { grid-column: 1 / -1; }
  .hero-meta-item .v { font-size: 13px !important; }
  .hero-meta-item .k { font-size: 9px; letter-spacing: 0.18em; }
  .hero-slide-progress { left: 10px; right: 10px; bottom: 10px; gap: 4px; }
  .hero-slide-meta { top: 10px; right: 10px; padding: 5px 10px; }
  .hero-slide-caption .title { font-size: 18px; }
  /* Mobile: marquee not floating over hero — sits below as block */
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }
  .hero-inner {
    position: relative !important;
    inset: auto !important;
    padding-bottom: 24px !important;
  }
  .hero-marquee {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 12px 0;
    margin-top: 0;
  }

  /* Trust strip */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 20px 10px; min-height: auto; }
  .trust-item .v {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1 !important;
  }
  .trust-item .trust-open .time-from,
  .trust-item .trust-open .time-to {
    font-size: clamp(26px, 7vw, 40px) !important;
    -webkit-text-fill-color: var(--ink) !important;
  }
  .trust-item .k { font-size: 9px; letter-spacing: 0.14em; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { min-height: 150px; padding: 20px 18px; }
  .service-name { font-size: 18px; }
  .service-num { font-size: 12px; }

  /* Before/After */
  .ba-slider { aspect-ratio: 3/4; }
  .ba-tabs { gap: 6px; }
  .ba-tab { padding: 7px 10px; font-size: 9px; letter-spacing: 0.12em; }
  .ba-tab-num { font-size: 11px; }

  /* Showcase */
  .showcase-card.wide  { width: clamp(240px, 68vw, 320px); }
  .showcase-card.tall  { width: clamp(160px, 45vw, 220px); }
  .showcase-card.square { width: clamp(190px, 53vw, 260px); }
  .showcase-card { height: clamp(150px, 38vw, 220px); border-radius: 4px; }
  .showcase-strips { gap: 12px; }

  /* Reviews */
  .review-card-large { padding: 22px 16px; }
  .review-card-large .review-quote { font-size: 15px; line-height: 1.6; }
  .reviews-nav { gap: 14px; margin-top: 20px; }
  .rv-arrow { width: 38px; height: 38px; font-size: 16px; }

  /* Offer badge */
  .offer-badge-wrap { bottom: 88px; left: 12px; }
  .offer-badge { width: 100px; height: 100px; }
  .offer-badge-price { font-size: 22px; }
  .offer-badge-title { font-size: 10px; }
  .offer-badge-eyebrow { font-size: 7px; }
  .offer-badge-close { width: 24px; height: 24px; font-size: 13px; top: -4px; right: -4px; }

  /* Offer section */
  .offer-image { aspect-ratio: 4/3; }
  .offer-price-overlay { right: 12px; bottom: -10px; padding: 12px 16px; transform: rotate(0); }
  .offer-price-overlay .amt { font-size: 28px; }
  .offer-price-overlay .lbl { font-size: 8px; }
  .offer-meta { flex-direction: column; gap: 8px; }
  .offer-cta-row { flex-direction: column; gap: 10px; }
  .offer-cta-row .btn { width: 100%; justify-content: center; }

  /* Instagram */
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .ig-grid .ig-cell:nth-child(n+7) { display: none; }
  .ig-profile { flex-direction: column; padding: 16px; gap: 12px; }
  .ig-avatar-ring { width: 60px; height: 60px; }
  .ig-profile-handle { font-size: 15px; }
  .ig-profile-stats { gap: 12px; font-size: 12px; }
  .ig-profile-bio { font-size: 12px; }
  .ig-cta-row { flex-direction: column; gap: 8px; }
  .ig-cta-row .btn { width: 100%; justify-content: center; font-size: 12px; }

  /* Location */
  .location-rows .location-row { flex-direction: column; gap: 3px; padding: 14px 0; }
  .location-row .v { text-align: left; font-size: 13px; }
  .location-row .k { font-size: 10px; }
  .map-frame { aspect-ratio: 4/3; min-height: 200px; }
  .map-pin-label { font-size: 10px; padding: 4px 8px; }
  .location-cta { flex-direction: column; gap: 8px; }
  .location-cta .btn, .location-cta a { width: 100%; justify-content: center; text-align: center; }

  /* Partners */
  .partners-logos { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 16px 0; }
  .faq-a { font-size: 13px; line-height: 1.6; }
  .faq-icon { width: 22px; height: 22px; font-size: 13px; }

  /* Footer */
  .footer { padding: clamp(36px, 6vh, 60px) 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-logo-img { height: 60px !important; max-width: 160px; }
  .footer-brand .lede { font-size: 13px; }
  .footer-col h4 { font-size: 10px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 11px; }

  /* WhatsApp FAB */
  .whatsapp-fab { bottom: 16px; right: 14px; }
  .whatsapp-fab > svg:first-child { width: 50px !important; height: 50px !important; }
  .whatsapp-tooltip { display: none; }

  /* Cookie banner mobile rules moved to dedicated block (line ~6300) */
  .cookie-settings-panel { padding: 18px 16px; }
  .cookie-settings-foot { flex-direction: column; gap: 10px; }
  .cookie-settings-btns { width: 100%; display: flex; gap: 8px; }
  .cookie-settings-btns .cookie-btn { flex: 1; text-align: center; }

  /* CTA Strip */
  .cta-strip { padding: clamp(40px, 7vh, 68px) 0; }
  .cta-strip .display { font-size: clamp(22px, 6vw, 36px); }
  .cta-strip .lede { font-size: 13px; }
  .cta-strip .btn { width: 100%; justify-content: center; }

  /* Press strip */
  .press-row { flex-direction: column; gap: 16px; padding: 28px 0; }
  .press-logos { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Appointment page */
  .appt-page { padding-bottom: 60px; }
  .appt-header { padding: 76px 0 28px; }
  .appt-header .display { font-size: clamp(22px, 6vw, 36px); }
  .appt-steps { top: 40px; padding: 14px 0; }
  .appt-step-label { font-size: 12px; }
  .appt-step-num { width: 28px; height: 28px; font-size: 10px; }
  .appt-step-line { margin: 0 12px; max-width: 48px; }
  .appt-block { padding: 16px 14px; margin-bottom: 16px; border-radius: 6px; }
  .appt-block-title { font-size: 9px; margin-bottom: 14px; }
  .appt-guest-row { gap: 8px; }
  .appt-guest-btn { padding: 12px 14px; min-width: 76px; border-radius: 6px; }
  .appt-guest-icon { width: 32px; height: 32px; }
  .appt-guest-label { font-size: 11px; }
  .appt-cal-nav { margin-bottom: 14px; }
  .appt-cal-month { font-size: 14px; }
  .appt-cal-arrow { width: 32px; height: 32px; }
  .appt-cal-grid { gap: 3px; }
  .appt-cal-dow { font-size: 9px; padding: 4px 0 8px; }
  .appt-cal-day { font-size: 12px; border-radius: 5px; }
  .appt-time-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; max-height: 260px; }
  .appt-time-slot { padding: 9px 4px; font-size: 11px; border-radius: 5px; }
  .appt-summary-bar { padding: 10px 14px; gap: 8px; }
  .appt-sb-item { font-size: 12px; }
  .appt-footer { gap: 8px; }
  .appt-next-btn { width: 100%; justify-content: center; padding: 14px; font-size: 13px; }
  .appt-hint { font-size: 11px; }
  .appt-form-row { grid-template-columns: 1fr; gap: 12px; }
  .appt-input { padding: 11px 14px; font-size: 14px; }
  .appt-svc-grid { gap: 6px; }
  .appt-svc-chip { padding: 7px 12px; font-size: 11px; border-radius: 16px; }
  .appt-footer-2 { flex-direction: column-reverse; gap: 8px; }
  .appt-back-btn, .appt-confirm-btn { width: 100%; justify-content: center; }
  .appt-confirm-btn { padding: 14px 20px; font-size: 13px; }

  /* Legal pages */
  .legal-page { padding-bottom: 60px; }
  .legal-hero { padding: 76px 0 28px; }
  .legal-title { font-size: clamp(22px, 6vw, 34px); line-height: 1.1; }
  .legal-badge { font-size: 10px; padding: 5px 12px; }
  .legal-updated { font-size: 11px; }
  .legal-body { padding-top: 32px; }
  .legal-sidebar { flex-direction: column; }
  .legal-contact-card { padding: 18px; border-radius: 8px; }
  .legal-contact-title { font-size: 9px; }
  .legal-contact-item { font-size: 12px; gap: 8px; }
  .legal-contact-icon { width: 24px; height: 24px; }
  .legal-other-links { padding: 16px; border-radius: 8px; }
  .legal-other-title { font-size: 9px; }
  .legal-other-link { font-size: 12px; padding: 8px 12px; }
  .legal-section { gap: 12px; padding: 18px 0; }
  .legal-section-num { width: 30px; height: 30px; font-size: 10px; flex-shrink: 0; }
  .legal-section-title { font-size: 14px; margin-bottom: 8px; }
  .legal-section-text { font-size: 13px; line-height: 1.7; }

  /* Services page */
  .svc-cat-bar { flex-wrap: wrap; gap: 6px; }
  .svc-cat { padding: 8px 12px; font-size: 11px; }
  .svc-row { grid-template-columns: 32px 1fr 22px; gap: 12px; padding: 14px 0; }
  .svc-name { font-size: 14px; }
  .svc-desc { display: none; }
  .svc-drawer {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    position: fixed !important;
    inset: auto 0 0 0 !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    animation: drawer-in-mobile 380ms var(--ease) forwards !important;
  }
  @keyframes drawer-in-mobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .svc-drawer-overlay { align-items: flex-end !important; }
  .svc-drawer-close {
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 26px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255,255,255,0.6) !important;
  }

  /* Gallery page */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.wide { grid-column: span 1; }
  .gal-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-preview-item:nth-child(n+5) { display: none; }

  /* About page */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stat-v { font-size: 36px; }

  /* Contact page */
  .contact-ch { padding: 14px 14px; }
  .contact-ch-icon { width: 36px; height: 36px; font-size: 16px; }
  .contact-hours { padding: 18px 16px; }
  .contact-hours .btn { width: 100%; justify-content: center; }
  .contact-map-mini { aspect-ratio: 4/3; min-height: 200px; }

  /* Page head */
  .page-head { padding: clamp(76px, 10vh, 110px) 0 clamp(28px, 4vh, 48px); }
  .display-xl { font-size: clamp(24px, 6vw, 40px) !important; }

  /* Privacy page (old) */
  .privacy-page { padding: 76px 16px 60px; }
  .privacy-page h1 { font-size: clamp(22px, 6vw, 36px); }
}

/* ── VERY SMALL (≤380px) ── */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(22px, 7vw, 32px) !important; }
  .hero-left { padding: 18px 12px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-item .v { font-size: 22px !important; }
  .trust-item .trust-open .time-from,
  .trust-item .trust-open .time-to { font-size: 22px !important; }
  .services-grid { grid-template-columns: 1fr; }
  .appt-time-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid .ig-cell:nth-child(n+5) { display: none; }
  .appt-guest-btn { min-width: 68px; padding: 10px 8px; }
  .appt-guest-label { font-size: 10px; }
}

/* ── Trust strip mobile: bilhassa titiz ── */
@media (max-width: 640px) {
  /* Trust grid: 2x2 */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-item {
    padding: 22px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }

  /* All value numbers: same size */
  .trust-item .v {
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
  }

  /* 10 → 00 time display: same size as others */
  .trust-item .trust-open {
    display: flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1 !important;
  }
  .trust-item .trust-open .time-from,
  .trust-item .trust-open .time-to {
    font-family: "Inter", sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-style: normal !important;
  }
  .trust-item .trust-open .time-sep {
    font-size: 0.5em !important;
    color: var(--rose) !important;
    margin: 0 2px !important;
    opacity: 0.8 !important;
  }

  /* Label text */
  .trust-item .k {
    font-size: 9px !important;
    letter-spacing: 0.15em !important;
    margin-top: 6px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 380px) {
  .trust-item .v,
  .trust-item .trust-open,
  .trust-item .trust-open .time-from,
  .trust-item .trust-open .time-to {
    font-size: clamp(22px, 6.5vw, 32px) !important;
  }
  .trust-item { padding: 18px 8px; }
}

/* ── NAV RESTRUCTURE: logo+lang left, links right ── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-right-group .nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  position: static;
  background: none;
  border: none;
  padding: 0;
  flex-direction: row;
}
.lang-switch-mobile { display: none !important; }
.lang-switch-desktop { display: flex; }

@media (max-width: 960px) {
  .lang-switch-desktop { display: none !important; }
  .lang-switch-mobile { display: flex !important; }
  .nav-right-group .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(14,9,7,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 8px 0 16px;
    z-index: 79;
    gap: 0;
    border-bottom: 1px solid rgba(183,110,121,0.14);
  }
  .nav-right-group .nav-menu.open { display: flex; }
  .nav-right-group .nav-menu .nav-link {
    padding: 13px clamp(18px,4vw,48px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    width: 100%;
  }
}

/* ── OFFER BADGE: hide on mobile ── */
@media (max-width: 640px) {
  .offer-badge-wrap { display: none !important; }
}

/* ── FOOTER MOBILE: large logo, single row bottom, marquee scroll ── */
@media (max-width: 640px) {
  .footer-logo-img {
    height: 72px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }
  .footer-bottom {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    padding: 16px 0 !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  .footer-bottom::-webkit-scrollbar { display: none; }
  .footer-bottom > * {
    flex-shrink: 0 !important;
    font-size: 11px !important;
    padding-right: 16px !important;
  }
  .footer-sep { display: inline !important; padding-right: 8px !important; }
  .footer-credit { display: inline-flex !important; align-items: center !important; gap: 8px !important; }
  .footer-credit span, .footer-design { white-space: nowrap !important; }
}

/* ── SERVICES MOBILE: compact, show only 4 key items ── */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .service-card {
    min-height: 130px !important;
    padding: 16px 14px !important;
    border-radius: 0 !important;
  }
  .service-card:nth-child(n+5) { display: none !important; }
  .service-name { font-size: 16px !important; }
  .service-num { font-size: 11px !important; }
  .service-arrow { width: 28px !important; height: 28px !important; }
  /* "Tümünü Gör" link after grid */
  .services-see-all { display: flex !important; }
}

/* ── NAV NEW STRUCTURE ── */
.nav-left-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}
.lang-desktop-only { display: flex; }
.lang-mobile-only  { display: none; }
.nav-drawer {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(14,9,7,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 8px 0 16px;
  z-index: 79;
  border-bottom: 1px solid rgba(183,110,121,0.14);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  padding: 13px clamp(18px,4vw,48px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  width: 100%;
  display: block;
}
.nav-drawer .lang-mobile-only {
  padding: 12px clamp(18px,4vw,48px) 0;
  display: flex !important;
}

@media (max-width: 960px) {
  .nav-links-desktop { display: none; }
  .lang-desktop-only { display: none !important; }
  .nav-toggle { display: flex !important; }
}
@media (min-width: 961px) {
  .nav-toggle { display: none !important; }
  .nav-drawer { display: none !important; }
}

/* ── Trust item: location badge ── */
.trust-location {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  line-height: 1 !important;
}
.trust-pin-icon {
  color: var(--rose);
  flex-shrink: 0;
  width: clamp(20px, 3vw, 32px);
  height: clamp(20px, 3vw, 32px);
}
.trust-dist {
  font-family: "Inter", sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 4vw, 54px) !important;
  letter-spacing: -0.03em !important;
  color: var(--ink) !important;
  line-height: 1 !important;
  -webkit-text-fill-color: var(--ink) !important;
}
@media (max-width: 640px) {
  .trust-pin-icon { width: 18px; height: 18px; }
  .trust-dist { font-size: clamp(22px, 7vw, 36px) !important; }
}
@media (max-width: 380px) {
  .trust-dist { font-size: 22px !important; }
}

/* ── NAV MOBILE: lang + search + hamburger right ── */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-search-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 220ms;
}
.nav-search-btn:hover {
  background: rgba(255,255,255,0.16);
  color: white;
}
/* Desktop: hide mobile actions, show desktop lang */
@media (min-width: 961px) {
  .nav-mobile-actions { display: none !important; }
  .nav-lang-desktop-wrap { display: flex; }
  .nav-tel-desktop { display: flex; }
}
/* Mobile: show mobile actions, hide desktop lang */
@media (max-width: 960px) {
  .nav-mobile-actions { display: flex !important; }
  .nav-lang-desktop-wrap { display: none !important; }
  .nav-tel-desktop { display: none !important; }
  /* Mobile lang inside mobile-actions: compact */
  .nav-mobile-actions .lang-switch { display: flex !important; }
  .nav-mobile-actions .lang-trigger {
    padding: 6px 8px;
    gap: 4px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
  }
  .nav-mobile-actions .lang-trigger span:not(.chev) { font-size: 11px; }
  .nav-mobile-actions .chev { width: 8px; height: 8px; }
  /* Keep lang menu dropdown working on mobile */
  .nav-mobile-actions .lang-menu {
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 180px;
  }
}
@media (max-width: 640px) {
  .nav-search-btn { width: 32px; height: 32px; }
  .nav-search-btn svg { width: 16px; height: 16px; }
}

/* ── NAV FINAL LAYOUT ── */
.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 clamp(20px, 5vw, 80px) !important;
  gap: 0 !important;
  position: relative !important;
}
/* Logo: left */
.nav-logo { flex-shrink: 0; cursor: pointer; display: flex; align-items: center; }
.nav-logo-img { height: 56px !important; width: auto !important; object-fit: contain !important; }

/* Center links */
.nav-links-desktop {
  display: flex;
  gap: 36px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links-desktop .nav-link {
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms;
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
}
.nav-links-desktop .nav-link::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--rose-light);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 300ms var(--ease);
}
.nav-links-desktop .nav-link:hover,
.nav-links-desktop .nav-link.active { color: white; }
.nav-links-desktop .nav-link:hover::after,
.nav-links-desktop .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* Right group */
.nav-right-group {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
}
.nav-search-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 220ms;
  flex-shrink: 0;
}
.nav-search-btn:hover { background: rgba(255,255,255,0.14); color: white; }

/* Mobile */
@media (max-width: 960px) {
  .nav-links-desktop { display: none !important; }
  .nav-tel-desktop { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-logo-img { height: 52px !important; }
  .nav-inner { padding: 0 16px !important; }
}
@media (min-width: 961px) {
  .nav-toggle { display: none !important; }
  .nav-drawer { display: none !important; }
}

/* Drawer */
.nav-drawer {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(14,9,7,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 8px 0 16px;
  z-index: 79;
  border-bottom: 1px solid rgba(183,110,121,0.14);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: color 220ms, background 220ms;
}
.nav-drawer .nav-link:hover,
.nav-drawer .nav-link.active { color: white; background: rgba(255,255,255,0.04); }

/* ── NAV: exact match to reference screenshot ── */
.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 clamp(24px, 5vw, 72px) !important;
  position: relative !important;
  min-height: var(--nav-h) !important;
}
.nav-logo { flex-shrink: 0 !important; }
.nav-logo-img { height: 68px !important; width: auto !important; object-fit: contain !important; }

/* Links: absolute center */
.nav-links-desktop {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 40px !important;
  align-items: center !important;
}
.nav-links-desktop .nav-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  color: rgba(255,255,255,0.82) !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: color 220ms !important;
  position: relative !important;
  padding-bottom: 4px !important;
}
.nav-links-desktop .nav-link:hover,
.nav-links-desktop .nav-link.active { color: #fff !important; }
.nav-links-desktop .nav-link.active::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 2px !important;
  background: var(--rose-light) !important;
  border-radius: 2px !important;
}

/* Right group: phone + lang — push to far right */
.nav-right-group {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}
/* Phone button */
.nav-tel-desktop {
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.07) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  color: rgba(255,255,255,0.85) !important;
  transition: all 220ms !important;
  text-decoration: none !important;
}
.nav-tel-desktop:hover { background: rgba(255,255,255,0.14) !important; color: white !important; }
.nav-tel-desktop svg { width: 17px !important; height: 17px !important; }

/* Lang trigger */
.lang-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.88) !important;
  cursor: pointer !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  transition: all 220ms !important;
}
.lang-trigger:hover { background: rgba(255,255,255,0.13) !important; }

/* Mobile */
@media (max-width: 960px) {
  .nav-links-desktop { display: none !important; }
  .nav-tel-desktop { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-logo-img { height: 52px !important; }
  .nav-inner { padding: 0 14px !important; }
}
@media (min-width: 961px) {
  .nav-toggle { display: none !important; }
  .nav-drawer { display: none !important; }
}

/* Nav tel button */
.nav-tel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all 220ms;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-tel-btn:hover { background: rgba(255,255,255,0.14); color: white; }
.nav-tel-btn svg { width: 17px; height: 17px; }
@media (max-width: 960px) { .nav-tel-btn { display: flex; } }

/* ── Announcement marquee ── */
.announce-bar {
  overflow: hidden !important;
  padding: 0 40px 0 0 !important;
}
.announce-marquee {
  flex: 1 !important;
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%) !important;
}
.announce-track {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  animation: ann-scroll 36s linear infinite !important;
  gap: 0 !important;
}
.announce-track:hover { animation-play-state: paused !important; }
@keyframes ann-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ann-segment {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 0;
}
.ann-sep {
  font-size: 10px;
  color: rgba(44,28,20,0.35);
  margin-left: 8px;
}
@media (max-width: 640px) {
  .ann-item { gap: 8px; padding-right: 28px; }
  .announce-msg { font-size: 12px !important; }
  .announce-price { font-size: 16px !important; }
  .announce-eyebrow { font-size: 9px !important; display: inline !important; }
}

/* Nav logo sizes — final values in dedicated block near end of file */

/* ================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================ */

/* will-change only on actively animated elements */
.hero-slide { will-change: transform, opacity; }
.showcase-track { will-change: transform; }
.marquee-track { will-change: transform; }
.announce-track { will-change: transform; }

/* content-visibility removed — breaks scroll animations */

/* Reduce blur on mobile — heavy on GPU */
@media (max-width: 640px) {
  .hero-left {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
  .nav {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  .hero-slide-meta {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0,0,0,0.45) !important;
  }
  .hero-marquee {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Disable tilt transform on mobile */
  .service-card { transform: none !important; }
  /* Simplify showcase animation */
  .showcase-card:hover { transform: none !important; }
  .showcase-card:hover img { transform: none !important; }
  /* Disable box shadows on mobile for perf */
  .hero-frame { box-shadow: none !important; }
}

/* Pause off-screen marquees */
.announce-track, .marquee-track, .showcase-track {
  animation-play-state: running;
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Image rendering: backface-visibility KALDIRILDI — tüm img'leri gizliyordu */

/* prefers-reduced-motion: kuralları kaldırıldı — kullanıcı tüm animasyonların çalışmasını istedi */

/* Optimize for mobile rendering */
@media (max-width: 640px) {
  /* Disable heavy gradients */
  .hero-ambient-glow { display: none; }
  .offer-bg::before { display: none; }
  .services-bg::before { display: none; }
  
  /* Simpler transitions */
  .service-card {
    transition: background 200ms, box-shadow 200ms !important;
  }
  .showcase-card {
    transition: none !important;
  }
  /* Disable ring spin */
  .offer-badge-ring { animation: none !important; }
  .offer-badge::before { animation: none !important; }
}

/* ── Mobile services CTA ── */
.svc-mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.svc-mobile-btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 14px 24px;
}

/* ── Showcase: top strip left, bottom strip right ── */
.showcase-strip:not(.reverse) .showcase-track {
  animation: showcase-scroll-left 40s linear infinite !important;
  transform: translateZ(0);
}
.showcase-strip.reverse .showcase-track {
  animation: showcase-scroll-right 48s linear infinite !important;
  transform: translateZ(0);
}
@keyframes showcase-scroll-left {
  from { transform: translateX(0) translateZ(0); }
  to   { transform: translateX(-50%) translateZ(0); }
}
@keyframes showcase-scroll-right {
  from { transform: translateX(-50%) translateZ(0); }
  to   { transform: translateX(0) translateZ(0); }
}
.showcase-strip:hover .showcase-track {
  animation-play-state: paused !important;
}

/* ── Announce marquee: smooth right to left ── */
.announce-track {
  animation: ann-rtl 32s linear infinite !important;
  transform: translateZ(0) !important;
}
@keyframes ann-rtl {
  from { transform: translateX(0) translateZ(0); }
  to   { transform: translateX(-50%) translateZ(0); }
}

/* ── Marquee hero brands: left ── */
.marquee-track {
  animation: marquee-left 38s linear infinite !important;
  transform: translateZ(0) !important;
}
@keyframes marquee-left {
  from { transform: translateX(0) translateZ(0); }
  to   { transform: translateX(-50%) translateZ(0); }
}

/* ── Performance: GPU layers on animated elements ── */
.showcase-track,
.announce-track,
.marquee-track {
  will-change: transform !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}


/* ================================
   SHOWCASE SCROLL — DEFINITIVE FIX
   Top strip: left → right to left
   Bot strip: right → left to right
   ================================ */

.showcase-track { will-change: transform; }

.showcase-strip:not(.reverse) .showcase-track {
  animation: sc-left 44s linear infinite !important;
}
.showcase-strip.reverse .showcase-track {
  animation: sc-right 52s linear infinite !important;
}
.showcase-strip:hover .showcase-track {
  animation-play-state: paused !important;
}

@keyframes sc-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes sc-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Announce bar: right to left */
.announce-track {
  animation: ann-left 30s linear infinite !important;
}
@keyframes ann-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* prefers-reduced-motion showcase: kaldırıldı */

/* Announce: sağdan sola — kesin override */
.announce-track {
  animation: ann-rtl-final 28s linear infinite !important;
  will-change: transform !important;
}
@keyframes ann-rtl-final {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announce-bar:hover .announce-track {
  animation-play-state: paused !important;
}

/* ============================================
   FLUID ANIMATIONS — v149
   ============================================ */

/* ====== PAGE TRANSITION ====== */
.page-root {
  animation: page-fade-in 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ====== SCROLL PROGRESS BAR ====== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, #B76E79 0%, #D4A5A5 50%, #B76E79 100%);
  z-index: 10000;
  transition: width 80ms linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(183,110,121,0.55);
}

/* ====== SERVICE CARD STAGGER ====== */
@keyframes card-rise {
  from { transform: translateY(22px); }
  to   { transform: translateY(0);    }
}
.services-grid.in .service-card {
  animation: card-rise 560ms var(--ease) backwards;
}
.services-grid.in .service-card:nth-child(1) { animation-delay: 0ms;   }
.services-grid.in .service-card:nth-child(2) { animation-delay: 80ms;  }
.services-grid.in .service-card:nth-child(3) { animation-delay: 160ms; }
.services-grid.in .service-card:nth-child(4) { animation-delay: 240ms; }
.services-grid.in .service-card:nth-child(5) { animation-delay: 320ms; }
.services-grid.in .service-card:nth-child(6) { animation-delay: 400ms; }
.services-grid.in .service-card:nth-child(7) { animation-delay: 480ms; }
.services-grid.in .service-card:nth-child(8) { animation-delay: 560ms; }

/* ====== PARTNER BRAND STAGGER ====== */
@keyframes brand-in {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1);       }
}
.partners-list.in .brand {
  animation: brand-in 480ms var(--ease) backwards;
}
.partners-list.in .brand:nth-child(1) { animation-delay: 0ms;   }
.partners-list.in .brand:nth-child(2) { animation-delay: 70ms;  }
.partners-list.in .brand:nth-child(3) { animation-delay: 140ms; }
.partners-list.in .brand:nth-child(4) { animation-delay: 210ms; }
.partners-list.in .brand:nth-child(5) { animation-delay: 280ms; }
.partners-list.in .brand:nth-child(6) { animation-delay: 350ms; }

/* ====== HERO TEXT ENTRANCE ====== */
.hero-left .lede {
  animation: lede-in 900ms var(--ease) 900ms both;
}
.hero-actions {
  animation: lede-in 900ms var(--ease) 1100ms both;
}
.hero-meta {
  animation: lede-in 900ms var(--ease) 1300ms both;
}
@keyframes lede-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ====== NAV ENTRANCE ====== */
@keyframes nav-drop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.nav {
  animation: nav-drop 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ====== CURTAIN: content fades on lift ====== */
.curtain.lift .curtain-content {
  opacity: 0;
  transition: opacity 350ms ease;
}

/* ====== LOCATION ROW HOVER ====== */
.location-row {
  transition: background 220ms var(--ease), padding-left 220ms var(--ease);
}
.location-row:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 8px;
}

/* ====== TRUST ITEM ENTRANCE ====== */
@keyframes trust-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.trust-grid .trust-item {
  animation: trust-in 600ms var(--ease) backwards;
}
.trust-grid .trust-item:nth-child(1) { animation-delay: 100ms; }
.trust-grid .trust-item:nth-child(2) { animation-delay: 200ms; }
.trust-grid .trust-item:nth-child(3) { animation-delay: 300ms; }
.trust-grid .trust-item:nth-child(4) { animation-delay: 400ms; }

/* ====== REVIEW NAV DOTS HOVER ====== */
.rv-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-soft);
  cursor: pointer;
  transition: all 300ms var(--ease-smooth);
}
.rv-dot.active {
  background: var(--rose);
  transform: scale(1.35);
}
.rv-dot:hover { background: var(--rose-light); }

/* ====== OFFER BADGE: smoother hover ====== */
.offer-badge {
  transition: transform 720ms var(--ease-bounce), opacity 420ms var(--ease), box-shadow 320ms;
}
.offer-badge.show:hover {
  box-shadow: 0 24px 56px -8px rgba(140,79,90,0.5);
}

/* ====== SERVICE LIST ROW STAGGER ====== */
@keyframes svc-row-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.svc-list.in .svc-row {
  animation: svc-row-in 480ms var(--ease) backwards;
}
.svc-list.in .svc-row:nth-child(n) {
  animation-delay: calc(var(--row-i, 0) * 45ms);
}

/* ====== PAGE HEAD ENTRANCE ====== */
.page-head .display {
  animation: lede-in 900ms var(--ease) 200ms both;
}
.page-head .lede {
  animation: lede-in 900ms var(--ease) 400ms both;
}
.page-head .crumb {
  animation: lede-in 700ms var(--ease) 0ms both;
}

/* ====== BA-CURRENT-LABEL smoother ====== */
@keyframes ba-cl-in {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0);     }
}

/* ====== FOOTER LINK HOVER ====== */
.footer-col ul li a {
  transition: color 200ms, transform 200ms var(--ease);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: white;
  transform: translateX(4px);
}

/* ====== ANNOUNCEMENT BAR: subtle pulse ====== */
.announce-price {
  animation: price-pulse 3s ease-in-out infinite;
}
@keyframes price-pulse {
  0%, 100% { opacity: 1;    transform: scale(1);    }
  50%       { opacity: 0.88; transform: scale(1.04); }
}

/* ====== REDUCED MOTION: kill decorative only ====== */
/* prefers-reduced-motion page/nav: kaldırıldı */

/* ============================================
   FLUID PERFORMANCE — GPU & EASING UPGRADES
   ============================================ */

/* Page transition: no blur — pure opacity, no transform (transform on main breaks fixed children) */
.page-root {
  animation: page-clean 480ms var(--ease-expo) both !important;
}
@keyframes page-clean {
  from { opacity: 0.001; }
  15%  { opacity: 1; }
  to   { opacity: 1; }
}

/* GPU compositing — all scrolling bands */
.marquee-track,
.showcase-track,
.announce-track {
  will-change: transform;
  transform: translateZ(0);
  /* backface-visibility kaldırıldı — sadece metin/logo elementlerde bile render sorunu çıkartıyordu */
}

/* Contain layout cost of infinite-scroll containers */
.hero-marquee,
.showcase-strip,
.announce-marquee {
  overflow: hidden;
  /* contain: layout style KALDIRILDI — animate ve resimleri engelliyordu */
}

/* Hero slides: compositor layer */
.hero-slide {
  will-change: transform, opacity;
  /* backface-visibility kaldırıldı */
}

/* Showcase cards: GPU */
.showcase-card,
.showcase-card img {
  will-change: transform;
  /* backface-visibility kaldırıldı */
}

/* Review track: smooth drag slide */
.reviews-track {
  will-change: transform;
  transform: translateZ(0);
}

/* BA slider clip-path */
.ba-after {
  will-change: clip-path;
}

/* Service card: GPU for tilt */
.service-card {
  will-change: transform;
}

/* Smooth browser scroll */
html { scroll-behavior: smooth; }

/* Reveal: expo easing override (no blur) */
.reveal {
  filter: none !important;
  transition: opacity 740ms var(--ease-expo),
              transform 740ms var(--ease-expo) !important;
}
.reveal.in { filter: none !important; }

/* Service card stagger: expo */
.services-grid.in .service-card {
  animation-timing-function: var(--ease-expo);
}
@keyframes card-rise {
  from { transform: translateY(20px); }
  to   { transform: translateY(0);    }
}

/* Partner brand stagger: expo */
.partners-list.in .brand {
  animation-timing-function: var(--ease-expo);
}

/* Trust strip: subtle slide-in only (no opacity — visible below fold) */
@keyframes trust-in {
  from { transform: translateY(14px) scale(0.97); }
  to   { transform: translateY(0)    scale(1);    }
}

/* Hero lede / meta / actions: expo */
.hero-left .lede,
.hero-actions,
.hero-meta {
  animation-timing-function: var(--ease-expo) !important;
}
@keyframes lede-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Service rows stagger: expo */
.svc-list.in .svc-row {
  animation-timing-function: var(--ease-expo);
}

/* Showcase strip: slightly different speeds = natural depth */
.showcase-strip:nth-child(1) .showcase-track { animation-duration: 52s; }
.showcase-strip:nth-child(2) .showcase-track { animation-duration: 44s; }

/* prefers-reduced-motion pause: kaldırıldı */

/* ── MARQUEE MASK: seamless edge fade ── */
.showcase-strip {
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* ── HERO MARQUEE MASK ── */
.hero-marquee {
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* ── ANNOUNCE MARQUEE MASK ── */
.announce-marquee {
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}

/* ── SCROLL SMOOTH on iOS too ── */
.reviews-carousel,
.svc-list,
.nav-drawer {
  -webkit-overflow-scrolling: touch;
}

/* ── FLOW DIVIDER: animated strands ── */
.strand-1 {
  stroke-dasharray: 8 4;
  animation: strand-flow 12s linear infinite;
}
.strand-2 {
  stroke-dasharray: 6 8;
  animation: strand-flow 18s linear infinite reverse;
}
.strand-3 {
  stroke-dasharray: 4 12;
  animation: strand-flow 24s linear infinite;
}
@keyframes strand-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -120; }
}
/* prefers-reduced-motion strands: kaldırıldı */

/* ============================================
   COOKIE BANNER — Professional Redesign
   ============================================ */

/* Base: slim dark bar */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  pointer-events: none;
}
.cookie-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(14, 9, 7, 0.97);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-top: 1px solid rgba(183,110,121,0.20);
  padding: 14px clamp(16px, 4vw, 72px);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.40);
  pointer-events: auto;
  animation: cookie-slide-up 500ms cubic-bezier(0.25,0.46,0.45,0.94) both;
}
@keyframes cookie-slide-up {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Shield icon */
.cookie-shield {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--rose-light);
  opacity: 0.85;
}

/* Left block */
.cookie-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cookie-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
  line-height: 1;
}
.cookie-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56ch;
}

/* Action buttons */
.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 200ms var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 7px 12px;
  font-size: 10px;
}
.cookie-btn-settings:hover {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.28);
}
.cookie-btn-necessary {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.10);
}
.cookie-btn-necessary:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #B76E79 0%, #D4A5A5 100%);
  color: white;
  box-shadow: 0 2px 12px rgba(183,110,121,0.35);
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(183,110,121,0.45);
}
.cookie-btn-accept:active { transform: translateY(0); }

/* (Footer padding rule moved to end of file to win cascade) */

/* ─────────────────────────────────────────────
   COOKIE BANNER — MOBILE (≤680px)
   Sheet-style: compact, professional, fully visible
   ───────────────────────────────────────────── */
@media (max-width: 680px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(183,110,121,0.28);
    background: rgba(14, 9, 7, 0.985);
  }
  .cookie-shield {
    display: flex;
    width: 22px; height: 22px;
    flex-shrink: 0;
  }
  .cookie-bar-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-text {
    flex: 1;
    gap: 4px;
  }
  .cookie-title {
    font-size: 10px;
    letter-spacing: 0.20em;
    line-height: 1.2;
  }
  .cookie-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 11.5px;
    line-height: 1.5;
    color: rgba(255,255,255,0.65);
    max-width: 100%;
  }
  .cookie-bar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
  }
  .cookie-btn-necessary,
  .cookie-btn-accept {
    padding: 12px 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
    justify-content: center;
    border-radius: 3px;
  }
  .cookie-btn-settings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
    opacity: 0.55;
    background: transparent;
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255,255,255,0.18);
  }
  .cookie-btn-settings:hover {
    opacity: 0.85;
    border: none;
  }
}

/* ─────────────────────────────────────────────
   COOKIE BANNER — SMALL MOBILE (≤380px)
   Tighter spacing for very small screens
   ───────────────────────────────────────────── */
@media (max-width: 380px) {
  .cookie-bar { padding: 14px 14px calc(12px + env(safe-area-inset-bottom, 0px)); gap: 10px; }
  .cookie-desc { -webkit-line-clamp: 2; font-size: 11px; }
  .cookie-btn-necessary,
  .cookie-btn-accept { padding: 11px 6px; font-size: 10.5px; }
}

/* Settings panel */
.cookie-settings-panel {
  background: rgba(14, 9, 7, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-top: 1px solid rgba(183,110,121,0.20);
  padding: 24px clamp(16px, 4vw, 72px);
  pointer-events: auto;
  animation: cookie-slide-up 400ms var(--ease) forwards;
  max-height: 75vh;
  overflow-y: auto;
}
.cookie-settings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-settings-head .cookie-title { font-size: 12px; }
.cookie-settings-close {
  background: none; border: none;
  color: rgba(255,255,255,0.35);
  font-size: 18px; cursor: pointer;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 180ms;
}
.cookie-settings-close:hover { color: white; background: rgba(255,255,255,0.08); }

.cookie-settings-body {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-cat-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.cookie-cat-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.cookie-cat-desc { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.4; }
.cookie-always-on {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose-light);
  background: rgba(183,110,121,0.10);
  border: 1px solid rgba(183,110,121,0.22);
  padding: 3px 8px; border-radius: 10px; white-space: nowrap;
}

/* Toggle */
.cookie-toggle { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-track {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 240ms;
}
.cookie-toggle-track::after {
  content: "";
  position: absolute; left: 3px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 240ms;
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--rose); border-color: var(--rose-dark);
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  left: calc(100% - 17px); background: white;
}

.cookie-settings-foot {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-kvkk-link {
  font-size: 11px; color: var(--rose-light); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  opacity: 0.75; transition: opacity 180ms;
}
.cookie-kvkk-link:hover { opacity: 1; }
.cookie-settings-btns { display: flex; gap: 8px; }
@media (max-width: 520px) {
  .cookie-settings-foot { flex-direction: column; align-items: stretch; }
  .cookie-settings-btns { flex-direction: column; }
  .cookie-settings-btns .cookie-btn { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   CANONICAL OVERRIDES — Logo + Mobile Compact
   Son tanım — tüm önceki !important'ları geçersiz kılar
   ═══════════════════════════════════════════════════════════ */

/* ── Logo: kesin boyutlar ── */
.nav-logo-img {
  height: 100px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
}
@media (max-width: 960px) {
  .nav-logo-img { height: 80px !important; max-width: 180px !important; }
}
@media (max-width: 640px) {
  .nav-logo-img { height: 72px !important; max-width: 165px !important; }
  .hero-slide-meta { display: none !important; }
}
@media (max-width: 380px) {
  .nav-logo-img { height: 62px !important; max-width: 145px !important; }
}

/* ── Footer logo ── */
.footer-logo-img {
  height: 150px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
}
@media (max-width: 960px) {
  .footer-logo-img { height: 120px !important; }
}
@media (max-width: 640px) {
  .footer-logo-img { height: 130px !important; max-width: 260px !important; }
}

/* ── Nav height sync ── */
:root { --nav-h: 72px; }
@media (max-width: 640px) { :root { --nav-h: 60px; } }

/* ── Curtain logo ── */
.curtain-logo { width: 68px !important; height: 68px !important; }

/* ═══════════════════════════
   MOBILE COMPACT MASTER
   ═══════════════════════════ */
@media (max-width: 640px) {

  /* Shell: minimal gutters */
  .shell { padding: 0 16px !important; }

  /* Section spacing: compact */
  .section      { padding: 52px 0 !important; }
  .section-tight { padding: 32px 0 !important; }
  .trust-strip  { padding: 36px 0 !important; }
  .press-strip  { padding: 20px 0 !important; }

  /* Hero */
  .hero-inner { padding: 76px 12px 28px !important; }
  .hero-left  { padding: 24px 18px !important; gap: 12px !important; }
  .hero-meta  { grid-template-columns: 1fr 1fr !important; padding-top: 14px !important; }
  .hero-meta-item:nth-child(3) { grid-column: 1 / -1; }

  /* Display typography: prevent horizontal overflow */
  .display-lg { font-size: clamp(26px, 8vw, 48px) !important; line-height: 1.1 !important; }
  .display-xl { font-size: clamp(24px, 7.5vw, 44px) !important; }
  .display-sm { font-size: clamp(20px, 6vw, 32px) !important; }

  /* Services */
  .services-head { margin-bottom: 36px !important; gap: 20px !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .service-card  { min-height: 180px !important; padding: 22px 16px !important; }
  .service-name  { font-size: 15px !important; }

  /* Before/After */
  .ba-wrap { gap: 28px !important; }
  .ba-slider { aspect-ratio: 3/4 !important; }
  .ba-tabs { gap: 6px !important; }
  .ba-tab  { padding: 7px 10px !important; font-size: 10px !important; }

  /* Reviews */
  .review-card-large { padding: 28px 20px !important; }
  .review-quote { font-size: 15px !important; }

  /* Partners — 3 per row */
  .partners-wrap { gap: 24px !important; }
  .partners-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    justify-items: center !important;
    align-items: center !important;
  }

  /* Location */
  .location-wrap { gap: 32px !important; }
  .location-row  { padding: 14px 0 !important; }
  .location-row .v { font-size: 13px !important; }
  .location-row .k { font-size: 10px !important; }
  .map-frame { min-height: 240px !important; aspect-ratio: 4/3 !important; }

  /* FAQ */
  .faq-grid { gap: 24px !important; }
  .faq-trigger { font-size: 14px !important; padding: 18px 0 !important; }
  .faq-body-inner { font-size: 13px !important; padding-right: 0 !important; }

  /* CTA strip */
  .cta-strip { padding: 56px 0 !important; }
  .cta-strip .display { font-size: clamp(26px, 8vw, 48px) !important; }

  /* Instagram */
  .ig-head { margin-bottom: 24px !important; }
  .ig-profile { padding: 18px !important; gap: 12px !important; }
  .ig-profile-handle { font-size: 15px !important; }

  /* Page head */
  .page-head { padding: 76px 0 40px !important; }

  /* Footer compact */
  .footer { padding: 36px 0 0 !important; }
  .footer-grid { gap: 20px !important; padding-bottom: 24px !important; }

  /* Trust strip numbers: compact */
  .trust-item { padding: 24px 12px !important; }
  .trust-item .v { font-size: clamp(32px, 9vw, 56px) !important; }
  .trust-item .k { font-size: 10px !important; letter-spacing: 0.12em !important; }

  /* Offer section */
  .offer-wrap { gap: 40px !important; }
  .offer-content { gap: 16px !important; }
  .offer-meta { gap: 10px !important; }
}

/* ── Tiny screens (≤360px) ── */
@media (max-width: 360px) {
  .shell { padding: 0 12px !important; }
  .hero-left { padding: 20px 14px !important; }
  .service-card { padding: 16px 12px !important; }
  .display-lg { font-size: 24px !important; }
}

/* ═══════════════════════════════════════════════════
   DEFINITIVE MARQUEE — tüm önceki overrides geçersiz
   ═══════════════════════════════════════════════════ */

/* ── 1. ANNOUNCE BAR — sağdan sola, smooth ── */
.announce-marquee {
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  contain: none !important;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%) !important;
}
.announce-track {
  display: inline-flex !important;
  align-items: center !important;
  width: max-content !important;
  will-change: transform !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  animation: marquee-rtl 34s linear infinite !important;
}
.announce-track:hover { animation-play-state: paused !important; }
@keyframes marquee-rtl {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── 2. HERO BRAND MARQUEE — sağdan sola, smooth ── */
.marquee-track {
  display: inline-flex !important;
  align-items: center !important;
  width: max-content !important;
  will-change: transform !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  animation: marquee-rtl 42s linear infinite !important;
}
.marquee-track:hover { animation-play-state: paused !important; }
.hero-marquee {
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  contain: layout !important;
}

/* ── 3. SHOWCASE STRIPS — GPU accelerated ── */
.showcase-track {
  will-change: transform !important;
  /* backface-visibility KALDIRILDI — resimleri görünmez yapar (WebKit bug) */
}
.showcase-strip:nth-child(1) .showcase-track { animation: showcase-left  52s linear infinite !important; }
.showcase-strip:nth-child(2) .showcase-track { animation: showcase-right 44s linear infinite !important; }
.showcase-strip:hover .showcase-track { animation-play-state: paused !important; }
.showcase-strip {
  overflow: hidden !important;
  /* contain: layout KALDIRILDI — resim renderını bozar */
}

/* ── 4. PRESS STRIP — desktop static, mobile scroll ── */
.press-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.press-strip-inner .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}
/* Desktop: static logos visible */
.press-logos-desktop {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  flex-wrap: nowrap;
}
/* Mobile marquee wrapper: hidden by default */
.press-logos-marquee-wrap { display: none; }

@media (max-width: 640px) {
  /* hide static logos, show scrolling marquee */
  .press-logos-desktop    { display: none !important; }
  .press-logos-marquee-wrap {
    display: block !important;
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .press-logos-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    padding-right: 36px;
    will-change: transform;
    backface-visibility: hidden;
    animation: marquee-rtl 22s linear infinite;
  }
  .press-strip-inner {
    gap: 16px;
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
  }
  .press-strip-inner .label { font-size: 9px; }
}

/* prefers-reduced-motion final: kaldırıldı */

/* ══════════════════════════════════════════════════════════
   ANIMATIONS FORCE-ON — Kullanıcı istedi, reduced-motion'ı geçersiz kıl
   (Bu blok tüm @media prefers-reduced-motion kurallarından SONRA gelir)
   ══════════════════════════════════════════════════════════ */

/* Announce bar: sağdan sola */
.announce-track {
  animation: ann-go 30s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}
@keyframes ann-go {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announce-track:hover { animation-play-state: paused !important; }

/* Hero brand marquee: sağdan sola */
.marquee-track {
  animation: brand-go 42s linear infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}
@keyframes brand-go {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track:hover { animation-play-state: paused !important; }

/* Showcase strips */
.showcase-strip:nth-child(1) .showcase-track {
  animation: sc-go   52s linear infinite !important;
  animation-play-state: running !important;
}
.showcase-strip:nth-child(2) .showcase-track {
  animation: sc-go-r 44s linear infinite !important;
  animation-play-state: running !important;
}
@keyframes sc-go   { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes sc-go-r { from { transform: translateX(-50%); } to { transform: translateX(0); }    }
.showcase-strip:hover .showcase-track { animation-play-state: paused !important; }

/* Press logos (mobile marquee) */
.press-logos-track {
  animation: press-go 22s linear infinite !important;
  animation-play-state: running !important;
}
@keyframes press-go { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Reveal animasyonları */
.reveal {
  animation-duration: revert !important;
  transition-duration: 760ms !important;
}

/* Hero text entrances */
.hero-left .lede  { animation: lede-in 900ms var(--ease-expo) 900ms  both !important; }
.hero-actions     { animation: lede-in 900ms var(--ease-expo) 1100ms both !important; }
.hero-meta        { animation: lede-in 900ms var(--ease-expo) 1300ms both !important; }

/* Page transition */
.page-root { animation: page-clean 480ms var(--ease-expo) both !important; }

/* Curtain */
.curtain-logo { transition-duration: 800ms !important; }
.curtain-line { transition-duration: 600ms !important; }
.curtain-city { transition-duration: 600ms !important; }

/* Nav entrance */
.nav { animation: nav-drop 700ms cubic-bezier(0.25,0.46,0.45,0.94) both !important; }

/* Offer badge */
.offer-badge { transition-duration: 720ms !important; }

/* Drawer open: disable pointer events on announce-bar so overlay close button is clickable */
body.drawer-open .announce-bar { pointer-events: none !important; }

/* ─────────────────────────────────────────────
   Cookie banner — reserve space at page bottom
   so footer copyright isn't hidden when banner visible
   (kept at file end to win cascade over media queries)
   ───────────────────────────────────────────── */
body.has-cookie-banner .footer { padding-bottom: 120px !important; }
@media (max-width: 680px) {
  body.has-cookie-banner .footer { padding-bottom: 220px !important; }
}

/* ═══════════════════════════════════════════════════
   CROSS-BROWSER GLOBAL FIXES
   ═══════════════════════════════════════════════════ */

/* iOS touch: remove grey tap highlight, faster response */
a, button, [role="button"], input, label, select, textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* WhatsApp FAB: respect iPhone notch/home indicator */
.whatsapp-fab {
  bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
}

/* ═══════════════════════════════════════════
   HERO C — Image top, text below (Option C)
   ═══════════════════════════════════════════ */
.hero-c {
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding-top: var(--nav-h) !important;
  background: var(--bg) !important;
}

/* ── Image area ── */
.hero-c-stage {
  position: relative;
  width: 100%;
  height: 68vh;
  height: 68dvh; /* iOS Safari address bar aware */
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-c-stage .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-c-stage .hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-c-stage .hero-petals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-c-stage::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
  pointer-events: none;
}
.hero-c-progress {
  position: absolute !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
  right: auto !important;
}

/* ── Text area ── */
.hero-c-content {
  background: var(--bg);
  padding: 32px 0 40px;
  position: relative;
  z-index: 1;
}
.hero-c-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}
.hero-c-inner > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-c-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  min-width: 240px;
}
.hero-c-title {
  color: var(--ink) !important;
  font-size: clamp(32px, 4vw, 60px) !important;
  line-height: 1.1 !important;
  text-shadow: none !important;
}
.hero-c-title em {
  color: var(--rose) !important;
  -webkit-text-fill-color: var(--rose) !important;
  font-style: italic;
}
.hero-c-title .word span { color: var(--ink) !important; }
.hero-c-lede { color: var(--ink-soft) !important; max-width: 48ch; }
.hero-c-content .eyebrow { color: var(--rose); }
.hero-c-btn {
  background: var(--rose-gradient) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(183,110,121,0.35) !important;
}
.hero-c-btn:hover { transform: translateY(-2px) !important; }
.hero-c-link { color: var(--ink) !important; }
.hero-c-meta .hero-meta-item .k { color: var(--rose-dark) !important; }
.hero-c-meta .hero-meta-item .v { color: var(--ink) !important; font-size: 14px; }

/* Marquee: flex flow içine al, absolute positioning'i iptal et */
.hero-c .hero-marquee {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}

/* ── Tablet (769px–960px) ── */
@media (min-width: 769px) and (max-width: 960px) {
  .hero-c-stage { height: 60vh; height: 60dvh; min-height: 360px; }
  .hero-c-inner { gap: 32px; }
  .hero-c-title { font-size: clamp(28px, 4vw, 44px) !important; }
  .hero-c-content { padding: 28px 0 32px; }
  .hero-c-right { min-width: 200px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .hero-c-stage { height: 52vh; height: 52dvh; min-height: 300px; }
  .hero-c-inner { flex-direction: column; gap: 20px; }
  .hero-c-right { padding-top: 0; min-width: auto; }
  .hero-c-content { padding: 20px 0 24px; }
  .hero-c-title { font-size: clamp(26px, 7vw, 38px) !important; }
  .hero-c-lede { font-size: 13px !important; }
  .hero-c-meta { gap: 12px !important; }
  .hero-c-meta .hero-meta-item { gap: 4px !important; }
}
