/* ============================================================
   NISHKA — Fine Jewellery
   Design tokens: ivory & champagne gold primary, deep emerald
   used only as a rare accent. Signature motif: the brand ring
   (the open circle from the Nishka mark) recurs as icon frames,
   image arcs and dividers throughout.
   ============================================================ */

:root{
  /* --- colour --- */
  --ivory:        #F7F5F0;
  --ivory-deep:   #F1ECE2;
  --beige:        #EAE1CD;
  --beige-deep:   #DCCFAE;
  --gold-pale:    #F0D8A4;   /* logo gold, decorative only   */
  --gold:         #C19A4B;   /* brushed gold — borders, rules */
  --gold-deep:    #9C7A33;   /* readable gold — small text    */
  --emerald:      #0E3B2E;   /* accent — sparingly            */
  --emerald-deep: #07241C;
  --ink:          #2A2520;   /* body copy                     */
  --ink-soft:     #5C5547;
  --white:        #FFFFFF;

  /* --- type --- */
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body:    'Inter', 'Neue Haas Grotesk', sans-serif;

  /* --- misc --- */
  --container: 1240px;
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .6s;
}

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

html{ scroll-behavior:smooth; }

body{
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }

a{ color:inherit; text-decoration:none; }

ul{ list-style:none; }

button{ font-family:inherit; cursor:pointer; border:none; background:none; }

input, textarea{ font-family:inherit; font-size:1rem; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px){
  .container{ padding: 0 22px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ============== TYPE ============== */

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--emerald);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.6rem, 4.6vw, 4.4rem); }
h2{ font-size: clamp(2rem, 3.4vw, 3rem); }
h3{ font-size: clamp(1.3rem, 1.8vw, 1.6rem); }

.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.eyebrow::before{
  content:'';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display:inline-block;
}

p.lede{
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
}

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

/* ============== BUTTONS ============== */

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .4s var(--ease);
  white-space: nowrap;
}

.btn-primary{
  background: var(--emerald);
  color: var(--gold-pale);
  border: 1px solid var(--emerald);
}
.btn-primary:hover{
  background: var(--emerald-deep);
  border-color: var(--gold);
  letter-spacing: 0.14em;
}

.btn-outline{
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--gold);
}
.btn-outline:hover{
  background: var(--emerald);
  color: var(--gold-pale);
  border-color: var(--emerald);
  letter-spacing: 0.14em;
}

.btn-ghost{
  color: var(--emerald);
  border: 1px solid rgba(14,59,46,0.18);
  background: rgba(255,255,255,0.5);
}
.btn-ghost:hover{ border-color: var(--gold); background: var(--white); }

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 0.82rem;
  font-weight:600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  position:relative;
  padding-bottom: 4px;
}
.text-link::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:1px;
  background: var(--gold);
  transform: scaleX(0.3);
  transform-origin:left;
  transition: transform .45s var(--ease);
}
.text-link:hover::after{ transform: scaleX(1); }
.text-link svg{ transition: transform .35s var(--ease); }
.text-link:hover svg{ transform: translateX(4px); }

/* ============== NAV ============== */

.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  background: var(--emerald);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .35s var(--ease);
  padding: 22px 0;
}
.nav.is-scrolled{
  background: var(--emerald-deep);
  box-shadow: 0 6px 24px rgba(7,36,28,0.22);
  padding: 12px 0;
}
.nav .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-badge{
  display:inline-flex;
  align-items:center;
}
.brand-badge .brand-logo-svg{
  height: 30px;
  width:auto;
  display:block;
  transition: height .35s var(--ease);
}
.nav.is-scrolled .brand-badge .brand-logo-svg{ height: 24px; }

/* Footer is now emerald too, so the logo sits directly on it like the navbar */
footer .brand-badge .brand-logo-svg{ height: 30px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 40px;
}
.nav-links a{
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  position:relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:1px;
  background: var(--gold-pale);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--gold-pale); }
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-cta .btn{ padding: 12px 24px; }
.nav-cta .btn-outline{
  background: transparent;
  color: var(--gold-pale);
  border: 1px solid var(--gold-pale);
}
.nav-cta .btn-outline:hover{
  background: var(--gold-pale);
  color: var(--emerald-deep);
  border-color: var(--gold-pale);
}
.nav-cta .btn-primary{
  background: var(--gold-pale);
  color: var(--emerald-deep);
  border: 1px solid var(--gold-pale);
}
.nav-cta .btn-primary:hover{
  background: var(--ivory);
  border-color: var(--ivory);
  letter-spacing: 0.1em;
}

