/* =========================================================
   TANISHA'S ELORA — DESIGN TOKENS
   Luxury bridal x handmade craft x editorial fashion.
========================================================= */
:root{
  /* --- Colour --- */
  --ivory:      #FAF5EE;
  --cream:      #F2E9DE;
  --blush:      #E7C6C0;
  --rose:       #C98A8F;
  --lavender:   #B6A0C4;
  --plum:       #2E1626;
  --plum-soft:  #4A2440;
  --burgundy:   #6E2A3B;
  --gold:       #B8925A;
  --gold-light: #D9BD8C;
  --ink:        #26161F;

  /* --- Type --- */
  --f-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --f-body:    'Manrope', -apple-system, sans-serif;
  --f-script:  'Parisienne', cursive;

  /* --- Rhythm --- */
  --section-pad: 168px;
  --edge: 6vw;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

@media (max-width: 1023px){
  :root{ --section-pad: 108px; --edge: 24px; }
}
@media (max-width: 640px){
  :root{ --section-pad: 84px; --edge: 20px; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; }
body{
  margin:0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight:400;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; background:none; border:none; cursor:pointer; color:inherit; padding:0; }
h1,h2,h3,h4{ font-family: var(--f-display); font-weight:500; margin:0; color:var(--plum); }
p{ margin:0; }
svg{ display:block; }

::selection{ background: var(--gold-light); color: var(--plum); }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow{
  display:inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight:600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 18px;
}

/* =========================================================
   PLACEHOLDER IMAGES
   Elegant stand-ins for real photography — replace the div's
   background via the noted asset path in script.js CONFIG,
   or simply swap in an <img> once real photos are available.
========================================================= */
.placeholder-img{
  position:relative;
  width:100%; height:100%;
  min-height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,189,140,.35), transparent 55%),
    linear-gradient(155deg, var(--plum-soft) 0%, var(--burgundy) 45%, var(--rose) 100%);
  overflow:hidden;
}
img.placeholder-img{
  display:block;
  object-fit: cover;
  object-position: center;
}
.placeholder-img::before{
  content:"";
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cpath d='M20 200 C 40 120, 100 140, 110 60 C 118 10, 170 20, 190 70' stroke='%23D9BD8C' stroke-width='1.1' fill='none' opacity='0.35'/%3E%3Ccircle cx='190' cy='70' r='3' fill='%23D9BD8C' opacity='.35'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity:.5;
  mix-blend-mode: soft-light;
}
.placeholder-tag{
  position:absolute; left:50%; bottom:22px; transform:translateX(-50%);
  font-size:10px; letter-spacing:.08em; font-family: var(--f-body);
  color: rgba(250,245,238,.72);
  background: rgba(38,22,31,.35);
  padding:6px 12px; border-radius:2px;
  white-space:nowrap;
  pointer-events:none;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:10px;
  padding: 16px 30px;
  font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  border:1px solid var(--plum);
  color: var(--plum);
  overflow:hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn i{ width:15px; height:15px; transition: transform .45s var(--ease); }
.btn::before{
  content:"";
  position:absolute; inset:0;
  background: var(--plum);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index:0;
}
.btn span, .btn i{ position:relative; z-index:1; }
.btn:hover{ color: var(--ivory); }
.btn:hover::before{ transform: translateY(0); }
.btn:hover i{ transform: translateX(4px); }

.btn--solid{ background: var(--plum); color: var(--ivory); border-color: var(--plum); }
.btn--solid::before{ background: var(--burgundy); }
.btn--solid:hover{ color: var(--ivory); }

.btn--outline{ border-color: var(--plum); }

.btn--ghost{
  border:none; padding: 10px 0; letter-spacing:.14em;
}
.btn--ghost::before{ display:none; }
.btn--ghost:hover{ color: var(--burgundy); }

.btn--light{ border-color: rgba(250,245,238,.7); color: var(--ivory); }
.btn--light::before{ background: var(--ivory); }
.btn--light:hover{ color: var(--plum); }

.link-underline{
  position:relative; display:inline-block;
  font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color: var(--gold);
  padding-bottom:3px;
}
.link-underline::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--gold);
  transition: right .4s var(--ease);
}
.link-underline:hover::after{ right:0; }

