/* ============================================================
   W by Jawalli — "Çok Yakında" v2
   Mobil öncelikli · pamuk & bambu fışkırmalı · bol animasyon
   ============================================================ */

:root {
  --ink:        #1a1d23;
  --slate:      #363c46;
  --slate-2:    #2b3038;
  --slate-3:    #20242b;
  --cream:      #f5f2ea;
  --gold:       #c9a24a;
  --gold-soft:  #d8be86;
  --gold-hi:    #f7e7bd;
  --bamboo:     #8fbf9a;
  --muted:      rgba(245, 242, 234, 0.65);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--slate-3);
  color: var(--cream);
  line-height: 1.6;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ============================================================
   BACKGROUND
   ============================================================ */
.bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: linear-gradient(165deg, var(--slate) 0%, var(--slate-2) 55%, var(--slate-3) 100%);
}
.bg__orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6; will-change: transform; }
.bg__orb--1 { width: max(46vw, 340px); height: max(46vw, 340px); background: radial-gradient(circle, rgba(201,162,74,0.55), transparent 70%); top: -12%; right: -10%; animation: orb 17s ease-in-out infinite; }
.bg__orb--2 { width: max(40vw, 300px); height: max(40vw, 300px); background: radial-gradient(circle, rgba(143,191,154,0.30), transparent 70%); bottom: -14%; left: -10%; animation: orb 23s ease-in-out infinite reverse; }
.bg__orb--3 { width: max(28vw, 220px); height: max(28vw, 220px); background: radial-gradient(circle, rgba(216,190,134,0.42), transparent 70%); top: 40%; left: 46%; animation: orb 27s ease-in-out infinite; }
@keyframes orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(6%, -5%) scale(1.14); }
  66% { transform: translate(-5%, 6%) scale(0.92); }
}
.bg__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
}
.bg__noise {
  position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(16,18,22,0.55) 100%);
}

/* ============================================================
   PARTICLE CANVAS (pamuk & bambu)
   ============================================================ */
#burst { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* ============================================================
   FLOATING SOCKS — açık renkler, telefonda da görünür
   ============================================================ */
.floaters { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.floater { position: absolute; width: clamp(52px, 13vw, 110px); opacity: 0.95; will-change: transform; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.35)); }
.floater--a { top: 7%; right: 5%;  animation: float 7s ease-in-out infinite; }
.floater--b { top: 13%; left: 4%;  animation: float 9s ease-in-out infinite 0.7s; }
.floater--c { bottom: 9%; right: 8%; width: clamp(44px, 10vw, 90px); animation: float 8s ease-in-out infinite 1.4s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-9deg); }
  50% { transform: translateY(-24px) rotate(7deg); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.hold {
  position: relative; z-index: 2;
  min-height: 100svh; width: min(720px, 92vw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4.5rem 0 1.5rem;
}
.hold__inner { width: 100%; }

/* ---------- Emblem ---------- */
.brand {
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(24px) scale(0.94);
  animation: riseIn 1.1s var(--ease) 0.15s forwards;
}
.brand__mark {
  position: relative; width: clamp(112px, 30vw, 152px); aspect-ratio: 1;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.brand__mark::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(216,190,134,0.5);
  animation: spin 16s linear infinite;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 11px; border-radius: 50%;
  border: 1px solid rgba(216,190,134,0.18);
  animation: spin 24s linear infinite reverse;
}
.brand__glow {
  position: absolute; inset: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,190,134,0.28), transparent 65%);
  animation: breathe 4.5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.75; } 50% { transform: scale(1.16); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.brand__w {
  font-family: var(--font-serif); font-size: clamp(3.4rem, 15vw, 4.9rem); font-weight: 500;
  position: relative; z-index: 1;
  text-shadow: 0 0 34px rgba(216,190,134,0.35);
}
.brand__rule { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; color: var(--gold-soft); }
.brand__rule i { width: clamp(22px, 6vw, 34px); height: 1px; background: currentColor; opacity: 0.7; }
.brand__rule em { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; letter-spacing: 0.06em; }
.brand__name { font-size: clamp(0.85rem, 2.6vw, 1.05rem); letter-spacing: 0.55em; font-weight: 600; padding-left: 0.55em; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: clamp(0.64rem, 2vw, 0.76rem); letter-spacing: 0.24em; font-weight: 600; color: var(--gold-soft);
  padding: 0.5rem 1.1rem; border: 1px solid rgba(216,190,134,0.32); border-radius: 100px;
  margin-bottom: 1.7rem;
  background: rgba(216,190,134,0.06);
  box-shadow: 0 0 24px rgba(216,190,134,0.12) inset;
  opacity: 0; transform: translateY(24px);
  animation: rise 1s var(--ease) 0.3s forwards;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: relative; flex-shrink: 0; }
.eyebrow__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--gold); animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3.2); opacity: 0; } }

