/* =====================================================================
   BLACK RATEL — dark · gold · metalik
   Font: Playfair Display (başlık, etiket) + Manrope (gövde)
   ===================================================================== */

:root {
  --black: #000000;
  --soot: #141110;
  --ash: #241f1c;
  --gold: #c9a227;
  --gold-light: #e9d48a;
  --champagne: #f5ebcb;
  --smoke: #8c857a;
  --ink: #f2ede2;

  /* Atmosfer renkleri (JS data-note'a göre değiştirir) */
  --atmos-a: 201, 162, 39;
  --atmos-b: 120, 70, 20;

  --font-headline: "Playfair Display", "Libre Bodoni", Georgia, serif;
  --font-display: var(--font-headline);
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --metal: linear-gradient(105deg, #7a5d14 0%, #c9a227 22%, #f5ebcb 45%, #c9a227 60%, #8a6a18 80%, #e9d48a 100%);
  --hair: 1px solid rgba(201, 162, 39, .28);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1360px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* İnce altın scrollbar */
html { scrollbar-width: thin; scrollbar-color: rgba(201,162,39,.55) var(--black); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #8a6a18, #c9a227 50%, #8a6a18); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Seçim */
::selection { background: var(--gold); color: var(--black); }
::-moz-selection { background: var(--gold); color: var(--black); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--champagne);
}

/* Etiket stili: BLACK RATEL logosundaki gibi, 500 ağırlık, geniş aralık */
.label, .nav__name, .hero__pre, .feature__tag, .note__time, .modal__kicker, .grid-nav__count, .ticker span, .drawer__social a {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-style: normal;
}

h3 { letter-spacing: .02em; line-height: 1.05; }
.card__body h3, .modal__notes dd { font-weight: 600; letter-spacing: .04em; }
.modal__notes dd { text-transform: none; letter-spacing: 0; font-weight: 500; }
.story__facts strong, .card__price, .modal__price { font-weight: 600; }
.manifesto__text { font-weight: 500; text-transform: none; letter-spacing: 0; }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 4px;
}

/* Metalik altın yazı */
.metal, .hero__title em, .feature h2:not(.metal-chars), .contact h2:not(.metal-chars), .metal-chars .ch {
  background: var(--metal);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s linear infinite;
}

@keyframes sheen {
  from { background-position: 0% 50%; }
  to   { background-position: 220% 50%; }
}

/* ------------------------------------------------------------------
   Placeholder slot: MJ / Flow görselleri buraya
   ------------------------------------------------------------------ */
.slot {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(var(--atmos-a), .10), transparent 60%),
    var(--soot);
  border: 1px dashed rgba(201, 162, 39, .35);
  overflow: hidden;
}

.slot__label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--smoke);
  pointer-events: none;
}

.slot > img, .slot > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.slot.has-media { border-style: solid; border-color: rgba(201,162,39,.18); }
.slot.has-media .slot__label { display: none; }

/* ------------------------------------------------------------------
   Açılış perdesi
   ------------------------------------------------------------------ */
.curtain {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: grid; place-items: center;
  transition: opacity 1s var(--ease-in-out), visibility 1s;
}

.curtain__logo {
  width: clamp(180px, 26vw, 320px);
  filter: drop-shadow(0 0 30px rgba(201,162,39,.35));
  animation: breathe 1.6s var(--ease-in-out) infinite alternate;
}

@keyframes breathe {
  from { opacity: .55; transform: scale(.98); }
  to   { opacity: 1;   transform: scale(1); }
}

.curtain.is-done { opacity: 0; visibility: hidden; }

/* ------------------------------------------------------------------
   Atmosfer: sabit arka plan katmanı
   ------------------------------------------------------------------ */
.atmos {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dust { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }

.atmos__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .26;
  transition: background 2.4s var(--ease-in-out);
  will-change: transform;
}

.atmos__glow--a {
  width: 60vmax; height: 60vmax;
  left: -20vmax; top: -10vmax;
  background: rgba(var(--atmos-a), .22);
  animation: driftA 26s ease-in-out infinite alternate;
}

.atmos__glow--b {
  width: 50vmax; height: 50vmax;
  right: -18vmax; bottom: -14vmax;
  background: rgba(var(--atmos-b), .28);
  animation: driftB 32s ease-in-out infinite alternate;
}

@keyframes driftA {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(14vmax, 10vmax) scale(1.15); }
}

@keyframes driftB {
  from { transform: translate(0, 0) scale(1.1); }
  to   { transform: translate(-12vmax, -8vmax) scale(.95); }
}

.atmos__grain {
  position: absolute; inset: -50%;
  opacity: 0; display: none;
  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 type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(4) infinite;
}

@keyframes grain {
  0% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-3%); } 75% { transform: translate(-1%,-1%); } 100% { transform: translate(0,0); }
}