.nav-toggle{
  display:none;
  width: 30px; height: 22px;
  position: relative;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:1px;
  background: var(--gold-pale);
  transition: all .35s var(--ease);
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:50%; margin-top:-0.5px; }
.nav-toggle span:nth-child(3){ bottom:0; }

@media (max-width: 880px){
  .nav-links{ display:none; }
  .nav-cta .btn-outline{ display:none; }
  .nav-toggle{ display:block; }
}

/* mobile drawer */
.mobile-drawer{
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 600;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap: 28px;
  padding: 40px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-drawer.open{ transform: translateY(0); }
.mobile-drawer a{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--emerald);
}
.mobile-drawer .close-btn{
  position:absolute; top:30px; right:30px;
  font-size: 0.8rem; letter-spacing:0.15em; text-transform:uppercase;
  color: var(--emerald);
}

/* ============== ICON / LINE ART defaults ============== */

svg.icon{
  fill:none;
  stroke: var(--emerald);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
svg.art{
  fill:none;
  stroke: var(--gold-deep);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
svg.art .fill-soft{ fill: var(--gold-pale); stroke:none; opacity:.55; }
svg.art .fill-em{ fill: var(--emerald); stroke:none; }
svg.icon .fill-em{ fill: var(--emerald); stroke:none; }

/* ============== RING MOTIF (signature element) ============== */

.ring{
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.icon-ring{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  background: var(--ivory);
}
.icon-ring svg{ width: 30px; height: 30px; }

.deco-ring{
  position:absolute;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  pointer-events:none;
}

/* ============== REVEAL ANIMATION ============== */

.reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}
.reveal-line{
  position:relative;
  overflow:hidden;
}
.reveal-line .gold-rule{
  width:0%;
  height:1px;
  background: var(--gold);
  transition: width 1.1s var(--ease);
}
.reveal-line.in .gold-rule{ width:100%; }

/* ============== HERO ============== */

.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding-top: 120px;
  padding-bottom: 70px;
  background: var(--ivory);
  overflow:hidden;
}

.hero .container{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items:center;
  gap: 60px;
}

.hero-copy .eyebrow{ }
.hero-copy h1{ margin-bottom: 26px; }
.hero-copy h1 em{
  font-style: italic;
  color: var(--gold-deep);
}
.hero-copy p.lede{ margin-bottom: 38px; }

.hero-ctas{ display:flex; gap:18px; flex-wrap:wrap; }

.hero-visual{
  position:relative;
  height: 560px;
}
.hero-visual .frame{
  position:absolute;
  inset: 0 0 0 8%;
  border-radius: 4px;
  overflow:hidden;
  box-shadow: 0 30px 60px -25px rgba(14,59,46,0.35);
}
.hero-visual .frame img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.04);
}
.hero-visual .ring-deco{
  position:absolute;
  width: 220px; height:220px;
  left: -60px; top: -40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
}
.hero-visual .ring-deco.small{
  width:90px; height:90px;
  left:auto; right: 6%;
  bottom: -30px; top:auto;
  border-color: var(--emerald);
}
.hero-visual .caption-card{
  position:absolute;
  left: -10px;
  bottom: 40px;
  background: var(--ivory);
  border: 1px solid rgba(14,59,46,.12);
  padding: 18px 22px;
  max-width: 230px;
  box-shadow: 0 18px 40px -20px rgba(14,59,46,.25);
  z-index: 3;
}
.hero-visual .caption-card .num{
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-deep);
  display:block;
  margin-bottom: 4px;
}
.hero-visual .caption-card .lbl{
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.scroll-cue{
  position:absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-cue .line{
  width:1px; height:34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollcue 2.4s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ transform: scaleY(0.4); opacity:.4; }
  50%{ transform: scaleY(1); opacity:1; }
  100%{ transform: scaleY(0.4); opacity:.4; }
}

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero{ padding-top:130px; }
  .hero-visual{ height: 420px; order:-1; }
  .hero-visual .frame{ inset:0; }
  .hero-copy{ text-align:left; }
}
@media (max-width: 560px){
  .hero-visual{ height:340px; }
  .hero-visual .caption-card{ left:10px; bottom:16px; padding:14px 16px; }
}

