/* ============================================================
   GS — Luxury Accessories Landing
   Palette: black + gold + shining-green accents
   ============================================================ */

:root {
  --bg:        #050505;
  --bg-2:      #0b0b0b;
  --bg-3:      #111111;
  --ink:       #f4efe3;
  --ink-soft:  #b9b3a4;
  --ink-mute:  #6f6a5e;

  --gold:      #d4af37;
  --gold-2:    #f4d77a;
  --gold-deep: #8c6f1f;
  --gold-grad: linear-gradient(135deg, #f4d77a 0%, #d4af37 38%, #a98321 70%, #f4d77a 100%);

  --green:     #1fe19a;          /* shining green accent */
  --green-2:   #6affc8;
  --green-glow: 0 0 24px rgba(31, 225, 154, .55), 0 0 60px rgba(31, 225, 154, .25);

  --serif: "Cormorant Garamond", "Heebo", "Cairo", serif;
  --sans:  "Inter", "Heebo", "Cairo", system-ui, sans-serif;

  --r-card: 18px;
  --r-pill: 999px;

  --maxw: 1400px;
  --pad-x: clamp(20px, 4vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* RTL fonts */
html[dir="rtl"][data-lang="he"] body { font-family: "Heebo", var(--sans); }
html[dir="rtl"][data-lang="ar"] body { font-family: "Cairo", var(--sans); }

/* ---------- Selection / scrollbar ---------- */
::selection { background: var(--gold); color: #000; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-deep), var(--gold)); border-radius: 10px; }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad-x);
  background: linear-gradient(180deg, rgba(5,5,5,.85) 0%, rgba(5,5,5,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,.85);
  padding-block: 12px;
  border-bottom-color: rgba(212,175,55,.18);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .14em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding: 4px 10px;
}
.logo-mark::before, .logo-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.logo-mark::before { left: -16px; transform: translateY(-50%); }
.logo-mark::after  { right: -16px; transform: translateY(-50%) scaleX(-1); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switch {
  display: flex; gap: 4px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: var(--r-pill);
  padding: 4px;
  background: rgba(0,0,0,.4);
}
.lang-switch button {
  font-size: 11px;
  letter-spacing: .18em;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  transition: background .25s, color .25s;
}
.lang-switch button.active {
  background: var(--gold-grad);
  color: #0a0a0a;
  font-weight: 600;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(.9) contrast(1.05) brightness(.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 50% 60%, rgba(0,0,0,.15) 0%, rgba(0,0,0,.6) 70%, rgba(0,0,0,.92) 100%),
    linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.2) 30%, rgba(5,5,5,.95) 100%);
}

.hero-content {
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 980px;
  margin-top: 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: var(--green-glow);
  padding: 6px 14px;
  border: 1px solid rgba(31,225,154,.35);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 120px);
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold-2); }

.shimmer {
  background: linear-gradient(110deg, #f4efe3 0%, #f4efe3 35%, #f4d77a 50%, #f4efe3 65%, #f4efe3 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.hero-sub {
  margin: 28px auto 36px;
  max-width: 620px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-cta {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
}
.scroll-cue span {
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(8px); }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  --btn-pad-y: 14px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(212,175,55,.25);
}
.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 40px rgba(212,175,55,.4);
}

.btn-ghost {
  border: 1px solid rgba(244,239,227,.4);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--green-glow);
}

.btn.xl {
  --btn-pad-y: 18px;
  --btn-pad-x: 40px;
  font-size: 13px;
}

/* WhatsApp icon inside buttons */
.btn .wa { width: 14px; height: 14px; flex: none; fill: currentColor; }

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee {
  border-top: 1px solid rgba(212,175,55,.2);
  border-bottom: 1px solid rgba(212,175,55,.2);
  overflow: hidden;
  background: var(--bg-2);
  padding: 18px 0;
  position: relative;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .35em;
  color: var(--gold-2);
}
.marquee-track span { padding-inline-end: 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* =================================================================
   SECTIONS / GRID
   ================================================================= */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.kicker {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  text-shadow: var(--green-glow);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 18px;
}
.section-sub {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

/* card spans */
.card { grid-column: span 4; }
.card.span-6  { grid-column: span 6; }
.card.span-8  { grid-column: span 8; }
.card.span-12 { grid-column: span 12; }
.card.span-12 .card-media { aspect-ratio: 21 / 9; }
.card.tall .card-media { aspect-ratio: 3 / 4; }
.card.wide .card-media { aspect-ratio: 16 / 10; }
.card.square .card-media { aspect-ratio: 1 / 1; }

@media (max-width: 1080px) {
  .card,
  .card.span-6, .card.span-8 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .grid { gap: 14px; }
  .card,
  .card.span-6, .card.span-8 { grid-column: span 12; }
}

/* card */
.card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid rgba(212,175,55,.12);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), border-color .4s, box-shadow .4s;
  opacity: 0; transform: translateY(30px);
}
.card.in { opacity: 1; transform: translateY(0); }

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.2);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.card-media img,
.card-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter: saturate(.95) contrast(1.02);
}
.card:hover .card-media img,
.card:hover .card-media video { transform: scale(1.06); filter: saturate(1.1); }

.card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}

.card-tag {
  position: absolute;
  top: 16px; inset-inline-start: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,.55);
  color: var(--green);
  border: 1px solid rgba(31,225,154,.4);
  backdrop-filter: blur(6px);
}

.card-body {
  position: absolute;
  inset-inline: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 14px;
}
.card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: .005em;
  margin: 0 0 4px;
}
.card-sub {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.card-cta {
  flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(212,175,55,.5);
  color: var(--gold-2);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.card-cta:hover {
  background: var(--gold-grad);
  color: #0a0a0a;
  border-color: transparent;
  transform: translateY(-2px);
}
.card-cta .wa { width: 12px; height: 12px; fill: currentColor; flex: none; }

/* =================================================================
   STORY
   ================================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 140px) var(--pad-x);
  align-items: center;
}
.story-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
}
.story-media video { width: 100%; height: 100%; object-fit: cover; }
.story-media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-card);
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0,0,0,.4);
}
.story-text { max-width: 520px; }
.story-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
}
.story-text .btn { margin-top: 18px; }

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

/* =================================================================
   PROMISE
   ================================================================= */
.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,175,55,.18);
  border-block: 1px solid rgba(212,175,55,.18);
  margin-top: 40px;
}
.promise-item {
  background: var(--bg-2);
  padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 50px);
  text-align: center;
}
.promise-icon {
  font-size: 28px;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.promise-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}
.promise-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 800px) {
  .promise { grid-template-columns: 1fr; }
}

/* =================================================================
   CONTACT / FOOTER
   ================================================================= */
.contact {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  max-width: 820px;
  margin: 0 auto;
}
.contact .section-title { margin-bottom: 18px; }
.contact .section-sub { margin-bottom: 36px; }

.footer {
  text-align: center;
  padding: 60px var(--pad-x) 40px;
  border-top: 1px solid rgba(212,175,55,.18);
  background: var(--bg-2);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: .14em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.footer p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 6px 0;
}
.footer-meta { color: var(--ink-mute) !important; font-size: 12px !important; letter-spacing: .15em; }

/* =================================================================
   ANIMATIONS
   ================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .hero-video { display: none; }
  .hero { background: linear-gradient(180deg, #0b0b0b, #050505); }
}