main, .nav, .footer { position: relative; z-index: 1; }
section[id], #top { scroll-margin-top: 96px; }
@media (max-width: 820px) { section[id] { scroll-margin-top: 84px; } }
main { overflow-x: clip; }

/* ------------------------------------------------------------------
   Navigasyon
   ------------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  transition: padding .5s var(--ease-out), background .5s;
}

.nav.is-scrolled {
  padding: 12px var(--gutter);
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(14px);
  border-bottom: var(--hair);
}

.nav__brand { display: flex; align-items: center; gap: 12px; }

.nav__mark {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201,162,39,.25));
}

.nav__name {
  font-size: 15px;
  color: var(--champagne);
}

.nav__links { display: flex; gap: 36px; }

.nav__links a {
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--smoke);
  position: relative;
  transition: color .3s;
}

.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1px; background: var(--gold);
  transition: right .4s var(--ease-out);
}

.nav__links a:hover { color: var(--champagne); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  justify-self: end;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold-light);
  padding: 10px 22px;
  border: 1px solid rgba(201,162,39,.5);
  transition: background .3s, color .3s;
}

.nav__cta:hover { background: var(--gold); color: var(--black); }

.nav__burger {
  display: none;
  justify-self: end;
  width: 40px; height: 40px;
  background: none; border: 0;
  flex-direction: column; justify-content: center; gap: 6px;
}

.nav__burger span { display: block; height: 1px; background: var(--gold-light); transition: transform .3s; }

/* ------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

.hero__spray {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
}

.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 620px);
  grid-template-areas:
    "bottle copy"
    "bottle press"
    "bottle hint";
  column-gap: clamp(32px, 7vw, 120px);
  align-items: center;
  width: 100%;
  max-width: var(--max);
}

.bottle {
  grid-area: bottle;
  margin: 0;
  position: relative;
  aspect-ratio: 5 / 9;
  transform: translateY(0);
  transition: transform .18s var(--ease-out);
}

.bottle.is-pressed { transform: translateY(6px) scale(.985) !important; }

.hero.has-cursor .bottle,
.hero.has-cursor .hero__copy { transition: transform .9s var(--ease-out); }
.hero.has-cursor .bottle.is-pressed { transition: transform .18s var(--ease-out); }

.bottle__slot {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  border-style: dashed;
}

.bottle__outline {
  width: 62%;
  color: var(--gold);
  opacity: .9;
  filter: drop-shadow(0 0 18px rgba(201,162,39,.25));
}

.bottle__shadow {
  position: absolute;
  left: 10%; right: 10%; bottom: -34px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201,162,39,.32), transparent 70%);
  filter: blur(10px);
}

.hero__copy { grid-area: copy; align-self: end; padding-bottom: 36px; }

.hero__pre {
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(42px, 6.6vw, 100px);
  line-height: .98;
  letter-spacing: -.025em;
  font-weight: 700;
  display: flex; flex-wrap: wrap; column-gap: .22em;
  font-weight: 100;
    letter-spacing: -10px;
    font-size: 130px;
}

.hero__title .w { display: inline-block; overflow: hidden; padding: .2em .04em .05em; margin: -.2em -.04em -.05em; }
.hero__title .w > * , .hero__title .w { transition: none; }

.hero__title em { font-style: normal; }

.hero__sub {
  max-width: 30ch;
  margin-top: 30px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.4;
  letter-spacing: .005em;
  color: rgba(245,235,203,.82);
}


/* "Parfüme sık" tuşu */
.press {
  grid-area: press;
  justify-self: start;
  position: relative;
  width: 132px; height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.6);
  background: radial-gradient(circle at 40% 35%, #2a2318, #0d0b09 70%);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .12em;
  display: grid; place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(245,235,203,.25),
    inset 0 -8px 20px rgba(0,0,0,.6),
    0 20px 40px rgba(0,0,0,.6),
    0 0 0 0 rgba(201,162,39,.35);
  transition: transform .15s var(--ease-out), box-shadow .3s;
  margin-top: 8px;
}

.press__core { position: relative; z-index: 2; }

.press__ring {
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.35);
  animation: pulse 3.2s var(--ease-in-out) infinite;
}

.press__ring--2 { inset: -30px; animation-delay: 1.4s; opacity: .5; }

@keyframes pulse {
  0%   { transform: scale(.92); opacity: .6; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

.press:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(245,235,203,.3), inset 0 -8px 20px rgba(0,0,0,.6), 0 26px 44px rgba(0,0,0,.6), 0 0 40px rgba(201,162,39,.25); }
.press.is-pressed, .press:active { transform: translateY(4px) scale(.97); }
.press.is-pressed .press__ring { animation-play-state: paused; opacity: 0; }

.press__hint {
  grid-area: hint;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--smoke);
  margin-top: 16px;
  transition: opacity .4s;
}