/* ============== SECTION generic ============== */

section{ padding: 110px 0; position:relative; }
@media (max-width: 720px){ section{ padding: 76px 0; } }

.section-alt{ background: var(--beige); }

.hairline{
  height:1px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity:.6;
}

/* ============== ABOUT ============== */

.about-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items:start;
}
.about-grid .lede{ margin-top:22px; margin-bottom:8px; }

.trust-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.trust-card{
  background: var(--ivory);
  border: 1px solid rgba(14,59,46,0.1);
  padding: 30px 26px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.trust-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 40px -28px rgba(14,59,46,.3);
}
.trust-card h4{ font-size:1.05rem; color:var(--emerald); }
.trust-card p{ font-size:0.9rem; color:var(--ink-soft); }

@media (max-width: 880px){
  .about-grid{ grid-template-columns:1fr; gap:44px; }
  .trust-grid{ grid-template-columns: 1fr 1fr; gap:18px; }
}
@media (max-width:520px){
  .trust-grid{ grid-template-columns: 1fr; }
}

/* ============== COLLECTIONS (editorial cards) ============== */

.collection-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.collection-card{
  position:relative;
  border: 1px solid rgba(14,59,46,0.12);
  background: var(--ivory);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.collection-card:hover{
  border-color: var(--gold);
  box-shadow: 0 30px 60px -30px rgba(14,59,46,.32);
}
.collection-art{
  position:relative;
  height: 280px;
  background: linear-gradient(135deg, var(--beige), var(--ivory-deep));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.collection-art svg{
  width: 56%;
  max-width: 220px;
  height:auto;
  transition: transform .7s var(--ease);
}
.collection-card:hover .collection-art svg{ transform: scale(1.07) rotate(-1deg); }
.collection-art .ring-deco{
  position:absolute;
  width: 320px; height:320px;
  border:1px solid var(--gold);
  opacity:.4;
  border-radius:50%;
  transition: transform 1s var(--ease);
}
.collection-card:hover .collection-art .ring-deco{ transform: scale(1.08); }

.collection-body{
  padding: 28px 30px 32px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex:1;
}
.collection-body .idx{
  font-size:0.72rem;
  letter-spacing:0.18em;
  color: var(--gold-deep);
  font-weight:600;
}
.collection-body h3{ color: var(--emerald); }
.collection-body p{ font-size:0.92rem; color:var(--ink-soft); margin-bottom:6px; }

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

/* ============== WHY CHOOSE ============== */

.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  padding: 10px 14px;
}
.why-card .icon-ring{ margin-bottom:6px; }
.why-card h4{ font-size:1.1rem; }
.why-card p{ font-size:0.88rem; color:var(--ink-soft); }

@media (max-width: 920px){
  .why-grid{ grid-template-columns: 1fr 1fr; gap:40px 24px; }
}
@media (max-width: 520px){
  .why-grid{ grid-template-columns: 1fr; gap:34px; }
}

/* ============== SHOWROOM ============== */

.showroom{
  background: var(--emerald);
  color: var(--ivory);
  padding:0;
  overflow:hidden;
}
.showroom-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
}
.showroom-media{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(245,209,145,0.16), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(245,209,145,0.10), transparent 50%),
    linear-gradient(150deg, var(--emerald-deep) 0%, var(--emerald) 65%, #0f4435 100%);
}
.showroom-media::before,
.showroom-media::after{
  content:"";
  position:absolute;
  border:1px solid rgba(245,209,145,0.35);
  border-radius:50%;
}
.showroom-media::before{ width:280px; height:280px; top:-90px; left:-90px; }
.showroom-media::after{ width:180px; height:180px; bottom:10%; right:8%; border-color: rgba(245,209,145,0.22); }
.showroom-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 70px 64px;
  position:relative;
}
.showroom-content .eyebrow{ color: var(--gold-pale); }
.showroom-content .eyebrow::before{ background: var(--gold-pale); }
.showroom-content h2{ color: var(--ivory); margin-bottom:20px; }
.showroom-content p{ color: rgba(247,245,240,0.78); max-width: 420px; margin-bottom: 30px; }
.showroom-content .ring-deco{
  position:absolute;
  width:160px; height:160px;
  border:1px solid var(--gold-pale);
  opacity:.3;
  border-radius:50%;
  right: -50px; top: -50px;
}
.showroom-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.showroom .btn-outline{ color: var(--gold-pale); border-color: var(--gold-pale); }
.showroom .btn-outline:hover{ background: var(--gold-pale); color: var(--emerald); border-color:var(--gold-pale); }
.showroom .btn-primary{ background: var(--gold-pale); color: var(--emerald-deep); border-color: var(--gold-pale); }
.showroom .btn-primary:hover{ background: var(--ivory); }