/* =========================================================
   LOADER
========================================================= */
.loader{
  position:fixed; inset:0; z-index:9999;
  background: var(--ivory);
  display:flex; align-items:center; justify-content:center;
}
.loader-inner{ position:relative; display:flex; align-items:center; justify-content:center; }
.loader-ring{ position:absolute; }
.loader-ring-track{ fill:none; stroke: rgba(46,22,38,.08); stroke-width:1; }
.loader-ring-vine{
  fill:none; stroke: var(--gold); stroke-width:1.2;
  stroke-dasharray: 620; stroke-dashoffset: 620;
}
.loader-monogram{
  font-family: var(--f-display); font-style:italic; font-weight:500;
  font-size: 40px; color: var(--plum); opacity:0;
}
.loader-word{
  position:absolute; top: calc(50% + 60px); left:50%; transform:translateX(-50%);
  text-align:center; white-space:nowrap; opacity:0;
}
.loader-title{
  display:block; font-family: var(--f-display); font-size:15px; letter-spacing:.3em; color: var(--plum);
}
.loader-tagline{
  display:block; margin-top:8px; font-family: var(--f-script); font-size:20px; color: var(--gold);
}
.loader-curtain{
  position:fixed; top:0; bottom:0; width:50%;
  background: var(--plum);
  z-index:2;
}
.loader-curtain--left{ left:0; }
.loader-curtain--right{ right:0; }

body.loaded .loader{ pointer-events:none; }

@media (max-width: 640px){
  .loader-monogram{ font-size:32px; }
  .loader-title{ font-size:12px; letter-spacing:.22em; }
  .loader-tagline{ font-size:16px; }
}

/* =========================================================
   CUSTOM CURSOR
========================================================= */
.cursor{
  position:fixed; top:0; left:0; width:14px; height:14px;
  border-radius:50%; background: var(--plum);
  pointer-events:none; z-index:9000;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  mix-blend-mode: normal;
  display:none;
}
.cursor-label{
  font-size:10px; letter-spacing:.1em; text-transform:uppercase; color: var(--ivory);
  opacity:0; transition: opacity .25s var(--ease); font-weight:700;
}
.cursor.is-active{ display:block; }
.cursor.is-view, .cursor.is-explore{
  width:74px; height:74px; background: var(--plum);
  display:flex; align-items:center; justify-content:center;
}
.cursor.is-view .cursor-label, .cursor.is-explore .cursor-label{ opacity:1; }
.cursor.is-link{ width:46px; height:46px; background: transparent; border:1px solid var(--plum); }

@media (hover:none), (pointer:coarse){
  .cursor{ display:none !important; }
}

/* =========================================================
   SCROLL PROGRESS
========================================================= */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%;
  background: var(--gold); z-index:8500;
}

