/* ============================================================
   RAJ SHOES — Premium Showroom Landing Page (Light Luxury)
   Design tokens
   ============================================================ */
:root{
  --white:        #ffffff;
  --grey:         #f5f5f5;
  --grey-2:       #eeeeee;
  --ink:          #111111;
  --ink-dim:      rgba(17,17,17,0.62);
  --ink-faint:    rgba(17,17,17,0.38);
  --hairline:     rgba(17,17,17,0.09);
  --gold:         #c8a03c;
  --gold-deep:    #a5822b;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background:var(--white);
  color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

/* ---------- shared type ---------- */
.eyebrow{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:0.32em;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.eyebrow::before{
  content:"";
  width:28px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold));
}

.headline{
  font-family:var(--serif);
  font-weight:500;
  font-optical-sizing:auto;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--ink);
}
.headline em{
  font-style:italic;
  font-weight:400;
  color:var(--gold-deep);
}

.section-pad{ padding:min(13vw,150px) 6vw; }
.section-pad.on-grey{ background:var(--grey); }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(0.94); transition:opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.stagger .reveal:nth-child(1){ transition-delay:0s; }
.stagger .reveal:nth-child(2){ transition-delay:.08s; }
.stagger .reveal:nth-child(3){ transition-delay:.16s; }
.stagger .reveal:nth-child(4){ transition-delay:.24s; }
.stagger .reveal:nth-child(5){ transition-delay:.32s; }
.stagger .reveal:nth-child(6){ transition-delay:.4s; }