@media (max-width: 920px){
  .showroom-grid{ grid-template-columns:1fr; }
  .showroom-media{ height: 320px; }
  .showroom-content{ padding: 60px 32px; }
}

/* ============== CONTACT ============== */

.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items:stretch;
}
.contact-list{ display:flex; flex-direction:column; gap:26px; }
.contact-item{ display:flex; gap:18px; align-items:flex-start; }
.contact-item .icon-ring{ width:54px; height:54px; }
.contact-item .icon-ring svg{ width:22px; height:22px; }
.contact-item h4{ font-size:0.95rem; color:var(--emerald); margin-bottom:4px; text-transform:uppercase; letter-spacing:.06em; font-family:var(--font-body); font-weight:600; }
.contact-item p, .contact-item a{ font-size:0.95rem; color:var(--ink-soft); }
.contact-item a:hover{ color: var(--gold-deep); }

.map-wrap{
  position:relative;
  border: 1px solid rgba(14,59,46,.14);
  min-height: 360px;
  overflow:hidden;
}
.map-wrap iframe{
  width:100%; height:100%;
  min-height:360px;
  border:0;
  filter: saturate(0.86) contrast(1.02);
}

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

/* contact page form */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full{ grid-column: 1 / -1; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color: var(--emerald); font-weight:600; }
.field input, .field textarea, .field select{
  background: var(--ivory);
  border: 1px solid rgba(14,59,46,0.2);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none;
  border-color: var(--gold-deep);
}
.field textarea{ resize: vertical; min-height: 120px; }