/* =========================================================
   NAVIGATION
========================================================= */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:400;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav-inner{
  max-width:1400px; margin:0 auto; padding: 0 var(--edge);
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav-mark{ display:flex; align-items:baseline; gap:10px; }
.nav-mark-te{ font-family: var(--f-display); font-style:italic; font-size:22px; color: var(--plum); }
.nav-mark-full{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color: var(--plum); }
.nav-links{ display:flex; gap:36px; }
.nav-links a{
  position:relative; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--plum);
  padding-bottom:4px;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-links a:hover::after{ right:0; }
.nav-cta{ font-size:11px; color: var(--plum); }
.nav-burger{ display:none; width:26px; height:18px; position:relative; }
.nav-burger span{
  position:absolute; left:0; right:0; height:1px; background: var(--plum);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-burger span:nth-child(1){ top:0; }
.nav-burger span:nth-child(2){ top:50%; transform:translateY(-50%); }
.nav-burger span:nth-child(3){ bottom:0; }

.nav.is-scrolled{
  padding: 14px 0;
  background: rgba(250,245,238,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(46,22,38,.06);
}

@media (max-width: 900px){
  .nav-links, .nav-cta{ display:none; }
  .nav-burger{ display:block; }
}

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:0; z-index:390;
  background: var(--plum);
  color: var(--ivory);
  display:flex; flex-direction:column; justify-content:space-between;
  padding: 110px var(--edge) 50px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}
.mobile-menu.is-open{ transform: translateY(0); }
.mobile-menu nav{ display:flex; flex-direction:column; gap:22px; }
.mobile-menu nav a{
  font-family: var(--f-display); font-size: 34px; color: var(--ivory);
}
.mobile-menu-foot{ display:flex; flex-direction:column; gap:26px; align-items:flex-start; }
.mobile-menu .btn--solid{ background: var(--ivory); color: var(--plum); border-color: var(--ivory); }
.mobile-menu .btn--solid::before{ background: var(--gold-light); }
.mobile-menu-social{ display:flex; gap:20px; }
.mobile-menu-social i{ width:20px; height:20px; }

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative; height:100vh; min-height:640px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-placeholder{ transform: scale(1.12); will-change: transform; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(46,22,38,.15) 0%, rgba(46,22,38,.15) 40%, rgba(46,22,38,.78) 100%);
}
.hero-content{
  position:relative; z-index:2; color: var(--ivory);
  padding: 0 var(--edge) 92px; max-width:900px;
}
.hero-title{
  font-size: clamp(48px, 8vw, 108px);
  line-height: .98; letter-spacing:-.01em; color: var(--ivory);
  margin: 10px 0 26px;
}
.hero-title span{ display:block; }
.hero-title span:last-child{ font-style:italic; font-weight:400; color: var(--gold-light); }
.hero-sub{ max-width: 460px; font-size:16px; color: rgba(250,245,238,.86); margin-bottom:38px; }
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; right: var(--edge); bottom: 34px; z-index:2;
  display:flex; align-items:center; gap:10px;
  color: var(--ivory); font-size:10px; letter-spacing:.18em; text-transform:uppercase;
}
.scroll-cue i{ width:14px; height:14px; animation: bob 2.2s ease-in-out infinite; }

@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }

@media (max-width: 640px){
  .hero-content{ padding-bottom:120px; }
  .scroll-cue span{ display:none; }
}

/* =========================================================
   REVEAL ANIMATION (base state; GSAP drives the reveal,
   this is also the CSS fallback / reduced-motion baseline)
========================================================= */
/* Base state visible; GSAP sets the hidden starting state via inline
   style for browsers with JS + no reduced-motion preference, so
   no-JS and reduced-motion users always see fully visible content. */
.reveal-up{ opacity:1; transform:none; }

/* =========================================================
   ABOUT
========================================================= */
.about{
  display:grid; grid-template-columns: 1.05fr 1fr;
  align-items:center; gap: 0;
  padding: var(--section-pad) 0;
  max-width:1500px; margin:0 auto;
}
.about-media{ position:relative; height: 620px; margin-left: var(--edge); }
.about-copy{ padding: 0 var(--edge); position:relative; }
.section-num{
  display:block; font-family: var(--f-display); font-style:italic; font-size:60px;
  color: var(--blush); margin-bottom:8px; line-height:1;
}
.section-title{ font-size: clamp(30px, 3.6vw, 46px); margin-bottom:26px; }
.section-title em{ color: var(--burgundy); font-style:italic; }
.about-copy p{ color:#5b4a53; max-width:480px; margin-bottom:18px; }
.about-points{ margin-top:26px; display:flex; flex-direction:column; gap:12px; }
.about-points li{
  position:relative; padding-left:26px; font-size:14px; color: var(--plum);
}
.about-points li::before{
  content:""; position:absolute; left:0; top:8px; width:14px; height:1px; background: var(--gold);
}

@media (max-width: 1023px){
  .about{ grid-template-columns:1fr; }
  .about-media{ height:420px; margin-left:0; margin-bottom:48px; }
}

/* =========================================================
   COLLECTIONS
========================================================= */
.section-head{ text-align:center; padding: 0 var(--edge) 60px; }
.section-head .section-title{ margin:0; }

.collections{ padding: var(--section-pad) 0; background: var(--cream); }
.collection-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 340px;
  gap: 4px; padding: 0 var(--edge);
}
.collection-item{
  position:relative; overflow:hidden; display:block;
  grid-column: span 2;
}
.collection-item--wide{ grid-column: span 4; grid-row: span 1; height:420px; }
.collection-item:nth-child(1){ grid-column: 1 / span 2; }
.collection-item:nth-child(2){ grid-column: 3 / span 2; }
.collection-item:nth-child(3){ grid-column: 1 / span 2; }
.collection-item:nth-child(4){ grid-column: 3 / span 2; }

