/* Hero background video fade */
.heroBg video {
  transition: opacity 0.8s ease-in-out;
}

.heroBg video.fade-out {
  opacity: 0;
}
@media (max-width: 768px) {
  .heroBg video {
    filter: brightness(0.85);
  }
}

:root{
 --bg:#ffffff; /* deep cinematic black */

  --text:#101114;
  --muted:#5c5f66;
  --border: rgba(16,17,20,0.10);
  --shadow: 0 18px 55px rgba(10,10,10,0.08);
  --shadow2: 0 14px 38px rgba(10,10,10,0.12);

  /* GOLD PALETTE (replaces pink) */
  --pink:#D4AF37;
  --pink2:#F7E7B4;
  --accent:#B8860B;

  /* RGB helpers */
  --pink-rgb: 212, 175, 55;
  --pink2-rgb: 247, 231, 180;
  --accent-rgb: 184, 134, 11;

  --radius:18px;
  --radius2:26px;
  --max:1400px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; }
.container{ width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* =========================
   Cursor Glow (follow)
========================= */
.cursorGlow{
  position:fixed;
  left:0; top:0;
  width: 420px; height: 420px;
  border-radius: 999px;
  pointer-events:none;
  transform: translate(-50%,-50%);
  z-index: 9999;
  opacity: 0.0;
  background: radial-gradient(circle at center, rgba(var(--pink-rgb),0.55), rgba(var(--pink-rgb),0.0) 62%);
  filter: blur(2px);
  transition: opacity .2s var(--ease), transform .12s linear;
  mix-blend-mode: multiply;
}
.cursorGlow.on{ opacity: 0.9; }
.cursorGlow.big{
  width: 560px; height: 560px;
  opacity: 1;
}

/* =========================
   Announcement bar
========================= */
.announceActions{
  display:flex;
  align-items:center;
  gap:10px;
}

.announceClose{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(16,17,20,0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 18px rgba(10,10,10,0.06);
  font-weight: 900;
  line-height: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.announceClose:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}
.announce.is-hidden{ display:none; }

.announce{
  position:sticky; top:0; z-index:80;
  background: linear-gradient(90deg, rgba(var(--pink-rgb),0.60), rgba(var(--pink2-rgb),0.60), rgba(255,255,255,0.96));
  border-bottom: 1px solid rgba(16,17,20,0.08);
  backdrop-filter: blur(10px);
}
.announceInner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(16,17,20,0.82);
}
.announce strong{ font-weight:900; }
.announce a{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,17,20,0.12);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 18px rgba(10,10,10,0.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space:nowrap;
}
.announce a:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }

/* =========================
   Nav
========================= */
.nav{ position:sticky; top:44px; z-index:75; padding: 12px 0; }
body.announce-closed .nav{ top:0; }

.navInner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:12px;
  padding:1px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(10,10,10,0.06);
}
.navLeft{ justify-self:start; }
.navRight{ justify-self:end; }