/* ---------- section head ---------- */
.section-head{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:22px; margin-bottom:min(7vw,80px);
}
.section-head .headline{ font-size:clamp(30px,5vw,54px); }
.section-head .lede{ font-size:14px; color:var(--ink-dim); letter-spacing:0.02em; max-width:440px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:26px 6vw;
  background:transparent;
  transition:background .55s var(--ease), padding .55s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  padding:16px 6vw;
  border-bottom:1px solid var(--hairline);
  box-shadow:0 8px 30px -20px rgba(17,17,17,0.15);
}
.nav-logo{ position:relative; display:inline-block; height:34px; width:130px; }
.nav-logo .logo-img{
  position:absolute; top:0; left:0; height:34px; width:auto; max-width:180px; object-fit:contain;
  transition:opacity .55s var(--ease);
}
.nav-logo .logo-white{ opacity:1; }
.nav-logo .logo-black{ opacity:0; }
.nav.scrolled .nav-logo .logo-white{ opacity:0; }
.nav.scrolled .nav-logo .logo-black{ opacity:1; }
.nav-links{ display:flex; gap:48px; list-style:none; }
.nav-links a{
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:rgba(255,255,255,0.88); font-weight:700;
  position:relative; padding-bottom:4px;
  transition:color .5s var(--ease);
  text-shadow:0 1px 10px rgba(0,0,0,0.25);
}
.nav.scrolled .nav-links a{ color:var(--ink-dim); text-shadow:none; }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--gold); transition:width .35s var(--ease);
}
.nav-links a:hover{ color:#fff; }
.nav.scrolled .nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ width:100%; }
.nav-toggle{ display:none; }
.nav-toggle span{ background:#fff; transition:background .5s var(--ease); }
.nav.scrolled .nav-toggle span{ background:var(--ink); }

@media (max-width:820px){
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:min(78vw,320px);
    background:rgba(255,255,255,0.98); backdrop-filter:blur(20px);
    flex-direction:column; justify-content:center; gap:32px;
    padding:0 40px;
    transform:translateX(100%); transition:transform .5s var(--ease);
    border-left:1px solid var(--hairline);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ color:var(--ink-dim) !important; text-shadow:none !important; }
  .nav-links a:hover{ color:var(--ink) !important; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; z-index:110;
    background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:22px; height:1px; transition:all .3s var(--ease); }
  .nav-toggle.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; height:100svh; min-height:560px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  background:var(--ink);
}
.hero-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
  filter:brightness(1) saturate(1.04);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.32) 35%, rgba(0,0,0,0.38) 65%, rgba(0,0,0,0.52) 100%);
}
.hero-content{
  position:relative; z-index:2; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:26px;
  padding:0 24px;
}
.hero-content .eyebrow{ opacity:0; animation:riseFade .9s var(--ease) 0.25s forwards; color:#ffffff; text-shadow:0 2px 18px rgba(0,0,0,0.45); }
.hero-content .eyebrow::before{ background:linear-gradient(90deg, transparent, #ffffff); opacity:0.75; }
.hero h1{
  font-size:clamp(42px, 8.4vw, 108px);
  color:#fff;
  text-shadow:0 4px 40px rgba(0,0,0,0.35);
  opacity:0; animation:riseFade 1.1s var(--ease) 0.5s forwards;
}
.hero h1 em{ color:#fff; }
.hero-sub{
  font-size:clamp(13px,1.6vw,17px);
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.85);
  font-weight:500;
  opacity:0; animation:riseFade 1s var(--ease) 0.85s forwards;
}
.hero-actions{
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center;
  margin-top:12px;
  opacity:0; animation:riseFade 1s var(--ease) 1.1s forwards;
}
@keyframes riseFade{
  from{ opacity:0; transform:translateY(22px); }
  to{ opacity:1; transform:translateY(0); }
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 34px;
  font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700;
  border-radius:2px; cursor:pointer; border:1px solid transparent;
  transition:transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{
  background:linear-gradient(135deg, var(--gold), var(--gold-deep));
  color:#fff;
}
.btn-gold:hover{ box-shadow:0 14px 30px -10px rgba(200,160,60,0.55); }
.btn-ghost{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.55);
  color:#fff;
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,0.14); }
/* light-context ghost button (used on white sections) */
.btn-ghost-dark{
  background:transparent;
  border-color:rgba(17,17,17,0.3);
  color:var(--ink);
}
.btn-ghost-dark:hover{ border-color:var(--gold-deep); color:var(--gold-deep); }

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px;
  opacity:0; animation:riseFade 1s var(--ease) 1.5s forwards;
}
.scroll-cue span{
  font-size:9px; letter-spacing:0.3em; text-transform:uppercase; color:rgba(255,255,255,0.75);
}
.scroll-line{
  width:1px; height:38px; overflow:hidden; background:rgba(255,255,255,0.35); position:relative;
}
.scroll-line::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--gold);
  animation:scrollDrop 2.1s ease-in-out infinite;
}
@keyframes scrollDrop{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* ============================================================
   BRAND MARQUEE
   ============================================================ */
.brands-section{ background:var(--white); }
.marquee-rows{
  display:flex; flex-direction:column; gap:28px;
}
.marquee-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track{
  display:flex; align-items:center; gap:64px;
  width:max-content;
  animation:marqueeScroll 42s linear infinite;
}
.marquee-track.reverse{
  animation-name:marqueeScrollReverse;
}
.marquee-wrap:hover .marquee-track{ animation-play-state:paused; }
@keyframes marqueeScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes marqueeScrollReverse{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}
.marquee-logo{
  height:56px; width:auto; max-width:150px; object-fit:contain;
  filter:grayscale(1) opacity(0.55);
  transition:filter .45s var(--ease), transform .45s var(--ease);
  flex:0 0 auto;
}
.marquee-logo:hover{ filter:grayscale(0) opacity(1); transform:translateY(-3px) scale(1.05); }
.marquee-more{
  flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  height:56px; padding:0 26px;
  border:1px solid var(--hairline); border-radius:40px;
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase; font-weight:700;
  color:var(--gold-deep); white-space:nowrap;
  background:var(--grey);
}

@media (max-width:700px){
  .marquee-rows{ gap:20px; }
  .marquee-logo{ height:42px; }
  .marquee-more{ height:42px; font-size:10px; padding:0 18px; }
}

/* ============================================================
   SHOWROOM EXPERIENCE — editorial layered layout
   ============================================================ */
.showroom-section{ background:var(--grey); position:relative; overflow:hidden; }
.editorial{
  position:relative;
  max-width:1280px; margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-template-rows:repeat(6, minmax(60px,1fr));
  gap:20px;
  min-height:820px;
}
.ed-item{
  position:relative; overflow:hidden; border-radius:14px;
  box-shadow:0 30px 60px -32px rgba(17,17,17,0.28);
  border:1px solid var(--hairline);
  background:var(--white);
}
.ed-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s var(--ease);
}
.ed-item:hover img{ transform:scale(1.06); }
.ed-1{ grid-column:1 / 8; grid-row:1 / 5; }
.ed-2{ grid-column:8 / 13; grid-row:1 / 4; margin-top:60px; }
.ed-3{ grid-column:8 / 13; grid-row:4 / 7; }
.ed-4{ grid-column:1 / 8; grid-row:5 / 7; margin-bottom:-40px; }
.ed-tag{
  position:absolute; left:20px; bottom:18px; z-index:2;
  font-size:10px; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--ink); background:rgba(255,255,255,0.85);
  border:1px solid var(--hairline);
  padding:7px 12px; border-radius:2px; backdrop-filter:blur(6px);
}
.ed-glass{
  position:absolute; z-index:3;
  background:rgba(255,255,255,0.9);
  border:1px solid var(--hairline);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-radius:14px;
  padding:26px 30px;
  max-width:280px;
  grid-column:9/13; grid-row:6/7;
  align-self:end;
  box-shadow:0 20px 50px -25px rgba(17,17,17,0.3);
}
.ed-glass p{ font-family:var(--serif); font-style:italic; font-size:19px; color:var(--gold-deep); line-height:1.4; }