.collection-item .placeholder-img{ transition: transform 1s var(--ease); }
.collection-item:hover .placeholder-img{ transform: scale(1.06); }
.collection-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(46,22,38,.82) 0%, rgba(46,22,38,.05) 55%);
  opacity:.75; transition: opacity .5s var(--ease);
}
.collection-item:hover .collection-overlay{ opacity:.92; }
.collection-num{
  position:absolute; top:26px; left:26px; z-index:2;
  font-family: var(--f-display); font-style:italic; color: rgba(250,245,238,.85); font-size:20px;
  transition: transform .5s var(--ease);
}
.collection-item:hover .collection-num{ transform: translateY(-6px); }
.collection-text{
  position:absolute; left:28px; right:28px; bottom:28px; z-index:2; color: var(--ivory);
  overflow:hidden;
}
.collection-text h3{
  color: var(--ivory); font-size:26px; margin-bottom:6px;
  transform: translateY(0); transition: transform .5s var(--ease);
}
.collection-item:hover .collection-text h3{ transform: translateY(-6px); }
.collection-text p{ font-size:13px; color: rgba(250,245,238,.78); }
.collection-explore{
  position:absolute; top:26px; right:26px; z-index:2;
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(250,245,238,.5);
  display:flex; align-items:center; justify-content:center; color: var(--ivory);
  opacity:0; transform: scale(.7); transition: all .4s var(--ease);
}
.collection-explore i{ width:16px; height:16px; }
.collection-item:hover .collection-explore{ opacity:1; transform: scale(1); }

@media (max-width: 900px){
  .collection-grid{ grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .collection-item, .collection-item:nth-child(1),.collection-item:nth-child(2),.collection-item:nth-child(3),.collection-item:nth-child(4){ grid-column: 1 / -1; }
  .collection-item--wide{ height:320px; }
}

/* =========================================================
   MEHENDI SHOWCASE / MASONRY
========================================================= */
.showcase{ padding: var(--section-pad) 0; }
.masonry{
  display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px;
  gap: 14px; padding: 0 var(--edge);
}
.masonry-item{ position:relative; overflow:hidden; text-align:left; }
.masonry-item--lg{ grid-column: span 3; grid-row: span 4; }
.masonry-item--md{ grid-column: span 2; grid-row: span 3; }
.masonry-item--sm{ grid-column: span 2; grid-row: span 2; }
.masonry-item--portrait{ grid-column: span 3; grid-row: span 5; }

.masonry-item .placeholder-img{ transition: transform .8s var(--ease), filter .8s var(--ease); }
.masonry-item:hover .placeholder-img{ transform: scale(1.05); }
.masonry-title{
  position:absolute; left:18px; bottom:16px; z-index:2; color: var(--ivory);
  font-family: var(--f-display); font-style:italic; font-size:16px;
  opacity:0; transform: translateY(10px); transition: all .4s var(--ease);
}
.masonry-item:hover .masonry-title{ opacity:1; transform: translateY(0); }
.masonry-item::after{
  content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(46,22,38,.7), transparent 55%);
  opacity:0; transition: opacity .4s var(--ease); z-index:1;
}
.masonry-item:hover::after{ opacity:1; }

@media (max-width: 900px){
  .masonry{ grid-template-columns: repeat(2,1fr); grid-auto-rows:180px; }
  .masonry-item--lg,.masonry-item--md,.masonry-item--sm,.masonry-item--portrait{ grid-column: span 1; grid-row: span 2; }
}