.brandCenter{
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
}
.navActions{
  position:absolute;
  right:14px;
  display:flex;
  gap:10px;
  align-items:center;
}
@media (max-width: 640px){

  /* ✅ MOBILE: Hide ONLY "See pricing" button from top navbar */
  .navActions a.btnGhost{
    display: none !important;
  }

  /* ✅ MOBILE: Keep "Get started" visible */
  .navActions a.btnPrimary{
    display: inline-flex !important;
  }

  /* ✅ MOBILE: Keep hamburger visible */
  .navActions .mobileToggle{
    display: inline-flex !important;
  }

  /* ✅ MOBILE: Make room so logo doesn’t go behind buttons */
  .navInner{
    grid-template-columns: 1fr !important;
    position: relative !important;
    padding-right: 130px !important;
  }

  /* ✅ MOBILE: Force logo to stay centered */
  .brandCenter{
    width: 100% !important;
    justify-self: center !important;
    display: flex !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  /* ✅ MOBILE: Logo size */
  .brandCenter .logoImg{
    height: 26px !important;
    max-width: 140px !important;
  }

  /* ✅ MOBILE: Keep right buttons fixed on right */
  .navActions{
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
  }

  
}



.brand{ display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:-0.02em; }

/* =========================
   Brand Logo Image (SAFE)
   (UPDATED: no transform scaling, sizes by location)
========================= */
.logoImg{
  width: auto;
  display:block;
  object-fit: contain;
}

/* Navbar center logo */
.brandCenter{
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;
}

/* Give center area enough height */
.brandCenter .logoImg{
  height: 70px;
  max-width: 180px;
}

/* Mobile sheet logo */
.sheetPanel .logoImg{
  height: 42px;
  max-width: 220px;
}

/* Footer logo */
footer .logoImg{
  height: 85px;
  max-width: 320px;
}

/* Mobile sizes */
@media (max-width: 640px){
  .brandCenter .logoImg{
    height: 26px;
    max-width: 110px;
  }
  footer .logoImg{
    height: 44px;
    max-width: 220px;
  }
  .sheetPanel .logoImg{
    height: 32px;
    max-width: 180px;
  }
}



.navLinks{ display:flex; align-items:center; gap:12px; font-size:14px; color: var(--muted); }
.navLinks a, .navLinks button{
  padding: 8px 10px;
  border-radius:999px;
  border:none;
  background: transparent;
  color: inherit;
  transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.navLinks a:hover, .navLinks button:hover{
  background: rgba(var(--pink-rgb),0.35);
  color: var(--text);
  transform: translateY(-1px);
}

.btn{
  border: 1px solid rgba(16,17,20,0.10);
  background:#fff;
  color: var(--text);
  border-radius:999px;
  padding: 10px 14px;
  box-shadow: 0 10px 22px rgba(10,10,10,0.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space:nowrap;
  position:relative;
  overflow:hidden;
}
.btn:before{
  content:"";
  position:absolute; inset:-60px;
  background: radial-gradient(circle at 30% 30%, rgba(var(--pink-rgb),0.75), rgba(var(--pink-rgb),0) 55%);
  transform: translate3d(-30%, -30%, 0);
  opacity:0;
  transition: opacity .25s var(--ease);
  pointer-events:none;
}
.btn:hover:before{ opacity:1; }
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }

.btnPrimary{
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.85) 0%, rgba(var(--pink2-rgb),0.95) 55%, #fff 100%);
  border-color: rgba(var(--accent-rgb),0.35);
}
.btnGhost{ background: rgba(255,255,255,0.86); }

.mobileToggle{
  display:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  border-radius:999px;
  padding: 10px 12px;
}

/* Dropdowns */
.dd{ position: relative; }
.ddMenu{
  position:absolute;
  top:44px;
  left:0;
  min-width:290px;
  padding:10px;
  border: 1px solid rgba(16,17,20,0.10);
  border-radius:18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
  display:none;
}
.dd.open .ddMenu{ display:block; }
.ddCols{ display:grid; grid-template-columns:1fr; gap:8px; }
.ddItem{
  padding:10px 10px;
  border-radius:14px;
  border: 1px solid rgba(16,17,20,0.08);
  background: rgba(255,255,255,0.75);
  transition: transform .2s var(--ease), background .2s var(--ease);
  display:block;
}
.ddItem:hover{ transform: translateY(-2px); background: rgba(var(--pink-rgb),0.28); }
.ddItem b{ display:block; font-size:13px; color: var(--text); }
.ddItem span{ display:block; font-size:12px; color: var(--muted); margin-top:2px; }

/* Pills */
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border: 1px solid rgba(16,17,20,0.10);
  border-radius:999px;
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.35), rgba(255,255,255,0.85));
  box-shadow: 0 10px 18px rgba(10,10,10,0.05);
  font-size:13px;
  color: var(--muted);
  width: fit-content;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--pink), var(--accent));
  box-shadow: 0 0 0 6px rgba(var(--pink-rgb),0.45);
}

/* =========================
   Sections
========================= */
section{ padding: 68px 0; }
.sectionHead{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  margin-bottom:18px;
}
h2{
  margin:0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing:-0.03em;
}
.lead{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 70ch;
  font-size:14px;
}

/* Base cards */
.grid12{ display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; }
.card{
  border: 1px solid rgba(16,17,20,0.10);
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.20), rgba(255,255,255,0.92));
  box-shadow: 0 12px 28px rgba(10,10,10,0.06);
  padding: 18px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position:relative;
  overflow:hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover{ box-shadow: var(--shadow2); border-color: rgba(var(--accent-rgb),0.35); }