.hero.is-sprayed .press__hint { opacity: .45; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  width: 1px; height: 64px;
  background: rgba(201,162,39,.2);
  overflow: hidden;
}

.hero__scroll span {
  position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--gold-light);
  animation: scrollHint 2.2s var(--ease-in-out) infinite;
}

@keyframes scrollHint {
  from { transform: translateY(-100%); }
  to   { transform: translateY(260%); }
}

/* ------------------------------------------------------------------
   Manifesto
   ------------------------------------------------------------------ */
.manifesto {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  display: grid; place-items: center;
}

.manifesto__mark {
  width: clamp(120px, 16vw, 200px);
  margin-bottom: 40px;
  opacity: .9;
  filter: drop-shadow(0 0 24px rgba(201,162,39,.25));
}

.manifesto__text {
  max-width: 30ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.22;
  color: var(--champagne);
}

.manifesto__text em { font-style: italic; color: var(--gold-light); }

/* ------------------------------------------------------------------
   Bölüm başlıkları
   ------------------------------------------------------------------ */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  border-bottom: var(--hair);
  margin-bottom: 56px;
}

.section-head h2 { font-size: clamp(36px, 4.8vw, 72px); }

.section-head p {
  max-width: 40ch;
  justify-self: end;
  color: var(--smoke);
  font-size: 15px;
}

/* ------------------------------------------------------------------
   Koleksiyon grid
   ------------------------------------------------------------------ */
.collection { padding: 40px 0 clamp(80px, 10vw, 140px); }

.grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card { position: relative; }

.card { perspective: 1000px; }

.card__link {
  display: block;
  position: relative;
  background: rgba(20,17,16,.6);
  transition: background .5s, transform .6s var(--ease-out), box-shadow .6s;
  transform-style: preserve-3d;
}

.card__link.is-tilting { transition: background .5s, box-shadow .6s; }
.card__link:hover { box-shadow: 0 30px 60px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(201,162,39,.25); }

.card__shine {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--sx, 50%) var(--sy, 50%), rgba(245,235,203,.14), transparent 45%);
  opacity: 0;
  transition: opacity .4s;
}

.card__link:hover .card__shine { opacity: 1; }

.card__media {
  aspect-ratio: 4 / 5;
  border: 0;
  border-bottom: var(--hair);
  transition: transform .8s var(--ease-out);
}

.card__link:hover .card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(var(--atmos-a), .18), transparent 65%);
}

.card__body {
  padding: 22px 24px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "h price" "p price";
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
}

.card__body h3 {
  grid-area: h; font-size: 22px;
  background: linear-gradient(100deg, var(--champagne) 35%, #fff 50%, var(--gold-light) 65%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: background-position 1.1s var(--ease-out);
}
.card__link:hover .card__body h3 { background-position: 0 0; }
.card__body p { grid-area: p; font-size: 13px; color: var(--smoke); }

.card__price {
  grid-area: price;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-light);
  white-space: nowrap;
}

.card__link:hover { background: rgba(36,31,28,.9); }

/* ------------------------------------------------------------------
   Notalar
   ------------------------------------------------------------------ */
.notes { padding: 40px 0 clamp(80px, 10vw, 140px); }

.notes__track {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: clamp(60px, 9vw, 140px);
}

.note {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.note:nth-child(even) { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.note:nth-child(even) .note__body { justify-self: end; text-align: right; }
.note:nth-child(even) .note__body p { margin-left: auto; }
.note:nth-child(even) .note__media { order: 2; }

.note__media { aspect-ratio: 4 / 5; width: min(100%, 560px); justify-self: center; }
.note__media > video { filter: saturate(1.05) contrast(1.04); }

.note__time {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 18px;
}

.note__body h3 { font-size: clamp(32px, 3.8vw, 54px); margin-bottom: 20px; }
.note__body p { max-width: 38ch; color: rgba(242,237,226,.72); font-size: 17px; }

/* ------------------------------------------------------------------
   Hikâye
   ------------------------------------------------------------------ */
.story {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

.story__media { aspect-ratio: 16 / 11; }

.story__body h2 { font-size: clamp(36px, 4.8vw, 72px); margin-bottom: 24px; }
.story__body > p { max-width: 42ch; color: rgba(242,237,226,.72); font-size: 17px; }

.story__facts {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--hair);
}

.story__facts li {
  padding: 22px 16px 0 0;
  display: grid;
  gap: 4px;
}

.story__facts li + li { border-left: var(--hair); padding-left: 16px; }

.story__facts strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  color: var(--gold-light);
}

.story__facts span { font-size: 13px; color: var(--smoke); }

/* ------------------------------------------------------------------
   Öne çıkan
   ------------------------------------------------------------------ */
.feature { padding: 0 var(--gutter) clamp(80px, 10vw, 140px); }

.feature__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: var(--hair);
  background: linear-gradient(160deg, rgba(36,31,28,.7), rgba(7,6,6,.4));
}