/* =========================================================
   CHURI — HORIZONTAL SCROLL
========================================================= */
.churi{ padding: var(--section-pad) 0; background: var(--plum); color: var(--ivory); }
.churi .eyebrow{ color: var(--gold-light); }
.churi .section-title{ color: var(--ivory); }
.churi-track-wrap{ overflow-x:auto; scrollbar-width:none; padding: 10px var(--edge) 20px; cursor: grab; }
.churi-track-wrap::-webkit-scrollbar{ display:none; }
.churi-track-wrap.is-dragging{ cursor: grabbing; }
.churi-track{ display:flex; gap: 28px; width: max-content; }
.churi-card{
  position:relative; width: 320px; flex-shrink:0;
  transition: transform .5s var(--ease);
}
.churi-card .placeholder-img{ height: 380px; }
.churi-card:hover{ transform: rotate3d(0,1,0,-4deg) translateY(-4px); }
.churi-card-copy{ padding-top:18px; }
.churi-card-copy h3{ color: var(--ivory); font-size:19px; margin-bottom:6px; }
.churi-card-copy p{ font-size:13px; color: rgba(250,245,238,.7); margin-bottom:12px; }

@media (max-width: 640px){
  .churi-card{ width: 240px; }
  .churi-card .placeholder-img{ height:290px; }
}

/* =========================================================
   BRIDAL FEATURE
========================================================= */
.bridal-feature{ position:relative; height: 82vh; min-height:520px; overflow:hidden; }
.bridal-feature-overlay{
  position:absolute; inset:0; background: linear-gradient(90deg, rgba(46,22,38,.9) 0%, rgba(46,22,38,.35) 60%, rgba(46,22,38,.1) 100%);
}
.bridal-feature-content{
  position:absolute; left:0; top:0; bottom:0; z-index:2;
  display:flex; flex-direction:column; justify-content:center;
  padding: 0 var(--edge); max-width:640px; color: var(--ivory);
}
.bridal-feature-content .eyebrow{ color: var(--gold-light); }
.bridal-feature-content h2{ font-size: clamp(34px,4.6vw,58px); color: var(--ivory); line-height:1.05; margin-bottom:22px; }
.bridal-feature-content p{ color: rgba(250,245,238,.82); margin-bottom:32px; max-width:440px; }

/* =========================================================
   SERVICES
========================================================= */
.services{ padding: var(--section-pad) 0; }
.services-list{ max-width:1100px; margin:0 auto; padding: 0 var(--edge); }
.service-row{
  position:relative;
  display:grid; grid-template-columns: 60px 44px 260px 1fr;
  align-items:center; gap:28px;
  padding: 30px 0; border-top:1px solid rgba(46,22,38,.12);
  transition: padding .45s var(--ease);
}
.services-list .service-row:last-child{ border-bottom:1px solid rgba(46,22,38,.12); }
.service-num{ font-family: var(--f-display); font-style:italic; color: var(--blush); font-size:16px; }
.service-icon{ width:26px; height:26px; color: var(--burgundy); }
.service-row h3{ font-size:22px; }
.service-desc{
  color:#5b4a53; font-size:14px; max-width:520px;
  opacity:0; max-height:0; overflow:hidden; transition: opacity .45s var(--ease), max-height .45s var(--ease);
}
.service-row:hover{ padding-left:12px; }
.service-row:hover .service-desc{ opacity:1; max-height:80px; }

@media (max-width: 760px){
  .service-row{ grid-template-columns: 34px 30px 1fr; row-gap:10px; }
  .service-row h3{ grid-column: 3; }
  .service-desc{ grid-column: 1 / -1; opacity:1; max-height:none; }
}

/* =========================================================
   WHY
========================================================= */
.why{ padding: var(--section-pad) 0; background: var(--cream); }
.why-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  max-width:1300px; margin:0 auto; padding: 0 var(--edge);
}
.why-item{
  padding: 50px 26px; text-align:center; background: var(--ivory);
}
.why-num{ display:block; font-family: var(--f-display); font-style:italic; color: var(--blush); font-size:34px; margin-bottom:18px; }
.why-item h3{ font-size:19px; line-height:1.3; }

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