.icon{
  width:34px; height:34px; border-radius:14px;
  border: 1px solid rgba(16,17,20,0.08);
  background: radial-gradient(circle at 30% 30%, rgba(var(--pink-rgb),0.9), rgba(255,255,255,0.9));
  box-shadow: 0 10px 16px rgba(var(--pink-rgb),0.30);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.title{ font-weight:1000; letter-spacing:-0.02em; margin: 10px 0 6px; }
.desc{ margin:0; color: var(--muted); font-size:14px; line-height:1.6; }

/* =========================
   ✅ Request Mosaic (ONLY THIS PART UPDATED)
========================= */
.editsMosaic{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 16px;
  grid-auto-flow: dense;
}

/* top layout like reference */
.mosaicWideTop{ grid-column: span 8; }
.mosaicTallTop{ grid-column: span 4; }

/* keep your names too (safe) */
.mosaicBig{ }
.mosaicMed{ grid-column: span 4; }
.mosaicWide{ grid-column: span 12; }

.mosaicCard{
  padding: 0;
  overflow: hidden;
  cursor: default;
}

.mosaicMedia{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);
  border: 1px solid rgba(16,17,20,0.10);
  background:
    radial-gradient(240px 240px at 25% 35%, rgba(var(--pink-rgb),0.95), rgba(var(--pink-rgb),0) 62%),
    radial-gradient(240px 240px at 75% 70%, rgba(var(--pink2-rgb),0.95), rgba(var(--pink2-rgb),0) 62%),
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(255,255,255,0.60));
  box-shadow: 0 10px 22px rgba(10,10,10,0.05);
}

/* ratios */
.mosaicWideTop .mosaicMedia{ aspect-ratio: 16 / 9; }
.mosaicTallTop .mosaicMedia{ aspect-ratio: 3 / 4; }
.mosaicMed .mosaicMedia{ aspect-ratio: 4 / 5; }
.mosaicWide .mosaicMedia{ aspect-ratio: 21 / 9; }

/* fill perfect */
.mosaicMedia video,
.mosaicMedia iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.mosaicMedia video{
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s var(--ease);
}
.mosaicMedia iframe{
  transform: scale(1.06);
  transition: transform .35s var(--ease);
  pointer-events:none;
}
.mosaicCard:hover .mosaicMedia video,
.mosaicCard:hover .mosaicMedia iframe{
  transform: scale(1.10);
}

.mosaicBody{ padding: 14px 16px 16px; }
.mosaicTitle{ font-weight: 1000; letter-spacing: -0.02em; margin: 0 0 6px; }
.mosaicDesc{ margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* =========================
   Pain points + solution
========================= */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:14px; }
.list{ display:grid; gap:10px; margin-top:12px; }
.item{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(16,17,20,0.08);
  background: rgba(255,255,255,0.86);
  transform: translateZ(0);
}
.check{
  width:22px; height:22px; border-radius:999px;
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.95), #fff);
  border: 1px solid rgba(var(--accent-rgb),0.35);
  display:flex; align-items:center; justify-content:center;
  font-weight:1000;
  flex: 0 0 22px;
}
.item b{ display:block; margin-bottom:2px; }
.item span{ color: var(--muted); font-size:13px; line-height:1.5; }

.gradientLine{
  height: 10px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(var(--pink-rgb),0), rgba(var(--pink-rgb),1), rgba(var(--pink2-rgb),1), rgba(var(--pink-rgb),0));
  opacity: .95;
  margin-top: 10px;
}

/* =========================
   Recent work (modal)
========================= */
.workItem{ grid-column: span 4; padding:0; cursor:pointer; display:flex; flex-direction:column; min-height: 270px; }
.thumb{ position:relative; height: 170px; overflow:hidden; border-radius: var(--radius2); }
.thumb video, .thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1.02);
  transition: transform .35s var(--ease), filter .35s var(--ease);
  filter: saturate(1.02) contrast(1.02);
}
.workItem:hover .thumb video,
.workItem:hover .thumb img{ transform: scale(1.07); filter: saturate(1.08) contrast(1.06); }

.badgeRow{ position:absolute; left:12px; top:12px; display:flex; gap:8px; flex-wrap:wrap; }
.tag{
  font-size:12px; padding:6px 10px; border-radius:999px;
  border: 1px solid rgba(16,17,20,0.10);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  color: rgba(16,17,20,0.85);
}
.playChip{
  position:absolute; right:12px; bottom:12px;
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,17,20,0.10);
  font-size:13px;
  transition: transform .2s var(--ease);
  font-weight:900;
}
.workItem:hover .playChip{ transform: translateY(-2px); }
.meta{ padding: 14px 14px 16px; display:flex; flex-direction:column; gap:6px; }
.meta .name{ font-weight:1000; letter-spacing:-0.02em; }
.meta .info{ color: var(--muted); font-size:13px; line-height:1.5; }