/* ---------- Headline ---------- */
.headline {
  position: relative;
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(3.1rem, 14vw, 6.2rem); line-height: 0.98; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.headline::before {
  content: ""; position: absolute; inset: -18% -8%;
  background: radial-gradient(ellipse, rgba(216,190,134,0.14), transparent 62%);
  animation: breathe 5s ease-in-out infinite; pointer-events: none;
}
.headline__line { display: block; overflow: hidden; position: relative; z-index: 1; }
.headline__line > span {
  display: inline-block; transform: translateY(112%);
  animation: lineUp 1.15s var(--ease) forwards;
}
.headline__line:nth-child(5) > span { animation-delay: 0.45s; }
.headline__line:nth-child(6) > span { animation-delay: 0.62s; }
.headline em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-soft) 10%, var(--gold-hi) 32%, var(--gold) 52%, var(--gold-hi) 72%, var(--gold-soft) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 3.2s linear infinite;
}
@keyframes shimmer { to { background-position: -220% center; } }
@keyframes lineUp { to { transform: translateY(0); } }

/* twinkling sparks around headline */
.spark {
  position: absolute; z-index: 2; color: var(--gold-hi); pointer-events: none;
  text-shadow: 0 0 14px rgba(216,190,134,0.8);
  animation: twinkle 2.6s ease-in-out infinite;
  font-size: 1rem;
}
.spark--1 { top: -10%; left: 8%;  font-size: 1.25rem; animation-delay: 0s; }
.spark--2 { top: 16%;  right: 3%; font-size: 0.85rem; animation-delay: 0.7s; }
.spark--3 { bottom: -6%; left: 16%; font-size: 0.8rem;  animation-delay: 1.3s; }
.spark--4 { bottom: 12%; right: 12%; font-size: 1.1rem; animation-delay: 1.9s; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(90deg); }
}

/* ---------- Lead ---------- */
.lead {
  max-width: 32rem; margin: 0 auto 1.7rem; color: var(--muted);
  font-size: clamp(0.98rem, 2.6vw, 1.14rem);
  opacity: 0; transform: translateY(24px);
  animation: rise 1s var(--ease) 0.85s forwards;
}
.lead strong { color: var(--cream); font-weight: 600; }

/* ---------- Fabric chips ---------- */
.chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin-bottom: 2.2rem;
  opacity: 0; transform: translateY(24px);
  animation: rise 1s var(--ease) 1s forwards;
}
.chip {
  font-size: clamp(0.78rem, 2.2vw, 0.88rem); font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.chip--1 { animation: chipFloat 4.2s ease-in-out infinite; }
.chip--2 { animation: chipFloat 4.2s ease-in-out infinite 0.8s; }
.chip--3 { animation: chipFloat 4.2s ease-in-out infinite 1.6s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- Notify form ---------- */
.notify {
  max-width: 30rem; margin: 0 auto;
  opacity: 0; transform: translateY(24px);
  animation: rise 1s var(--ease) 1.15s forwards;
}
.notify__field {
  display: flex; gap: 0.5rem; padding: 0.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px; transition: border-color 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.notify__field:focus-within {
  border-color: var(--gold-soft); background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(216,190,134,0.12);
}
.notify__field input {
  flex: 1; min-width: 0; background: none; border: none; color: var(--cream);
  padding: 0.7rem 0 0.7rem 1.1rem; font-size: 0.96rem;
}
.notify__field input::placeholder { color: rgba(245,242,234,0.5); }
.notify__field input:focus { outline: none; }
.notify__field button {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  background: var(--cream); color: var(--ink); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.35rem; border-radius: 100px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), color 0.4s;
}
.notify__field button svg { transition: transform 0.5s var(--ease); }
.notify__field button::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  transform: translateY(101%); transition: transform 0.5s var(--ease);
}
.notify__field button:hover::before { transform: translateY(0); }
.notify__field button:hover svg { transform: translateX(4px); }
.notify__field button > * { position: relative; z-index: 1; }
.notify__note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted); min-height: 1.2em; transition: color 0.3s; }
.notify__note.ok { color: var(--gold-soft); }
.notify__note.error { color: #e5a0a0; }

/* ---------- Footer ---------- */
.foot {
  width: 100%; margin-top: auto; padding-top: 2.2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem;
  font-size: 0.8rem; color: rgba(245,242,234,0.42);
  opacity: 0; animation: rise 1s var(--ease) 1.3s forwards;
}
.foot a { transition: color 0.3s; }
.foot a:hover { color: var(--gold-soft); }

/* ---------- Shared ---------- */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes riseIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .hold { padding: 4rem 0 1.2rem; }
  .notify__field { flex-direction: column; padding: 0.55rem; border-radius: 22px; }
  .notify__field input { padding: 0.65rem 1rem; text-align: center; }
  .notify__field button { justify-content: center; padding: 0.85rem; }
  .foot { flex-direction: column; gap: 0.4rem; }
  .floater--a { top: 5%; right: 4%; }
  .floater--b { top: 9%; left: 3%; }
  .floater--c { bottom: 7%; right: 5%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .brand, .eyebrow, .lead, .chips, .notify, .foot { opacity: 1; transform: none; }
  .headline__line > span { transform: none; }
  .headline em { -webkit-text-fill-color: var(--gold-soft); color: var(--gold-soft); background: none; }
  #burst { display: none; }
  .spark { display: none; }
}