/* =========================================================
   SOCIAL
========================================================= */
.social{ padding: var(--section-pad) 0; }
.social-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:16px;
  max-width:1200px; margin:0 auto; padding: 0 var(--edge);
}
.social-card{
  position:relative; display:flex; flex-direction:column; align-items:center; gap:16px;
  padding: 48px 20px; border:1px solid rgba(46,22,38,.14);
  overflow:hidden; text-transform:uppercase; font-size:12px; letter-spacing:.14em; color: var(--plum);
}
.social-card i{ width:26px; height:26px; color: var(--burgundy); transition: transform .4s var(--ease), color .4s var(--ease); position:relative; z-index:1; }
.social-card span{ position:relative; z-index:1; transition: color .4s var(--ease); }
.social-card::before{
  content:""; position:absolute; inset:0; background: var(--plum);
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.social-card:hover::before{ transform: translateY(0); }
.social-card:hover i, .social-card:hover span{ color: var(--ivory); }
.social-card:hover i{ transform: translateY(-4px); }

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

/* =========================================================
   CONTACT
========================================================= */
.contact{ padding: var(--section-pad) 0; background: var(--plum); color: var(--ivory); }
.contact-inner{ max-width:720px; margin:0 auto; text-align:center; padding: 0 var(--edge); }
.contact .eyebrow{ color: var(--gold-light); }
.contact h2{ font-size: clamp(32px,5vw,54px); color: var(--ivory); margin-bottom:22px; }
.contact p{ color: rgba(250,245,238,.78); margin-bottom:38px; }
.contact-details{ display:flex; justify-content:center; gap:36px; flex-wrap:wrap; margin-bottom:40px; font-size:14px; }
.contact-details div{ display:flex; align-items:center; gap:10px; }
.contact-details i{ width:16px; height:16px; color: var(--gold-light); }
.contact-actions{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.contact .btn--outline{ border-color: rgba(250,245,238,.6); color: var(--ivory); }
.contact .btn--outline::before{ background: var(--ivory); }
.contact .btn--outline:hover{ color: var(--plum); }
.contact .btn--solid{ background: var(--gold); border-color: var(--gold); color: var(--plum); }
.contact .btn--solid::before{ background: var(--gold-light); }
.contact .btn--solid:hover{ color: var(--plum); }

@media (max-width: 640px){
  .contact-details{ flex-direction:column; gap:16px; align-items:center; }
}

/* =========================================================
   FOOTER
========================================================= */
.footer{ background: var(--ink); color: rgba(250,245,238,.7); padding: 72px 0 26px; }
.footer-top{
  max-width:1300px; margin:0 auto; padding: 0 var(--edge) 50px;
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:40px;
  border-bottom:1px solid rgba(250,245,238,.12);
}
.footer-logo{ display:block; font-family: var(--f-display); font-style:italic; font-size:26px; color: var(--ivory); }
.footer-tagline{ display:block; margin-top:10px; font-family: var(--f-script); font-size:18px; color: var(--gold-light); }
.footer-links{ display:flex; flex-direction:column; gap:14px; }
.footer-links a{ font-size:13px; letter-spacing:.05em; }
.footer-contact{ display:flex; flex-direction:column; gap:16px; font-size:13px; }
.footer-social{ display:flex; gap:16px; }
.footer-social i{ width:18px; height:18px; }
.footer-bottom{
  max-width:1300px; margin:0 auto; padding: 26px var(--edge) 0;
  font-size:11px; letter-spacing:.05em; color: rgba(250,245,238,.45);
}

@media (max-width: 760px){
  .footer-top{ grid-template-columns:1fr; gap:32px; }
}

/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox{
  position:fixed; inset:0; z-index:9500; background: rgba(38,22,31,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease);
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-stage{ width:min(80vw,760px); text-align:center; }
.lightbox-stage .placeholder-img{ height:60vh; max-height:640px; }
.lightbox-title{ margin-top:18px; color: var(--ivory); font-style:italic; font-size:20px; }
.lightbox-close{ position:absolute; top:28px; right:32px; color: var(--ivory); }
.lightbox-close i, .lightbox-nav i{ width:26px; height:26px; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); color: var(--ivory); padding:10px; }
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }
.lightbox-counter{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  color: rgba(250,245,238,.6); font-size:12px; letter-spacing:.1em;
}

@media (max-width: 640px){
  .lightbox-stage{ width:88vw; }
  .lightbox-stage .placeholder-img{ height:48vh; }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