.feature__media { aspect-ratio: 4 / 5; border: 0; border-right: var(--hair); }

.feature__body {
  padding: clamp(32px, 5vw, 80px);
  display: grid;
  align-content: center;
  gap: 20px;
}

.feature__tag { font-size: 12px; letter-spacing: .14em; color: var(--gold); }
.feature__body h2 { font-size: clamp(40px, 5.6vw, 88px); }
.feature__body p { max-width: 40ch; color: rgba(242,237,226,.72); font-size: 17px; }

.feature__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.btn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 13px;
  letter-spacing: .12em;
  border: 1px solid var(--gold);
  transition: background .3s, color .3s, transform .3s var(--ease-out);
}

.btn--gold { background: var(--metal); background-size: 220% 100%; color: var(--black); animation: sheen 6s linear infinite; }
.btn--gold:hover { transform: translateY(-2px); }
.btn--ghost { color: var(--gold-light); }
.btn--ghost:hover { background: rgba(201,162,39,.12); }

/* ------------------------------------------------------------------
   İletişim
   ------------------------------------------------------------------ */
.contact {
  padding: clamp(80px, 12vw, 180px) var(--gutter);
  text-align: center;
  border-top: var(--hair);
}

.contact h2 { font-size: clamp(40px, 6.6vw, 104px); }
.contact p { margin: 20px auto 0; color: var(--smoke); max-width: 40ch; }

.contact__links {
  margin-top: 48px;
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

.contact__links a {
  padding: 14px 26px;
  border: 1px solid rgba(201,162,39,.4);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold-light);
  transition: background .3s, color .3s;
}

.contact__links a:hover { background: var(--gold); color: var(--black); }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px var(--gutter);
  border-top: var(--hair);
  font-size: 12px;
  color: var(--smoke);
}

.footer__mark { height: 28px; width: auto; opacity: .8; }
.footer nav { display: flex; gap: 24px; }
.footer nav a:hover { color: var(--champagne); }

/* ------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stage { grid-template-columns: minmax(180px, 260px) 1fr; }
}

@media (max-width: 820px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 100px; }
  .hero__stage {
    grid-template-columns: 1fr;
    grid-template-areas: "bottle" "copy" "press" "hint";
    justify-items: center;
    text-align: center;
    row-gap: 8px;
  }
  .bottle { width: min(42vw, 180px); }
  .hero__copy { align-self: auto; padding: 24px 0 8px; }
  .hero__title { justify-content: center; letter-spacing: -4px; }
  .hero__sub { margin-inline: auto; }
  .press { justify-self: center; }
  .feature__body h2 { font-size: clamp(28px, 8.8vw, 72px); }
  .contact h2 { font-size: clamp(24px, 8.8vw, 72px); }

  .section-head { grid-template-columns: 1fr; }
  .section-head p { justify-self: start; }
  .note, .note:nth-child(even) { grid-template-columns: 1fr; }
  .note:nth-child(even) .note__media { order: 0; }
  .story { grid-template-columns: 1fr; }
  .feature__inner { grid-template-columns: 1fr; }
  .feature__media { border-right: 0; border-bottom: var(--hair); }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 520px) {
  .card__body h3 { font-size: 22px; }
  .story__facts { grid-template-columns: 1fr; }
  .story__facts li + li { border-left: 0; border-top: var(--hair); padding: 16px 0 0; margin-top: 16px; }
}



/* ------------------------------------------------------------------
   Kelime kelime maskeli giriş (data-split)
   ------------------------------------------------------------------ */
.ww { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .2em .04em .1em; margin: -.2em -.04em -.1em; }
.wi { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); transition-delay: calc(var(--i, 0) * 35ms); }
.is-in .wi { transform: none; }

/* ------------------------------------------------------------------
   Off-canvas menü (mobil)
   ------------------------------------------------------------------ */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(7,6,6,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .5s;
}
.drawer-backdrop.is-open { opacity: 1; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(84vw, 380px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201,162,39,.14), transparent 55%),
    #0c0a09;
  border-left: var(--hair);
  display: flex; flex-direction: column;
  padding: 22px 28px calc(28px + env(safe-area-inset-bottom));
  transform: translateX(104%);
  transition: transform .7s var(--ease-out), visibility .7s;
  visibility: hidden;
}
.drawer.is-open { transform: none; visibility: visible; }

.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__logo { height: 40px; width: auto; }
.drawer__close { width: 40px; height: 40px; background: none; border: 1px solid rgba(201,162,39,.4); color: var(--gold-light); display: grid; place-items: center; }