.whatsapp-fab{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px; height:58px;
  border-radius:50%;
  background: var(--emerald);
  color: var(--gold-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 16px 34px -14px rgba(14,59,46,.5);
  z-index: 400;
  transition: transform .35s var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab svg{ width:26px; height:26px; }

/* ============== PAGE HEADER (sub-pages) ============== */

.page-header{
  padding: 170px 0 90px;
  background: var(--beige);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-header .deco-ring{
  width: 420px; height:420px;
  left:50%; top:-180px;
  transform: translateX(-50%);
  border-color: var(--gold);
  opacity:.35;
}
.page-header .eyebrow{ justify-content:center; }
.page-header .eyebrow::before{ display:none; }
.page-header h1{ font-size: clamp(2.3rem,4vw,3.4rem); }
.page-header p{ max-width:560px; margin:18px auto 0; color:var(--ink-soft); }

/* ============== COLLECTIONS PAGE (large cards) ============== */

.coll-detail{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
  margin-bottom: 130px;
}
.coll-detail:last-child{ margin-bottom:0; }
.coll-detail.reverse{ direction:rtl; }
.coll-detail.reverse > *{ direction:ltr; }
.coll-detail-art{
  position:relative;
  height: 420px;
  background: linear-gradient(150deg, var(--beige), var(--ivory-deep));
  border: 1px solid rgba(14,59,46,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.coll-detail-art svg{ width:48%; max-width:260px; }
.coll-detail-art .ring-deco{
  width: 340px; height:340px;
  border-color: var(--gold);
  opacity:.4;
}
.coll-detail-copy .idx{ font-size:0.75rem; letter-spacing:.2em; color:var(--gold-deep); font-weight:600; margin-bottom:14px; display:block; }
.coll-detail-copy h2{ margin-bottom:18px; }
.coll-detail-copy p{ color:var(--ink-soft); margin-bottom:30px; max-width:460px; }
.coll-detail-tags{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.coll-detail-tags span{
  font-size:0.72rem; letter-spacing:.08em; text-transform:uppercase;
  border:1px solid var(--gold); color:var(--gold-deep); padding:7px 14px;
}
.coll-detail-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

@media (max-width: 880px){
  .coll-detail{ grid-template-columns:1fr; gap:36px; margin-bottom:80px; }
  .coll-detail.reverse{ direction:ltr; }
  .coll-detail-art{ height:320px; }
}

/* ============== FOOTER ============== */

footer{
  background: linear-gradient(155deg, var(--emerald-deep) 0%, var(--emerald) 55%, #0f4435 100%);
  padding: 76px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before{
  content:"";
  position:absolute;
  width: 320px; height:320px;
  border-radius:50%;
  border: 1px solid rgba(245,209,145,0.16);
  top: -140px; right: -80px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.footer-brand img{ height:44px; margin-bottom:18px; border-radius:6px; }
.footer-brand p{ font-size:0.9rem; color: rgba(247,245,240,0.72); max-width:280px; }
.footer-col h5{
  font-size:0.76rem; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold-pale); margin-bottom:20px; font-weight:600;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:0.92rem; color: rgba(247,245,240,0.78); transition:color .3s; }
.footer-col a:hover{ color: var(--gold-pale); }
.footer-social{ display:flex; gap:14px; margin-top:6px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(245,209,145,0.45);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s, transform .3s, border-color .3s;
}
.footer-social a:hover{ background: var(--gold-pale); border-color: var(--gold-pale); transform: translateY(-3px); }
.footer-social a svg{ width:16px; height:16px; color: var(--gold-pale); }
.footer-social a:hover svg{ color: var(--emerald-deep); }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  padding-top: 26px;
  border-top: 1px solid rgba(245,209,145,0.16);
  font-size:0.8rem;
  color: rgba(247,245,240,0.6);
  position: relative;
  z-index: 1;
}

@media (max-width: 880px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:36px; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ============== SPARKLING CURSOR ============== */

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor label{
  cursor: none;
}

.cursor-dot{
  position: fixed;
  top:0; left:0;
  width: 9px; height:9px;
  border-radius:50%;
  background: var(--gold-pale);
  box-shadow: 0 0 10px 2px rgba(245,209,145,0.65), 0 0 3px rgba(245,209,145,0.95);
  pointer-events:none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .3s var(--ease);
  opacity: 0;
}

.cursor-ring{
  position: fixed;
  top:0; left:0;
  width: 34px; height:34px;
  border-radius:50%;
  border:1px solid rgba(245,209,145,0.5);
  pointer-events:none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s var(--ease), border-color .3s var(--ease);
  opacity: 0;
}

body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring{ opacity: 1; }

body.cursor-hover .cursor-dot{ width:6px; height:6px; }
body.cursor-hover .cursor-ring{
  width:52px; height:52px;
  border-color: var(--gold-pale);
  background: rgba(245,209,145,0.06);
}

body.cursor-click .cursor-ring{ width:28px; height:28px; }

.sparkle{
  position: fixed;
  top:0; left:0;
  pointer-events:none;
  z-index: 9997;
  background: var(--gold-pale);
  clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
  opacity: 0.95;
  animation: sparkle-pop 760ms ease-out forwards;
  box-shadow: 0 0 6px rgba(245,209,145,0.8);
}

@keyframes sparkle-pop{
  0%{ transform: translate(-50%,-50%) scale(0) rotate(0deg); opacity:1; }
  35%{ transform: translate(-50%,-50%) scale(1) rotate(45deg); opacity:1; }
  100%{ transform: translate(calc(-50% + var(--drift, 0px)), -160%) scale(0.25) rotate(110deg); opacity:0; }
}

@media (pointer: coarse){
  .cursor-dot, .cursor-ring, .sparkle{ display:none !important; }
}