@media (max-width:900px){
  .editorial{ grid-template-columns:1fr; grid-template-rows:none; min-height:0; gap:18px; }
  .ed-1,.ed-2,.ed-3,.ed-4{ grid-column:1; grid-row:auto; margin:0; height:52vw; min-height:260px; }
  .ed-glass{ position:relative; grid-column:1; grid-row:auto; max-width:none; }
}

/* ============================================================
   SHOP BY CATEGORY — accordion
   ============================================================ */
.category-section{ background:var(--white); }
.cat-list{
  display:flex; flex-direction:column; gap:22px;
  max-width:1180px; margin:0 auto;
}
.cat-card{
  position:relative; border-radius:20px; overflow:hidden;
  border:1px solid var(--hairline);
  cursor:pointer;
  transition:box-shadow .5s var(--ease);
  box-shadow:0 20px 50px -35px rgba(17,17,17,0.25);
}
.cat-card.open{ box-shadow:0 30px 60px -30px rgba(17,17,17,0.3); }
.cat-visual{
  position:relative; aspect-ratio:16/9; overflow:hidden;
}
.cat-visual img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.02);
  transition:transform 1.2s var(--ease), filter .6s var(--ease);
  filter:saturate(0.95) brightness(0.88);
}
.cat-card:hover .cat-visual img{ transform:scale(1.08); }
.cat-visual::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(17,17,17,0.68) 0%, rgba(17,17,17,0.24) 50%, rgba(17,17,17,0.04) 100%);
}
.cat-header{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 clamp(24px,4vw,52px);
}
.cat-header-left{ display:flex; align-items:center; gap:22px; }
.cat-index{ font-size:11px; letter-spacing:0.2em; color:var(--gold); font-weight:700; }
.cat-name{ font-family:var(--serif); font-size:clamp(30px,4.4vw,56px); color:#fff; }
.cat-toggle{
  width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.55);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:22px; font-weight:300; flex:0 0 auto;
  transition:background .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}
.cat-card.open .cat-toggle{ background:var(--gold); border-color:var(--gold); transform:rotate(180deg); }