.drawer__links { display: grid; margin-top: 48px; border-top: var(--hair); }
.drawer__links a {
  display: block;
  padding: 18px 0;
  border-bottom: var(--hair);
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--champagne);
  overflow: hidden;
}
.drawer__links a span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .8s var(--ease-out), opacity .5s;
}
.drawer.is-open .drawer__links a span { transform: none; opacity: 1; }
.drawer.is-open .drawer__links a:nth-child(1) span { transition-delay: .15s; }
.drawer.is-open .drawer__links a:nth-child(2) span { transition-delay: .21s; }
.drawer.is-open .drawer__links a:nth-child(3) span { transition-delay: .27s; }
.drawer.is-open .drawer__links a:nth-child(4) span { transition-delay: .33s; }
.drawer.is-open .drawer__links a:nth-child(5) span { transition-delay: .39s; }

.drawer__foot { margin-top: auto; display: grid; gap: 20px; }
.drawer__foot .btn { text-align: center; }
.drawer__social { display: flex; gap: 20px; font-size: 13px; letter-spacing: .08em; color: var(--smoke); }
.drawer__social a:hover { color: var(--gold-light); }

.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ------------------------------------------------------------------
   Yukarı dön
   ------------------------------------------------------------------ */
.totop {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(7,6,6,.7);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(16px) scale(.9);
  pointer-events: none;
  transition: opacity .5s, transform .6s var(--ease-out), color .3s;
}
.totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { color: var(--champagne); }
.totop__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.totop__progress { stroke-dasharray: 138.2; stroke-dashoffset: var(--p, 138.2); transition: stroke-dashoffset .2s linear; }
.totop > svg:last-child { position: relative; transition: transform .4s var(--ease-out); }
.totop:hover > svg:last-child { transform: translateY(-2px); }

/* ------------------------------------------------------------------
   Mobil alt bar
   ------------------------------------------------------------------ */
.bottombar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(10,8,7,.82);
  backdrop-filter: blur(14px);
  border-top: var(--hair);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
}
.bottombar a {
  display: grid; justify-items: center; gap: 5px;
  padding: 6px 0;
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--smoke);
  transition: color .3s;
}
.bottombar a svg { width: 22px; height: 22px; transition: transform .4s var(--ease-out); }
.bottombar a.is-active, .bottombar a:hover { color: var(--gold-light); }
.bottombar a.is-active svg { transform: translateY(-2px); }

@media (max-width: 820px) {
  .bottombar { display: grid; }
  .totop { right: 14px; bottom: calc(86px + env(safe-area-inset-bottom)); width: 44px; height: 44px; }
  .grid-nav { padding-right: calc(var(--gutter) + 40px); }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}



/* ------------------------------------------------------------------
   WOW: data-wow="fade-up | fade-left | fade-right | zoom | clip"
   data-delay="ms"
   ------------------------------------------------------------------ */
[data-wow] {
  --d: 0ms;
  transition: opacity 1.1s var(--ease-out) var(--d), transform 1.2s var(--ease-out) var(--d), filter 1s var(--ease-out) var(--d);
}
[data-wow="fade-up"]    { opacity: 0; transform: translateY(36px); }
[data-wow="fade-left"]  { opacity: 0; transform: translateX(48px); }
[data-wow="fade-right"] { opacity: 0; transform: translateX(-48px); }
[data-wow="zoom"]       { opacity: 0; transform: scale(.82); filter: blur(6px); }
[data-wow="clip"]       { position: relative; }
[data-wow="clip"]::after {
  content: ""; position: absolute; inset: -1px; z-index: 3;
  background: var(--black);
  transform-origin: 50% 0;
  transition: transform 1.3s var(--ease-in-out) var(--d);
}
[data-wow="clip"] > img, [data-wow="clip"] > video { transform: scale(1.12); transition: transform 1.6s var(--ease-out) var(--d); }
[data-wow].is-in        { opacity: 1; transform: none; filter: none; }
[data-wow="clip"].is-in::after { transform: scaleY(0); }
[data-wow="clip"].is-in > img, [data-wow="clip"].is-in > video { transform: none; }

/* ------------------------------------------------------------------
   Metin efektleri
   ------------------------------------------------------------------ */
/* harf harf: bulanıktan netleşerek yükselir */
.ch-word { display: inline-block; white-space: nowrap; }

.ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(.45em) rotate(4deg);
  filter: blur(8px);
  transition: opacity .7s var(--ease-out), transform 1s var(--ease-out), filter .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 32ms);
  transform-origin: 20% 100%;
}
.ch--space { width: .28em; }
.is-in .ch { opacity: 1; transform: none; filter: none; }

/* metal-chars: gradyan harflerin üzerinde, sheen kaydırmalı */
.metal-chars { color: var(--champagne); }
.metal-chars .ch { animation: none; background-size: 1400% 100%; background-position: calc(var(--i, 0) * 7%) 50%; }