/* CTA */
.cta{
  padding: 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(16,17,20,0.10);
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.40), rgba(255,255,255,0.92));
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.note{ font-size: 13px; color: var(--muted); line-height:1.6; }

/* How it works */
.steps{ display:grid; grid-template-columns: repeat(12, 1fr); gap:14px; margin-top:14px; }
.step{ grid-column: span 4; }
.stepNum{
  width: 34px; height:34px; border-radius:14px;
  border: 1px solid rgba(16,17,20,0.10);
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.75), rgba(255,255,255,0.95));
  display:flex; align-items:center; justify-content:center;
  font-weight:1000;
}

/* Pricing */
.priceCard{ grid-column: span 6; }
.priceTop{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-start; }
.priceTag{
  padding: 8px 10px;
  border-radius:999px;
  border: 1px solid rgba(16,17,20,0.10);
  background: rgba(255,255,255,0.86);
  font-size:12px;
  color: rgba(16,17,20,0.78);
  width: fit-content;
  font-weight:900;
}
.price{
  font-weight:1000;
  letter-spacing:-0.03em;
  font-size: 34px;
  line-height: 1.05;
}
.small{ color: var(--muted); font-size: 13px; line-height:1.55; }

/* Testimonials */
/* Testimonials grid */
/* =========================
   Testimonials (reviewer avatar + header)
========================= */
.quoteTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.reviewer{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}

.avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(16,17,20,0.12);
  object-fit: cover;
  flex: 0 0 34px;
  background: rgba(255,255,255,0.9);
}

.reviewerMeta{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.reviewerName{
  font-weight:1000;
  letter-spacing:-0.02em;
  font-size: 13px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.reviewerRole{
  font-size: 12px;
  color: var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* optional tiny “verified” dot like your screenshot */
.verifiedDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
  flex: 0 0 8px;
}

.quoteText{
  margin: 0;
  color: var(--muted);
  line-height:1.65;
}

.quote {
  grid-column: span 4; /* 3 cards per row on desktop */
}
@media (max-width: 940px) {
  .quote {
    grid-column: span 6; /* 2 per row on tablet */
  }
}

@media (max-width: 640px) {
  .quote {
    grid-column: span 12; /* 1 per row on mobile */
  }
}

.quote p{ margin: 10px 0 0; color: var(--muted); line-height:1.65; }
.who{ margin-top: 10px; font-size: 13px; color: rgba(16,17,20,0.78); }
.who b{ color: var(--text); }

/* Contact */
form{ display:grid; gap:10px; margin-top:12px; }
.field{ display:grid; gap:6px; }
label{ font-size:13px; color: rgba(16,17,20,0.78); }
input,textarea,select{
  border: 1px solid rgba(16,17,20,0.12);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,0.92);
  outline:none;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
textarea{ min-height:110px; resize:vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(var(--accent-rgb),0.55);
  box-shadow: 0 0 0 6px rgba(var(--pink-rgb),0.45);
}

/* Footer */
footer{ padding: 36px 0 56px; color: var(--muted); }
.footerInner{
  border-top: 1px solid rgba(16,17,20,0.08);
  padding-top: 18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.footLinks{ display:flex; gap:14px; flex-wrap:wrap; font-size:14px; }
.footLinks a:hover{ color: var(--text); }

/* Modal */
.modalOverlay{
  position: fixed; inset:0;
  background: rgba(10,10,10,0.50);
  display:none;
  align-items:center; justify-content:center;
  z-index:200;
  padding: 22px;
  backdrop-filter: blur(10px);
}
.modalOverlay.open{ display:flex; }
.modal{
  width: min(980px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  overflow:hidden;
}
.modalTop{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(16,17,20,0.08);
}
.modalTitle{ font-weight:1000; letter-spacing:-0.02em; padding-left:8px; }
.modalBtns{ display:flex; gap:8px; }
.iconBtn{
  border: 1px solid rgba(16,17,20,0.10);
  background: rgba(255,255,255,0.90);
  border-radius:999px;
  padding: 10px 12px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 10px 18px rgba(10,10,10,0.08);
  font-weight:1000;
}
.iconBtn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.modalBody{ padding: 12px; }
.playerWrap{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(16,17,20,0.10);
  background:#fff;
}
.playerWrap video, .playerWrap iframe{
  width:100%;
  aspect-ratio: 16/9;
  display:block;
  border:0;
  background:#000;
}
.modalMeta{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-top: 10px;
  color: var(--muted);
  font-size:13px;
}
.formStatus{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16,17,20,0.12);
  background: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.5;
}

.formStatus.success{
  border-color: rgba(22,163,74,0.35);
  box-shadow: 0 0 0 6px rgba(22,163,74,0.12);
}

.formStatus.error{
  border-color: rgba(220,38,38,0.35);
  box-shadow: 0 0 0 6px rgba(220,38,38,0.10);
}

/* Mobile sheet */
.sheet{ position:fixed; inset:0; z-index:120; display:none; }
.sheet.open{ display:block; }
.sheetBg{ position:absolute; inset:0; background: rgba(10,10,10,0.28); backdrop-filter: blur(10px); }
.sheetPanel{
  position:absolute; left:12px; right:12px; top:12px;
  border: 1px solid rgba(16,17,20,0.10);
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 70px rgba(0,0,0,0.15);
  padding: 12px;
}
.sheetLinks{ display:grid; gap:6px; padding: 8px; }
.sheetLinks a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(16,17,20,0.08);
  background: rgba(255,255,255,0.82);
  color: rgba(16,17,20,0.82);
}
.sheetLinks a:hover{ background: rgba(var(--pink-rgb),0.35); color: var(--text); }

/* Responsive */
@media (max-width: 940px){
  .heroGrid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .step{ grid-column: span 6; }
  .quote{ grid-column: span 12; }
  .priceCard{ grid-column: span 12; }
  .workItem{ grid-column: span 6; }

  /* Mosaic stacks */
  .mosaicWideTop{ grid-column: span 12; }
  .mosaicTallTop{ grid-column: span 12; }
  .mosaicMed{ grid-column: span 12; }
  .mosaicWide{ grid-column: span 12; }
}
@media (max-width: 640px){
  .announceInner{ flex-direction:column; align-items:flex-start; }
  .navLinks{ display:none; }
  .mobileToggle{ display:inline-flex; }
  section{ padding: 52px 0; }
  .workItem{ grid-column: span 12; }
  .step{ grid-column: span 12; }
}
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; scroll-behavior:auto !important; }
  .cursorGlow{ display:none !important; }
}