.cat-sub{
  max-height:0; overflow:hidden;
  transition:max-height .6s var(--ease);
  background:var(--grey);
}
.cat-card.open .cat-sub{ max-height:400px; }
.cat-sub-inner{
  padding:28px clamp(24px,4vw,52px) 32px;
  display:flex; flex-wrap:wrap; gap:12px;
}
.chip{
  padding:10px 20px;
  border:1px solid var(--hairline);
  border-radius:30px;
  font-size:12px; letter-spacing:0.04em; font-weight:600;
  color:var(--ink-dim);
  background:var(--white);
  transition:border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.chip:hover{ border-color:var(--gold); color:var(--gold-deep); background:#fff; transform:translateY(-2px); }

@media (max-width:600px){
  .cat-header{ padding:0 20px; }
  .cat-name{ font-size:clamp(22px,7vw,30px); }
  .cat-toggle{ width:38px; height:38px; font-size:18px; }
  .cat-sub-inner{ padding:22px 20px 26px; }
}

/* ============================================================
   WHY RAJ SHOES
   ============================================================ */
.why-section{ background:var(--grey); }
.why-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
  max-width:1240px; margin:0 auto;
  background:var(--hairline);
  border:1px solid var(--hairline);
}
.why-card{
  background:var(--grey);
  padding:44px 24px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:18px;
  transition:background .5s var(--ease);
}
.why-card:hover{ background:var(--white); }
.why-icon{
  width:52px; height:52px; border-radius:50%;
  border:1px solid rgba(200,160,60,0.5);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .5s var(--ease), transform .5s var(--ease), background .5s var(--ease);
}
.why-card:hover .why-icon{ border-color:var(--gold); transform:translateY(-4px); background:var(--white); }
.why-icon svg{ width:22px; height:22px; stroke:var(--gold-deep); }
.why-card h3{ font-family:var(--serif); font-weight:500; font-size:16px; letter-spacing:0.01em; color:var(--ink); }

@media (max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .why-grid{ grid-template-columns:1fr; } }

/* ============================================================
   VISIT US
   ============================================================ */
.visit-section{ background:var(--white); }
.visit-grid{
  display:grid; grid-template-columns:1.15fr 1fr; gap:56px;
  max-width:1240px; margin:0 auto; align-items:stretch;
}
.visit-map{
  border-radius:14px; overflow:hidden; border:1px solid var(--hairline);
  min-height:420px; position:relative;
}
.visit-map iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; }
.visit-info{ display:flex; flex-direction:column; justify-content:center; gap:34px; }
.visit-row{ display:flex; flex-direction:column; gap:6px; }
.visit-row .label{ font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-deep); }
.visit-row .value{ font-family:var(--serif); font-size:clamp(19px,2vw,24px); color:var(--ink); }
.visit-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; }

@media (max-width:900px){ .visit-grid{ grid-template-columns:1fr; } .visit-map{ min-height:320px; } .visit-map iframe{ min-height:320px; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
  position:relative; min-height:74vh; display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
}
.final-cta img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(0.55) saturate(0.95);
}
.final-cta-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(17,17,17,0.35), rgba(17,17,17,0.72));
}
.final-cta-content{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; gap:30px; padding:0 24px; }
.final-cta h2{ font-size:clamp(32px,6vw,72px); color:#fff; }
.final-cta h2 em{ color:var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--white); border-top:1px solid var(--hairline); padding:70px 6vw 34px; }
.footer-top{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:48px;
  max-width:1240px; margin:0 auto 50px;
}
.footer-logo img{ height:30px; margin-bottom:18px; }
.footer-col h4{ font-size:10px; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:16px; }
.footer-col p, .footer-col a{ font-size:13px; color:var(--ink-dim); line-height:1.9; display:block; }
.footer-col a:hover{ color:var(--gold-deep); }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.social-row{ display:flex; gap:14px; margin-top:16px; }
.social-row a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--hairline);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .4s var(--ease), transform .4s var(--ease);
}
.social-row a:hover{ border-color:var(--gold); transform:translateY(-3px); }
.social-row svg{ width:14px; height:14px; stroke:var(--ink-dim); }
.footer-bottom{
  max-width:1240px; margin:0 auto; padding-top:26px; border-top:1px solid var(--hairline);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:11px; color:var(--ink-faint); letter-spacing:0.03em;
}
.footer-policy-link{ color:inherit; transition:color .3s var(--ease); }
.footer-policy-link:hover{ color:var(--gold-deep); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float{
  position:fixed; right:26px; bottom:26px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,0.55);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  animation:waFloat 3.2s ease-in-out infinite;
}
.wa-float:hover{ transform:scale(1.08); box-shadow:0 18px 36px -6px rgba(37,211,102,0.65); }
.wa-float svg{ width:28px; height:28px; fill:#fff; }
@keyframes waFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }

/* responsive helpers */
@media (max-width:700px){
  .section-pad{ padding:96px 6vw; }
  .footer-top{ flex-direction:column; }
  .wa-float{ right:18px; bottom:18px; width:52px; height:52px; }
  .wa-float svg{ width:24px; height:24px; }
}