/* shimmer: görünürken üzerinden bir ışık geçer */
[data-text="shimmer"] {
  background: linear-gradient(100deg, var(--champagne) 30%, #fff 50%, var(--champagne) 70%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
[data-text="shimmer"].is-in { animation: shimmer 1.8s var(--ease-in-out) .2s forwards; }
@keyframes shimmer { to { background-position: 0 0; } }

/* roll: hover'da yazı yukarı kayar, kopyası alttan gelir */
[data-roll] { position: relative; display: inline-block; overflow: hidden; vertical-align: top; }
[data-roll] .roll { display: block; transition: transform .55s var(--ease-out); }
[data-roll] .roll--b { position: absolute; left: 0; top: 100%; color: var(--gold-light); }
[data-roll]:hover .roll { transform: translateY(-100%); }
.nav__links a[data-roll]::after { bottom: 0; }

/* ------------------------------------------------------------------
   Nota şeridi
   ------------------------------------------------------------------ */
.ticker {
  overflow: hidden;
  border-top: var(--hair); border-bottom: var(--hair);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker span {
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(245,235,203,.55);
  white-space: nowrap;
}
.ticker i {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: .7;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------
   Özel imleç (sadece fare olan cihazlarda)
   ------------------------------------------------------------------ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor * { cursor: none !important; }
  .cursor { display: block; position: fixed; left: 0; top: 0; z-index: 200; pointer-events: none; }
  .cursor__dot {
    position: absolute; left: 0; top: 0;
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--gold-light);
    transition: transform .25s var(--ease-out), opacity .3s;
  }
  .cursor__ring {
    position: absolute; left: 0; top: 0;
    width: 40px; height: 40px; margin: -20px 0 0 -20px;
    border-radius: 50%;
    border: 1px solid rgba(201,162,39,.7);
    display: grid; place-items: center;
    transition: width .45s var(--ease-out), height .45s var(--ease-out), margin .45s var(--ease-out), background .4s, border-color .4s, opacity .3s;
  }
  .cursor__label {
    font-size: 11px; letter-spacing: .14em;
    color: var(--black);
    opacity: 0; transform: scale(.6);
    transition: opacity .3s, transform .4s var(--ease-out);
  }
  .cursor.is-hover .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; border-color: rgba(233,212,138,.9); }
  .cursor.is-label .cursor__ring { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: var(--gold); border-color: var(--gold); }
  .cursor.is-label .cursor__dot { opacity: 0; }
  .cursor.is-label .cursor__label { opacity: 1; transform: none; }
  .cursor.is-down .cursor__dot { transform: scale(2.2); }
  .cursor.is-down .cursor__ring { transform: scale(.85); }
  .cursor.is-hidden { opacity: 0; }
}

/* ------------------------------------------------------------------
   Ürün detay modalı
   ------------------------------------------------------------------ */
.modal { position: fixed; inset: 0; z-index: 80; display: grid; grid-template-columns: minmax(0, 1fr); place-items: center; padding: 20px; visibility: hidden; }
.modal.is-open { visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(7,6,6,.72);
  backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .6s;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: linear-gradient(160deg, #1a1614, #0a0908);
  border: var(--hair);
  overflow: hidden;
  opacity: 0; transform: translateY(40px) scale(.96);
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-out);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; transition-delay: .1s; }
.modal__close {
  position: absolute; right: 16px; top: 16px; z-index: 2;
  width: 44px; height: 44px;
  background: rgba(7,6,6,.5); border: 1px solid rgba(201,162,39,.4); color: var(--gold-light);
  display: grid; place-items: center;
  transition: background .3s, color .3s;
}
.modal__close:hover { background: var(--gold); color: var(--black); }
.modal__media { border: 0; border-right: var(--hair); min-height: 420px; }
.modal__body { padding: clamp(28px, 4vw, 56px); display: grid; align-content: center; gap: 18px; overflow: auto; min-width: 0; }
.modal__body > * { min-width: 0; }
.modal__kicker { font-size: 12px; letter-spacing: .14em; color: var(--gold); }
.modal__title { font-size: clamp(34px, 4.2vw, 60px); }
.modal__desc { max-width: 40ch; color: rgba(242,237,226,.72); font-size: 16px; }
.modal__notes { margin: 8px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--hair); }
.modal__notes > div { padding: 16px 12px 0 0; }
.modal__notes > div + div { border-left: var(--hair); padding-left: 14px; }
.modal__notes dt { font-size: 11px; letter-spacing: .14em; color: var(--gold); margin-bottom: 6px; }
.modal__notes dd { margin: 0; font-family: var(--font-display); font-size: 18px; color: var(--champagne); line-height: 1.25; }
.modal__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.modal__price { font-family: var(--font-display); font-size: 30px; color: var(--gold-light); }

/* modal içi kademeli giriş */
.modal__body > * { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .9s var(--ease-out); }
.modal.is-open .modal__body > * { opacity: 1; transform: none; }
.modal.is-open .modal__body > :nth-child(1) { transition-delay: .25s; }
.modal.is-open .modal__body > :nth-child(2) { transition-delay: .32s; }
.modal.is-open .modal__body > :nth-child(3) { transition-delay: .39s; }
.modal.is-open .modal__body > :nth-child(4) { transition-delay: .46s; }
.modal.is-open .modal__body > :nth-child(5) { transition-delay: .53s; }