/* =========================
   NEW FULLSCREEN VIDEO HERO
========================= */
.heroFull {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: 22px 0 36px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.heroFull .container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.heroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.heroBg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}
.heroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.62) 100%),
    radial-gradient(1100px 700px at 50% 35%, rgba(0,0,0,0.14), rgba(0,0,0,0.55) 70%);
}
.heroCenter {
  text-align: center;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.heroKicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.heroTitle {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(46px, 7.6vw, 96px);
  line-height: 1.02;
  margin: 18px 0 4px;
  text-shadow: 0 28px 90px rgba(0,0,0,0.55);
}
.heroStudio {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: clamp(26px, 3.2vw, 44px);
  margin: 0 0 18px;
  opacity: 0.98;
  text-shadow: 0 20px 70px rgba(0,0,0,0.55);
}
.heroTagline {
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  font-size: 15px;
}
.heroActions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btnDark {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,0.30);
}
.btnGold {
  background: linear-gradient(135deg, rgba(var(--pink-rgb),0.92), rgba(var(--pink2-rgb),0.98));
  border: 1px solid rgba(var(--accent-rgb),0.35);
  color: #101114;
}
.heroScroll {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
}
.heroScroll .miniDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(var(--pink-rgb),0.95);
  box-shadow: 0 0 0 6px rgba(var(--pink-rgb),0.25);
}
@media (max-width: 640px) {
  .heroFull { min-height: calc(100vh - 120px); }
  .heroTagline { font-size: 14px; }
}

/* =========================
   Subtle Gold Glitter Overlay
========================= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;

  background-image:
    radial-gradient(circle at 20% 30%, rgba(var(--pink-rgb),0.10) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(var(--pink-rgb),0.08) 1px, transparent 1.5px),
    radial-gradient(circle at 40% 80%, rgba(var(--pink-rgb),0.06) 1px, transparent 1.5px);

  background-size: 180px 180px;
  animation: goldDustMove 120s linear infinite;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

@keyframes goldDustMove {
  from { transform: translateY(0); }
  to { transform: translateY(-180px); }
}
@media (max-width: 768px) {
  body::after { display: none; }
}
/* =========================
   HERO intro (prevent flash before GSAP)
========================= */
body:not(.js-ready) .heroCenter > * {
  opacity: 0;
  transform: translateY(24px);
}
#testimonials .grid12 {
  gap: 18px;
}
.quote {
  min-height: 220px;
}


