/* ============================================================
   SHALINI SILAI CENTRE — Main Stylesheet
   Structure: css/main.css
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8C97A;
  --gold-dk:   #9A7328;
  --wine:      #7B1E37;
  --wine-dk:   #4D0F22;
  --wine-mid:  #8F2240;
  --cream:     #FAF5EE;
  --ivory:     #F2EAD9;
  --text:      #2B1A0E;
  --muted:     #7C6352;
  --white:     #FFFFFF;
  --shadow:    rgba(43, 26, 14, .15);
  --fd:        'Cormorant Garamond', serif;
  --fb:        'DM Sans', sans-serif;
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar         { width: 5px; }
::-webkit-scrollbar-track   { background: var(--ivory); }
::-webkit-scrollbar-thumb   { background: var(--gold); border-radius: 3px; }

/* ── CURSOR ── */
#cur {
  position: fixed; width: 16px; height: 16px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: multiply;
}
#cur.big { width: 44px; height: 44px; background: rgba(201,168,76,.12); }
#dot {
  position: fixed; width: 5px; height: 5px;
  background: var(--wine); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--wine-dk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .8s, visibility .8s;
}
#loader.out { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 60px; height: 60px;
  border: 2px solid rgba(201,168,76,.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-needle {
  width: 3px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
  border-radius: 2px; position: relative;
  animation: needle-bob 1s ease-in-out infinite alternate;
}
.loader-needle::after {
  content: ''; position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--gold-lt); border-radius: 50%;
}
@keyframes needle-bob {
  from { transform: rotate(-20deg) translateY(0); }
  to   { transform: rotate(20deg) translateY(-10px); }
}
.loader-text {
  font-family: var(--fd); font-size: 1.1rem;
  color: rgba(255,255,255,.5); letter-spacing: .25em; text-transform: uppercase;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(250,245,238,.93);
  backdrop-filter: blur(14px);
  padding: .8rem 4rem;
  box-shadow: 0 2px 24px var(--shadow);
}
.nav-logo        { display: flex; flex-direction: column; }
.nav-logo .nl1   { font-family: var(--fd); font-size: 1.5rem; font-weight: 600; color: var(--wine); line-height: 1; }
.nav-logo .nl2   { font-size: .6rem; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; }
.nav-links       { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a     { text-decoration: none; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--wine) !important; color: #fff !important; padding: .45rem 1.3rem !important; border-radius: 2px; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--wine); transition: transform .3s; }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 499;
  background: rgba(250,245,238,.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-menu.open { display: flex; }
.mob-menu a    { font-family: var(--fd); font-size: 2.4rem; color: var(--wine); text-decoration: none; }
.mob-close     { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; background: none; border: none; color: var(--wine); cursor: pointer; }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; overflow: hidden;
  background: linear-gradient(135deg, var(--wine-dk) 0%, var(--wine) 50%, #9C2E4A 100%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; pointer-events: none;
}
.hero-content { padding: 0 4rem 0 6rem; pointer-events: all; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.8rem;
}
.hero-badge::before { content: '✦'; font-size: .55rem; }
.hero-content h1 {
  font-family: var(--fd); font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; color: #fff; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content p    { font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.85; max-width: 420px; margin-bottom: 2.4rem; }
.hero-btns         { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-p {
  background: var(--gold); color: var(--wine-dk);
  padding: .85rem 2rem; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  border-radius: 3px; border: none; cursor: pointer;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-p:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }
.btn-o {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.35); padding: .85rem 2rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background .3s, border-color .3s;
}
.btn-o:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.65); }
.hero-stats { display: flex; gap: 3rem; margin-top: 3.5rem; }
.stat-num { font-family: var(--fd); font-size: 2.2rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.stat-lbl { font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .1em; margin-top: .2rem; }
.hero-right { display: flex; align-items: center; justify-content: center; height: 100vh; pointer-events: all; }
.hero-3d-cards {
  perspective: 800px; transform-style: preserve-3d;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  transform: rotateY(-8deg) rotateX(5deg);
}
.h3card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.25); border-radius: 12px; padding: 1.5rem;
  transition: transform .3s, box-shadow .3s; transform: translateZ(0);
}
.h3card:hover { transform: translateZ(20px) scale(1.04); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.h3card:nth-child(2) { margin-top: 1.5rem; }
.h3card:nth-child(4) { margin-top: -1.5rem; }
.h3card .ci { font-size: 1.8rem; margin-bottom: .5rem; }
.h3card .ct { font-family: var(--fd); font-size: 1.1rem; color: #fff; }
.h3card .cs { font-size: .72rem; color: rgba(255,255,255,.5); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.35); font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: .4rem; z-index: 3; animation: bob 2s infinite;
}
.scroll-hint svg { width: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── MARQUEE ── */
.marquee-wrap { background: var(--wine); padding: .85rem 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mi {
  display: flex; align-items: center; gap: .6rem;
  white-space: nowrap; padding: 0 2.2rem;
  font-size: .68rem; letter-spacing: .2em; color: rgba(255,255,255,.7); text-transform: uppercase;
}
.mi::before { content: '✦'; color: var(--gold); font-size: .55rem; }

/* ── SHARED SECTION STYLES ── */
section { padding: 7rem 4rem; }
.stag  { display: inline-block; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.stitle { font-family: var(--fd); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 1.1rem; }
.stitle em { font-style: italic; color: var(--wine); }
.ssub  { font-size: .92rem; color: var(--muted); line-height: 1.85; max-width: 500px; }
.divr  { width: 44px; height: 2px; background: var(--gold); margin: 1.3rem 0 0; }

/* ── REVEAL ANIMATIONS ── */
.rv  { opacity: 0; transform: translateY(30px);  transition: opacity .7s ease, transform .7s ease; }
.rvl { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.rvr { opacity: 0; transform: translateX(30px);  transition: opacity .7s ease, transform .7s ease; }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: none; }

/* ── ABOUT ── */
.about { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-3d-scene { position: relative; height: 480px; perspective: 1000px; }
.about-3d-scene:hover .acard-wrap { transform: rotateY(-12deg) rotateX(6deg); }
.acard-wrap   { transform-style: preserve-3d; transition: transform .6s ease; transform: rotateY(-8deg) rotateX(4deg); height: 100%; position: relative; }
.acard-bg     { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) translateZ(-40px); width: 320px; height: 360px; border: 1px solid rgba(201,168,76,.2); border-radius: 24px; }
.acard-main   {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) translateZ(0);
  width: 260px; height: 300px;
  background: linear-gradient(135deg, var(--wine-dk), var(--wine));
  border-radius: 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(123,30,55,.5);
  overflow: hidden;
}
/* ─── ABOUT IMAGE SLOT ─── */
.acard-main img.about-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 20px; display: block;
}
.acard-main .about-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.acard-main .big { font-family: var(--fd); font-size: 4.5rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.acard-main .sm  { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .3rem; }
.acard-float1 {
  position: absolute; top: 10%; right: 5%; transform: translateZ(40px);
  background: var(--gold); border-radius: 12px; padding: 1rem 1.3rem;
  box-shadow: 0 15px 40px rgba(201,168,76,.4);
}
.acard-float1 .nf { font-family: var(--fd); font-size: 1.8rem; font-weight: 700; color: var(--wine-dk); line-height: 1; }
.acard-float1 .lf { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wine-dk); opacity: .7; }
.acard-float2 {
  position: absolute; bottom: 12%; left: 4%; transform: translateZ(60px);
  background: var(--ivory); border-radius: 10px; padding: .8rem 1.2rem;
  box-shadow: 0 10px 30px var(--shadow); border: 1px solid rgba(201,168,76,.2);
}
.acard-float2 .nf { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--wine); line-height: 1; }
.acard-float2 .lf { font-size: .6rem; letter-spacing: .1em; color: var(--muted); }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.frow  { display: flex; align-items: flex-start; gap: 1rem; }
.ficon { width: 42px; height: 42px; background: var(--ivory); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(201,168,76,.2); }
.ftext strong { display: block; font-size: .88rem; margin-bottom: .2rem; }
.ftext span   { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ── SERVICES / FLIP CARDS ── */
.services   { background: var(--cream); }
.svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.svc-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fc         { perspective: 1200px; height: 290px; }
.fc-inner   { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .75s cubic-bezier(.4,0,.2,1); }
.fc:hover .fc-inner { transform: rotateY(180deg); }
.fc-face    { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 16px; padding: 2rem; overflow: hidden; }
.fc-front   { background: var(--white); border: 1px solid var(--ivory); display: flex; flex-direction: column; }
.fc-front::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wine), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.fc:hover .fc-front::before { transform: scaleX(1); }
.fc-back    { transform: rotateY(180deg); background: linear-gradient(135deg, var(--wine-dk), var(--wine-mid)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.fc-back.gold-back { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); }
.fc-back.gold-back * { color: var(--wine-dk) !important; }
.fc-num    { font-family: var(--fd); font-size: 2.8rem; font-weight: 700; color: var(--ivory); opacity: .4; line-height: 1; margin-bottom: .2rem; }
.fc-icon   { font-size: 1.9rem; margin-bottom: .7rem; }
.fc-title  { font-family: var(--fd); font-size: 1.45rem; font-weight: 500; color: var(--text); margin-bottom: .5rem; }
.fc-desc   { font-size: .82rem; color: var(--muted); line-height: 1.7; flex: 1; }
.fc-tag    { display: inline-block; margin-top: auto; background: var(--ivory); color: var(--wine); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; }
/* Service card image slot */
.fc-img-wrap { width: 100%; height: 90px; border-radius: 8px; overflow: hidden; margin-bottom: .7rem; background: var(--ivory); display: flex; align-items: center; justify-content: center; }
.fc-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fc-img-wrap .fc-img-placeholder { font-size: 2rem; }
.fb-icon   { font-size: 2.5rem; margin-bottom: .8rem; }
.fb-title  { font-family: var(--fd); font-size: 1.4rem; color: #fff; margin-bottom: .6rem; }
.fb-detail { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 1rem; }
.fb-price  { font-family: var(--fd); font-size: 1.3rem; color: var(--gold-lt); font-weight: 500; }
.fb-cta    { display: inline-block; margin-top: 1rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: .5rem 1.2rem; border-radius: 3px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.fb-cta:hover { background: rgba(255,255,255,.25); }

/* ── CLASSES ── */
.classes-sec { background: var(--ivory); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cls-feats   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.cf          { background: var(--white); border-radius: 10px; padding: 1.2rem; border: 1px solid rgba(201,168,76,.18); transform-style: preserve-3d; transition: transform .3s, box-shadow .3s; }
.cf:hover    { transform: perspective(600px) rotateX(-4deg) rotateY(4deg) translateZ(8px); box-shadow: 0 12px 30px var(--shadow); }
.cf .cfi     { font-size: 1.35rem; margin-bottom: .4rem; }
.cf .cft     { font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: .15rem; }
.cf .cfs     { font-size: .74rem; color: var(--muted); }
.cls-3dcard  { position: relative; perspective: 900px; }
.cls-3dcard:hover .cls-inner { transform: rotateY(-6deg) rotateX(3deg) translateZ(10px); }
.cls-inner   {
  transform-style: preserve-3d; transition: transform .5s ease;
  background: linear-gradient(135deg, var(--wine-dk), var(--wine));
  border-radius: 20px; padding: 3rem; color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(123,30,55,.4);
}
.cls-inner::before { content: '✂'; position: absolute; right: -1rem; bottom: -2rem; font-size: 10rem; opacity: .05; transform: rotate(-20deg); }
.cls-inner::after  { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border: 40px solid rgba(201,168,76,.08); border-radius: 50%; }
.cls-badge { background: var(--gold); color: var(--wine-dk); display: inline-block; padding: .3rem .9rem; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; border-radius: 50px; font-weight: 600; margin-bottom: 1.3rem; }
.cls-inner h3 { font-family: var(--fd); font-size: 1.9rem; font-weight: 400; line-height: 1.2; margin-bottom: .7rem; }
.cls-inner p  { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 1.6rem; }
.cls-row      { display: flex; align-items: center; gap: .8rem; padding: .75rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; color: rgba(255,255,255,.68); }
.cls-row span.lbl { color: var(--gold-lt); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; min-width: 68px; }

/* ── GALLERY ── */
.gallery-sec { background: var(--white); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem; margin-top: 2.5rem;
}
.gal-item         { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; transform-style: preserve-3d; transition: transform .4s ease, box-shadow .4s; will-change: transform; }
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-inner        { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }

/* ─── GALLERY IMAGE SLOTS ─── */
.gal-inner img.gal-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-placeholder { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.gal-placeholder .gp-icon { font-size: 2.5rem; opacity: .5; }
.gal-placeholder .gp-label { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }

.gal-over { position: absolute; inset: 0; background: rgba(77,15,34,0); transition: background .4s; display: flex; align-items: flex-end; padding: 1.2rem; }
.gal-item:hover .gal-over { background: rgba(77,15,34,.55); }
.gal-cap  { font-family: var(--fd); font-size: 1rem; color: #fff; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-cap  { opacity: 1; transform: none; }

/* Gallery color themes */
.gc1 { background: linear-gradient(135deg, #4D0F22, #7B1E37); }
.gc2 { background: linear-gradient(135deg, #f5d6d6, #e0a8a8); }
.gc3 { background: linear-gradient(135deg, #d6e0f5, #a8b8e0); }
.gc4 { background: linear-gradient(135deg, #f5f0d6, #e0d4a8); }
.gc5 { background: linear-gradient(135deg, #f0d6f5, #cca8e0); }
.gc6 { background: linear-gradient(135deg, #d6f5e6, #a8e0c0); }
.gc7 { background: linear-gradient(135deg, #f5e6d6, #e0c0a8); }

/* ── TESTIMONIALS ── */
.testi-sec    { background: var(--cream); }
.testi-inner  { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.testi-sticky { position: sticky; top: 6rem; }
.testi-rating {
  background: var(--wine); border-radius: 16px; padding: 1.8rem; text-align: center;
  margin-top: 2rem; transform-style: preserve-3d; transition: transform .4s; cursor: default;
}
.testi-rating:hover { transform: perspective(600px) rotateX(-5deg) rotateY(5deg) translateZ(10px); }
.testi-rating .rt { font-family: var(--fd); font-size: 3.8rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.testi-rating .rs { color: var(--gold); font-size: 1rem; margin: .4rem 0; }
.testi-rating .rl { font-size: .78rem; color: rgba(255,255,255,.55); }
.testi-cards  { display: flex; flex-direction: column; gap: 1.5rem; }
.tc {
  background: var(--white); border-radius: 14px; padding: 1.8rem;
  border: 1px solid var(--ivory); position: relative;
  transition: transform .3s, box-shadow .3s; transform-style: preserve-3d; cursor: default;
}
.tc:hover     { transform: perspective(800px) rotateX(-3deg) rotateY(3deg) translateZ(12px); box-shadow: 0 15px 45px var(--shadow); }
.tc::before   { content: '"'; font-family: var(--fd); font-size: 5rem; color: var(--ivory); position: absolute; top: -.5rem; left: 1.2rem; line-height: 1; }
.tc-stars     { color: var(--gold); font-size: .88rem; margin-bottom: .7rem; }
.tc-text      { font-size: .88rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.tc-auth      { display: flex; align-items: center; gap: .8rem; }
.tav          { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 600; color: #fff; flex-shrink: 0; }
.av1 { background: linear-gradient(135deg, var(--wine), #c0395a); }
.av2 { background: linear-gradient(135deg, #4A90D9, #2c5fa1); }
.av3 { background: linear-gradient(135deg, #45A678, #237050); }
.av4 { background: linear-gradient(135deg, #E07A30, #a84d10); }
.tc-name { font-size: .85rem; font-weight: 500; color: var(--text); }
.tc-loc  { font-size: .71rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-sec { background: var(--wine-dk); }
.cg          { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-sec .stitle { color: #fff; }
.contact-sec .stag   { color: var(--gold-lt); }
.contact-sec .ssub   { color: rgba(255,255,255,.6); }
.contact-sec .divr   { background: var(--gold); }
.cinfo   { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.3rem; }
.citem   { display: flex; align-items: flex-start; gap: 1rem; }
.cico    { width: 44px; height: 44px; flex-shrink: 0; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ctxt strong { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.ctxt span, .ctxt a { font-size: .88rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; line-height: 1.6; }
.ctxt a:hover { color: var(--gold-lt); }
.form-3d     { perspective: 1000px; }
.form-inner  {
  transform-style: preserve-3d; transition: transform .4s ease;
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.2); border-radius: 16px; padding: 2.4rem;
}
.form-3d:hover .form-inner { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg); }
.form-inner h3 { font-family: var(--fd); font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.fg label { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13); border-radius: 8px;
  padding: .72rem 1rem; color: #fff; font-family: var(--fb); font-size: .88rem;
  outline: none; transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.fg { margin-bottom: 1.1rem; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--wine-dk); }
.fg textarea { resize: vertical; min-height: 90px; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fsub {
  width: 100%; background: var(--gold); color: var(--wine-dk);
  border: none; padding: .88rem; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; font-family: var(--fb);
  border-radius: 8px; cursor: pointer; transition: background .3s, transform .2s; margin-top: .4rem;
}
.fsub:hover { background: var(--gold-lt); transform: translateY(-2px); }
.f-ok { display: none; background: rgba(69,166,120,.12); border: 1px solid rgba(69,166,120,.3); border-radius: 8px; padding: 1rem; color: #7de3b0; text-align: center; font-size: .87rem; margin-top: 1rem; }
.f-ok.on { display: block; }

/* ── MAP STRIP ── */
.map-strip { height: 300px; position: relative; overflow: hidden; }
.map-strip iframe { width: 100%; height: 100%; border: none; filter: sepia(.2) saturate(.85); }
.map-cta {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--wine); color: #fff; padding: .5rem 1.2rem;
  border-radius: 6px; font-size: .78rem; text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 14px rgba(123,30,55,.4); transition: background .2s;
}
.map-cta:hover { background: var(--wine-dk); }

/* ── FOOTER ── */
footer      { background: #1a0d09; padding: 4rem 4rem 2rem; }
.ftop       { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.fb-brand .fn { font-family: var(--fd); font-size: 1.55rem; color: var(--gold-lt); display: block; margin-bottom: .15rem; }
.fb-brand .ft { font-size: .6rem; letter-spacing: .2em; color: rgba(255,255,255,.3); text-transform: uppercase; }
.fb-brand p   { font-size: .83rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-top: .9rem; max-width: 280px; }
.fsocs   { display: flex; gap: .6rem; margin-top: 1.3rem; }
.fsocs a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: .8rem; color: rgba(255,255,255,.45); transition: background .2s, color .2s, border-color .2s; }
.fsocs a:hover { background: var(--gold); color: var(--wine-dk); border-color: var(--gold); }
.fcol h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.fcol ul a { text-decoration: none; font-size: .83rem; color: rgba(255,255,255,.42); transition: color .2s; }
.fcol ul a:hover { color: var(--gold-lt); }
.fhr     { font-size: .8rem; color: rgba(255,255,255,.42); margin-bottom: .5rem; }
.fhr span { color: rgba(255,255,255,.65); display: block; }
.fbot    { padding-top: 1.8rem; display: flex; justify-content: space-between; font-size: .72rem; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: .5rem; }
.fbot a  { color: rgba(201,168,76,.5); text-decoration: none; }

/* ── FLOATING BUTTONS ── */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 600;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); text-decoration: none; font-size: 1.5rem;
  transition: transform .25s, box-shadow .25s;
  animation: wapop .6s ease 1.5s both;
}
@keyframes wapop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.wa-tip { position: absolute; right: calc(100% + .8rem); top: 50%; transform: translateY(-50%); white-space: nowrap; background: #1a0d09; color: #fff; font-size: .76rem; padding: .33rem .8rem; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.wa-btn:hover .wa-tip { opacity: 1; }
.btt { position: fixed; bottom: 2rem; left: 2rem; z-index: 600; width: 44px; height: 44px; background: var(--wine); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(123,30,55,.4); cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s; border: none; }
.btt.on { opacity: 1; pointer-events: all; }
.btt svg { width: 15px; stroke: #fff; fill: none; stroke-width: 2; }

/* ── PARTICLES BG ── */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.prt {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
  opacity: 0; animation: float-up var(--dur, 8s) var(--del, 0s) infinite ease-in;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { transform: translateY(-10vh) translateX(var(--dx, 20px)) scale(1); opacity: 0; }
}

/* ── HERO IMAGE OVERLAY SLOT ── */
.hero-image-slot {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