@media (max-width: 820px) {
  .modal { padding: 0; align-items: end; }
  .modal__panel { grid-template-columns: 1fr; grid-template-rows: auto auto; max-height: 92vh; overflow: auto; border-left: 0; border-right: 0; transform: translateY(60px); }
  .modal__media { min-height: 0; height: 64vw; max-height: 340px; aspect-ratio: auto; border-right: 0; border-bottom: var(--hair); }
  .modal__body { padding: 24px 22px calc(28px + env(safe-area-inset-bottom)); overflow: visible; }
  .modal__desc { max-width: none; }
  .modal__close { right: 12px; top: 12px; }
  .modal__notes { grid-template-columns: 1fr; }
  .modal__notes > div + div { border-left: 0; border-top: var(--hair); padding: 12px 0 0; margin-top: 12px; }
}


/* ------------------------------------------------------------------
   Hero: MJ arka plan görseli varsa
   ------------------------------------------------------------------ */
.hero__bgwrap {
  position: absolute; inset: -4%;
  z-index: 0;
  will-change: transform;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--anchor, 27%) 50%;
  transform-origin: 50% 50%;
  animation:
    heroIn 2.4s var(--ease-out) 1.2s both,
    heroDrift 26s ease-in-out 3.6s infinite alternate;
  will-change: transform;
}
@keyframes heroIn { from { transform: scale(1.18); filter: blur(10px) brightness(.4); } to { transform: scale(1.06); filter: none; } }
@keyframes heroDrift {
  0%   { transform: scale(1.06) translate(0, 0); }
  50%  { transform: scale(1.11) translate(-1.2%, .8%); }
  100% { transform: scale(1.08) translate(1%, -.6%); }
}
/* suyun üstünde dolanan altın pus */
.hero__haze {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 70% 60%, rgba(233,212,138,.16), transparent 70%),
    radial-gradient(30% 22% at 30% 35%, rgba(201,162,39,.10), transparent 70%);
  mix-blend-mode: screen;
  animation: haze 18s ease-in-out infinite alternate;
  opacity: .9;
}
@keyframes haze {
  from { transform: translate(-3%, 1%) scale(1); }
  to   { transform: translate(3%, -2%) scale(1.08); }
}

.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,6,6,.55) 0%, transparent 22%, transparent 68%, var(--black) 100%),
    linear-gradient(90deg, transparent 42%, rgba(7,6,6,.35) 62%, rgba(7,6,6,.62) 100%);
}

.hero--bg .hero__stage { z-index: 2; }
.hero--bg .bottle { visibility: hidden; }
.hero--bg .hero__scroll { z-index: 2; }
.hero--bg .hero__stage { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.hero--bg .hero__copy { padding-bottom: 28px; }
.hero--bg .hero__title { text-shadow: 0 10px 40px rgba(0,0,0,.6); }
.hero--bg .hero__sub { color: rgba(245,235,203,.92); text-shadow: 0 4px 20px rgba(0,0,0,.7); }
.hero--bg .hero__pre { color: var(--gold-light); }
.hero--bg .press__hint { color: rgba(245,235,203,.6); }

@media (max-width: 820px) {
  .hero--bg { padding-top: 0; align-items: end; }
  .hero__bg { object-position: var(--anchor, 27%) 40%; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(7,6,6,.5) 0%, transparent 18%, transparent 40%, rgba(7,6,6,.85) 68%, var(--black) 100%);
  }
  .hero--bg .hero__stage {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "press" "hint";
    align-content: end;
    padding-bottom: 100px;
    min-height: 100svh;
    row-gap: 0;
  }
  .hero--bg .bottle { display: none; }
  .hero--bg .hero__copy { padding: 0 0 4px; }
  .hero--bg .hero__pre { margin-bottom: 12px; }
  .hero--bg .hero__title { font-size: clamp(36px, 11vw, 56px); letter-spacing: -4px; }
  .hero--bg .hero__sub { font-size: 17px; margin-top: 14px; max-width: 30ch; }
  .hero--bg .press { width: 108px; height: 108px; margin-top: 4px; font-size: 12px; white-space: nowrap; }
  .hero--bg .press__hint { margin-top: 10px; }
  .hero--bg .hero__veil {
    background:
      linear-gradient(180deg, rgba(7,6,6,.45) 0%, transparent 16%, transparent 34%, rgba(7,6,6,.78) 56%, rgba(7,6,6,.96) 78%, var(--black) 100%);
  }
}

/* Gelen MJ görselleri: kadraj ayarı */
[data-slot="one-cikan"] > img { object-position: 30% 50%; }
[data-slot="urun-1"] > img { object-position: 26% 50%; }
[data-slot="hikaye-atolye"] > img { object-position: 40% 50%; }
#modalMedia > img { object-position: 26% 50%; }


/* ------------------------------------------------------------------
   Hero: interaktif sıkma videosu (hero-sise.mp4 varsa)
   ------------------------------------------------------------------ */
.hero--video .bottle { visibility: visible; }
.hero--video .bottle__slot { border: 0; background: transparent; }
.hero--video .bottle__outline { display: none; }
.hero--video .bottle__slot > video {
  object-fit: cover;
  object-position: 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse 64% 60% at 50% 46%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 64% 60% at 50% 46%, #000 60%, transparent 100%);
}
.hero--video .bottle__shadow { bottom: 6%; opacity: .8; }

@media (min-width: 821px) {
  .hero--video .hero__stage { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .hero--video .bottle {
    height: min(82vh, 760px);
    width: auto;
    aspect-ratio: 9 / 16;
    justify-self: center;
    align-self: center;
  }
  /* arka plandaki İstanbul şişesini karanlık havuzda erit; video onun üstüne oturuyor */
  .hero--video .hero__veil {
    background:
      radial-gradient(34% 62% at 24% 60%, rgba(7,6,6,.96) 45%, transparent 78%),
      linear-gradient(180deg, rgba(7,6,6,.55) 0%, transparent 22%, transparent 68%, var(--black) 100%),
      linear-gradient(90deg, transparent 42%, rgba(7,6,6,.35) 62%, rgba(7,6,6,.62) 100%);
  }
}

@media (max-width: 820px) {
  .hero--bg.hero--video .bottle {
    display: block;
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    aspect-ratio: auto;
    margin: 0;
    z-index: 0;
  }
  .hero--video .bottle__slot > video {
    object-fit: contain;
    object-position: 50% 0%;
    -webkit-mask-image: none;
    mask-image: none;
    background: var(--black);
  }
  .hero--video .bottle__shadow { display: none; }
  .hero--video .bottle::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,6,6,.35) 0%, transparent 16%, transparent 32%, rgba(7,6,6,.86) 52%, rgba(7,6,6,.97) 74%, var(--black) 100%);
  }
  .hero--video .hero__copy, .hero--video .press, .hero--video .press__hint { position: relative; z-index: 1; }
  .hero--video .hero__bgwrap, .hero--video .hero__veil { display: none; }
}


/* CTA: tüm harfler büyük */
.btn, .nav__cta, .press__core, .contact__links a, .bottombar a span, .drawer__social a {
  text-transform: uppercase;
  letter-spacing: .14em;
}
.press__core { font-size: 11px; letter-spacing: .16em; }
.bottombar a span { letter-spacing: .08em; font-size: 10px; }


/* ------------------------------------------------------------------
   Mobil koleksiyon kaydırıcı (≤820px): ortadaki büyük, yanlar küçük
   ------------------------------------------------------------------ */
.grid-nav { display: none; }

@media (max-width: 820px) {
  .grid {
    display: flex;
    gap: 10px;
    padding: 12px calc(50vw - 34vw) 8px;   /* ilk ve son kart ortalanabilsin */
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .grid::-webkit-scrollbar { display: none; }
  .grid .card {
    flex: 0 0 68vw;
    max-width: 360px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    perspective: none;
  }
  .grid .card[data-wow] { opacity: 1; transform: none; transition: none; }
  .grid {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  }
  .grid .card__link {
    transform: scale(.86);
    opacity: .3;
    filter: blur(1px) saturate(.8);
    transition: transform .6s var(--ease-out), opacity .6s var(--ease-in-out), filter .6s;
    transform-origin: 50% 60%;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
  }
  .grid .card.is-center .card__link { transform: none; opacity: 1; filter: none; box-shadow: 0 34px 70px -26px rgba(0,0,0,.95), 0 0 0 1px rgba(201,162,39,.35); }
  .grid .card__media { aspect-ratio: 4 / 5; }
  .grid .card__body { padding: 18px 18px 22px; }

  .grid-nav {
    display: flex; align-items: center; justify-content: center; gap: 22px;
    max-width: var(--max); margin: 8px auto 0; padding: 0 var(--gutter);
  }
  .grid-nav__btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(7,6,6,.6); border: 1px solid rgba(201,162,39,.5); color: var(--gold-light);
    display: grid; place-items: center;
    transition: background .3s, color .3s, transform .3s var(--ease-out);
  }
  .grid-nav__btn:active { transform: scale(.92); background: var(--gold); color: var(--black); }
  .grid-nav__count { font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; color: var(--champagne); min-width: 64px; text-align: center; }
}

/* Scroll paralaksı: JS translate ile sürer, transform serbest kalsın */
.hero__bgwrap, .hero--video .bottle, .hero__stage { will-change: translate, opacity; }
