
:root{
  --bg:#06060B;
  --bg2:#0B0B13;
  --panel:#0D0D16;
  --panel2:#111124;
  --text:#EDEDF4;
  --muted:#A8A8BF;
  --line:rgba(255,255,255,.12);
  --line2:rgba(255,255,255,.08);
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:16px;
  --accent: #6D5EF4; /* customizable */
  --accent2: rgba(109,94,244,.25);
  --accent3: rgba(109,94,244,.14);
  --max: 1180px;
  --pad: 20px;
  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body.nv{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 12% 8%, rgba(109,94,244,.18), transparent 60%),
              radial-gradient(1000px 600px at 88% 18%, rgba(255,255,255,.07), transparent 60%),
              linear-gradient(180deg, var(--bg), #050509);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button, input, textarea{font-family:inherit}

.nv-shell{
  width:min(var(--max), calc(100% - (var(--pad)*2)));
  margin-inline:auto;
}

.nv-main{padding-top: 10px}

/* Typography */
.nv-h1{font-size: clamp(30px, 4.2vw, 52px); line-height:1.05; letter-spacing:-.02em; margin:0}
.nv-h2{font-size: clamp(24px, 3.2vw, 38px); line-height:1.12; letter-spacing:-.02em; margin:0}
.nv-h3{font-size: 20px; line-height:1.2; letter-spacing:-.01em; margin:0}
.nv-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nv-muted{color:var(--muted)}
.nv-small{font-size: 13px}
.nv-dot{opacity:.7}

.nv-prose{
  max-width: 76ch;
  font-size: 16.5px;
  line-height: 1.7;
}
.nv-prose--wide{max-width: 92ch}
.nv-prose p{margin: 0 0 16px}
.nv-prose h2{margin: 28px 0 10px; font-size: 22px; letter-spacing:-.02em}
.nv-prose ul{margin: 0 0 18px 18px}
.nv-prose li{margin: 6px 0}
.nv-prose a{color: var(--text); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px}
.nv-prose strong{color: var(--text)}

/* Buttons */
.nv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}
.nv-btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.nv-btn:active{transform: translateY(0)}
.nv-btn--primary{
  background: linear-gradient(180deg, rgba(109,94,244,.92), rgba(109,94,244,.78));
  border-color: rgba(109,94,244,.6);
  box-shadow: 0 10px 24px rgba(109,94,244,.22);
}
.nv-btn--primary:hover{background: linear-gradient(180deg, rgba(109,94,244,.98), rgba(109,94,244,.84))}
.nv-btn--ghost{
  background: transparent;
  border-color: var(--line);
}
.nv-iconbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.nv-iconbtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: var(--line)}
.nv-iconbtn:active{transform: translateY(0)}

/* Header */
.nv-header{
  position: sticky;
  top:0;
  z-index: 50;
  border-bottom: 1px solid var(--line2);
  background: rgba(6,6,11,.72);
  backdrop-filter: blur(12px);
}
.nv-header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 16px 0;
}

.nv-brand__text{
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 16px;
}
.nv-brand__logo img{max-height: 44px; width:auto}

.nv-nav{display:flex}
.nv-nav__list{
  list-style:none;
  display:flex;
  gap: 18px;
  align-items:center;
  padding:0;
  margin:0;
}
.nv-nav__list a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nv-nav__list a:hover{color: var(--text); background: rgba(255,255,255,.05)}
.nv-nav__list .current-menu-item a{color: var(--text); background: rgba(109,94,244,.16); border:1px solid rgba(109,94,244,.25)}

.nv-header__cta{display:flex; align-items:center; gap:10px}
.nv-burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding: 0 12px;
}
.nv-burger span{
  display:block;
  height:2px;
  background: var(--text);
  border-radius: 10px;
  margin: 5px 0;
  opacity:.9;
}

/* Mobile nav */
.nv-mnav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  padding: 16px;
}
.nv-mnav__panel{
  width:min(420px, 100%);
  background: rgba(13,13,22,.92);
  border:1px solid var(--line2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.nv-mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px 8px;
}
.nv-mnav__title{font-weight: 800; letter-spacing:.02em}
.nv-mnav__links{
  padding: 10px 16px 18px;
  display:grid;
  gap: 8px;
}
.nv-mnav__links .nv-nav__list{
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.nv-mnav__links .nv-nav__list a{
  width: 100%;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
}
.nv-mnav__contact{width:100%}

/* Sections */
.nv-section{padding: 72px 0}
.nv-section--page{padding-top: 56px}
.nv-section--tight{padding-top: 52px}
.nv-rule{
  border:0;
  height:1px;
  background: var(--line2);
  margin: 52px 0;
}
.nv-divider{
  height:1px;
  background: var(--line2);
  margin: 14px 0;
}

/* Hero */
.nv-hero{
  padding: 54px 0 40px;
}
.nv-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items:center;
}
.nv-hero__h1{margin: 18px 0 10px}
.nv-hero__lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 60ch;
}
.nv-hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.nv-hero__trust{
  display:flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.nv-trust{
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  min-width: 150px;
}
.nv-trust__num{font-weight: 800; letter-spacing:-.01em}
.nv-trust__lbl{font-size: 13px; color: var(--muted); margin-top: 2px}

/* Hero image stack */
.nv-stack{
  position: relative;
  min-height: 420px;
}
.nv-stack__img{
  position:absolute;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  background: #0A0A12;
}
.nv-stack__img img{width:100%; height:100%; object-fit:cover}
.nv-stack__img--a{ inset: 0 12% -10% 0; }
.nv-stack__img--b{ inset: 8% 0 52% 42%; }
.nv-stack__img--c{ inset: 60% 14% -25% 14%; }
.nv-stack__glow{
  position:absolute;
  inset: -20px;
  background: radial-gradient(500px 220px at 40% 30%, rgba(109,94,244,.25), transparent 60%),
              radial-gradient(380px 220px at 70% 80%, rgba(255,255,255,.11), transparent 65%);
  filter: blur(8px);
  pointer-events:none;
}

/* Slab headers */
.nv-slab{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.nv-slab__left{max-width: 70ch}
.nv-slab__right{display:flex; gap:10px; flex-wrap:wrap}

/* Cards */
.nv-cardgrid{
  display:grid;
  gap: 16px;
}
.nv-cardgrid--3{grid-template-columns: repeat(3, 1fr)}
.nv-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.nv-card:hover{transform: translateY(-3px); border-color: rgba(109,94,244,.35); background: rgba(255,255,255,.04)}
.nv-card__img{aspect-ratio: 4/3; overflow:hidden; background: #0a0a12}
.nv-card__img img{width:100%; height:100%; object-fit: cover}
.nv-card__img--placeholder{
  display:flex; align-items:center; justify-content:center;
  background: radial-gradient(600px 250px at 30% 40%, rgba(109,94,244,.18), transparent 60%),
              radial-gradient(500px 240px at 70% 70%, rgba(255,255,255,.08), transparent 65%),
              rgba(255,255,255,.02);
}
.nv-card__body{padding: 14px 16px 16px}
.nv-card__title{font-weight: 800; letter-spacing:-.01em; margin-bottom: 6px}
.nv-card__meta{color: var(--muted); font-size: 13.5px; line-height:1.45}

/* Placeholder mini */
.nv-ph{display:grid; gap:6px; text-align:center; padding: 20px}
.nv-ph__icon{color: rgba(255,255,255,.85); width: 40px; height: 40px; margin: 0 auto; display:grid; place-items:center; border-radius: 14px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04)}
.nv-ph__text{font-weight: 800}
.nv-ph__sub{color: var(--muted); font-size: 13px}

/* Services grid */
.nv-svcgrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nv-svc{
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 18px 18px 16px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.nv-svc:hover{transform: translateY(-3px); border-color: rgba(109,94,244,.35); background: rgba(255,255,255,.04)}
.nv-svc:before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 220px at 20% 10%, rgba(109,94,244,.18), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.nv-svc > *{position:relative}
.nv-svc__top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 12px}
.nv-svc__k{font-weight: 800; letter-spacing:-.01em}
.nv-svc__title{font-size: 16px; line-height:1.4; font-weight: 700; margin-bottom: 10px}
.nv-svc__meta{color: var(--muted); font-size: 13.5px; line-height:1.45}
.nv-svc__arrow{position:absolute; right: 16px; bottom: 14px; font-weight: 800; opacity:.75}

/* Chips */
.nv-chip{
  font-size: 12px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line2);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.nv-chip--violet{background: rgba(109,94,244,.20); border-color: rgba(109,94,244,.25)}
.nv-chip--soft{background: rgba(255,255,255,.04)}
.nv-chip--link{display:inline-flex; align-items:center; justify-content:center; gap:8px}
.nv-chip--link:hover{border-color: rgba(109,94,244,.35)}

/* Page head */
.nv-pagehead{margin-bottom: 22px}
.nv-pagehead p{margin: 10px 0 0}
.nv-pagehead--split{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 26px;
  align-items:start;
}
.nv-about__media{position:relative; min-height: 380px}
.nv-about__img{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.nv-about__img img{width:100%; height:100%; object-fit:cover}
.nv-about__img{aspect-ratio: 4/5}
.nv-about__img--small{
  position:absolute;
  width: 58%;
  right: -4%;
  bottom: -6%;
  aspect-ratio: 4/3;
  border-radius: 18px;
}

/* Metrics */
.nv-metrics{
  display:grid;
  gap: 10px;
  margin: 18px 0;
}
.nv-metric{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px 14px;
}
.nv-metric__n{font-weight: 800; margin-bottom: 4px}
.nv-metric__l{color: var(--muted); font-size: 13.5px; line-height: 1.45}

/* Testimonials */
.nv-headrow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.nv-headrow__actions{display:flex; gap:10px}
.nv-testi{
  display:flex;
  gap: 14px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.nv-testi::-webkit-scrollbar{height: 10px}
.nv-testi::-webkit-scrollbar-thumb{background: rgba(255,255,255,.10); border-radius: 999px}
.nv-testi__card{
  min-width: min(420px, 88%);
  scroll-snap-align: start;
  border-radius: var(--radius);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 18px 18px 16px;
}
.nv-testi__meta{color: var(--muted); font-size: 13px; letter-spacing:.08em; text-transform: uppercase}
.nv-testi__quote{font-size: 16px; line-height: 1.6; margin: 10px 0 12px}
.nv-testi__from{color: var(--muted); font-size: 13.5px}

/* FAQ accordion */
.nv-faq{display:grid; gap: 10px}
.nv-faq__item{
  border-radius: 18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.nv-faq__q{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  color: var(--text);
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  font-weight: 750;
  cursor:pointer;
}
.nv-faq__icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  position:relative;
}
.nv-faq__icon:before,
.nv-faq__icon:after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background: var(--text);
  opacity:.9;
}
.nv-faq__icon:before{width: 10px; height: 2px}
.nv-faq__icon:after{width: 2px; height: 10px}
.nv-faq__item.is-open .nv-faq__icon:after{opacity:0}
.nv-faq__a{
  height: 0;
  overflow:hidden;
  transition: height .2s ease;
}
.nv-faq__a p{
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA */
.nv-cta{padding: 0 0 86px}
.nv-cta__card{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(109,94,244,.28);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(109,94,244,.25), transparent 65%),
    radial-gradient(700px 360px at 80% 60%, rgba(255,255,255,.08), transparent 65%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 20px;
  position:relative;
  overflow:hidden;
}
.nv-cta__watermark{
  position:absolute;
  right: -10px;
  bottom: -24px;
  font-size: 92px;
  font-weight: 900;
  letter-spacing: .06em;
  opacity: .06;
  user-select:none;
}
.nv-cta__left{max-width: 70ch}
.nv-cta__right{display:flex; gap:10px; flex-wrap:wrap}

/* Portfolio filter + gallery */
.nv-filter{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 16px 0 18px;
}
.nv-filter__btn{
  border-radius: 999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 750;
  padding: 10px 14px;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.nv-filter__btn:hover{color: var(--text); border-color: rgba(255,255,255,.18)}
.nv-filter__btn.is-active{
  color: var(--text);
  border-color: rgba(109,94,244,.35);
  background: rgba(109,94,244,.14);
}

.nv-gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.nv-shot{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  position:relative;
  aspect-ratio: 4/5;
  transition: transform .18s ease, border-color .18s ease;
}
.nv-shot:hover{transform: translateY(-2px); border-color: rgba(109,94,244,.32)}
.nv-shot img{width:100%; height:100%; object-fit: cover}
.nv-shot__cap{
  position:absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.nv-shot--ph{
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(600px 260px at 30% 40%, rgba(109,94,244,.18), transparent 65%),
    rgba(255,255,255,.02);
}
.nv-shot--ph .nv-ph{padding: 24px}
.nv-anchor{scroll-margin-top: 90px}

/* Services page pricing */
.nv-pricenav{display:flex; gap: 10px; flex-wrap:wrap; margin: 14px 0 26px}
.nv-bullets{margin: 12px 0 0 18px; color: var(--muted)}
.nv-bullets--tight{margin-top: 10px}
.nv-bullets li{margin: 6px 0}

.nv-prices{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.nv-price{
  border-radius: var(--radius);
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 18px 18px 16px;
  position:relative;
  overflow:hidden;
}
.nv-price--featured{
  border-color: rgba(109,94,244,.35);
  background:
    radial-gradient(900px 420px at 30% 10%, rgba(109,94,244,.16), transparent 60%),
    rgba(255,255,255,.03);
}
.nv-price__badge{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--text);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109,94,244,.22);
  border: 1px solid rgba(109,94,244,.28);
}
.nv-price__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.nv-price__name{font-weight: 900; letter-spacing:-.01em}
.nv-price__amt{font-weight: 900; letter-spacing:-.02em; font-size: 22px}
.nv-price__meta{color: var(--muted); font-size: 13.5px; line-height:1.45}
.nv-note{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  color: var(--muted);
  line-height: 1.6;
}
.nv-note strong{color: var(--text)}
.nv-note--soft{border-color: rgba(109,94,244,.25); background: rgba(109,94,244,.10)}

.nv-addons{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.nv-addon{
  border-radius: 18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.nv-addon__name{font-weight: 800}
.nv-addon__val{color: var(--muted); font-weight: 800}

/* Contact */
.nv-contact{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 16px;
  align-items:start;
}
.nv-contact__card,
.nv-formcard{
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  padding: 18px 18px 16px;
}
.nv-contact__meta{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}
.nv-contact__meta a{color: var(--text); text-decoration: underline; text-decoration-color: rgba(109,94,244,.55); text-underline-offset: 4px}
.nv-form{display:grid; gap: 12px; margin-top: 12px}
.nv-form__row{display:grid; gap: 6px}
.nv-form label{color: var(--muted); font-size: 13px; font-weight: 750}
.nv-form input, .nv-form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line2);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
.nv-form input:focus, .nv-form textarea:focus{
  border-color: rgba(109,94,244,.45);
  box-shadow: 0 0 0 4px rgba(109,94,244,.14);
}

/* Footer */
.nv-foot{
  border-top: 1px solid var(--line2);
  padding: 44px 0;
  background: rgba(0,0,0,.18);
}
.nv-foot__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}
.nv-foot__mark{font-weight: 900; letter-spacing:.02em}
.nv-foot__tag{color: var(--muted); margin-top: 6px; line-height:1.6}
.nv-foot__meta{margin-top: 12px; color: var(--muted)}
.nv-foot__meta a{color: var(--text); text-decoration: underline; text-decoration-color: rgba(109,94,244,.55); text-underline-offset: 4px}
.nv-foot__linksWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nv-foot__head{font-weight: 900; margin-bottom: 10px}
.nv-foot__links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.nv-foot__links a{color: var(--muted)}
.nv-foot__links a:hover{color: var(--text)}
.nv-social{display:flex; gap: 10px; flex-wrap:wrap}
.nv-foot__bottom{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line2);
}
.nv-foot__small{color: var(--muted); font-size: 13px}

/* Responsive */
@media (max-width: 980px){
  .nv-hero__grid{grid-template-columns: 1fr; gap: 26px}
  .nv-stack{min-height: 380px}
  .nv-cardgrid--3{grid-template-columns: 1fr}
  .nv-svcgrid{grid-template-columns: 1fr}
  .nv-pagehead--split{grid-template-columns: 1fr}
  .nv-about__img--small{right: 0; bottom: -10%}
  .nv-contact{grid-template-columns: 1fr}
  .nv-prices{grid-template-columns: 1fr}
  .nv-addons{grid-template-columns: 1fr}
  .nv-foot__grid{grid-template-columns: 1fr}
  .nv-foot__linksWrap{grid-template-columns: 1fr 1fr}
  .nv-gallery{grid-template-columns: repeat(6,1fr)}
  .nv-shot{grid-column: span 3}
}
@media (max-width: 760px){
  .nv-nav{display:none}
  .nv-burger{display:block}
  .nv-section{padding: 56px 0}
  .nv-cta__card{flex-direction: column; align-items:flex-start}
  .nv-cta__watermark{font-size: 72px}
  .nv-gallery{grid-template-columns: repeat(2,1fr)}
  .nv-shot{grid-column: span 1}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .nv-btn, .nv-iconbtn, .nv-card, .nv-svc, .nv-shot{transition:none !important}
}
/* -------------------------------------------
   NAV FIXES: hidden overlay + cleaner pills
-------------------------------------------- */

/* 1) CRITICAL: Make the [hidden] attribute actually hide the mobile overlay
   (your .nv-mnav { display:flex; } overrides the browser's hidden behavior) */
.nv-mnav[hidden]{
  display: none !important;
}

/* 2) Ensure the mobile overlay stacks above the header (prevents weird click layers) */
.nv-mnav{
  z-index: 9999;
}

/* 3) Make all top-nav pills the same height (active state was adding a border) */
.nv-nav__list a{
  border: 1px solid transparent; /* keeps size consistent */
}

/* Active/current item: set border COLOR only (border width already exists) */
.nv-nav__list .current-menu-item > a,
.nv-nav__list .current_page_item > a{
  color: var(--text);
  background: rgba(109,94,244,.16);
  border-color: rgba(109,94,244,.25);
}

/* 4) Optional: when slideout is open, prevent the desktop nav from feeling like a "second menu" */
html.nv-menu-open .nv-nav{
  opacity: 0;
  pointer-events: none;
}
/* ============================
   FACE-FRIENDLY CROPPING (REPLACE BLOCK)
   ============================ */

/* Default: keep faces slightly higher in frame for ALL image tiles */
.nv-stack__img img,
.nv-card__img img,
.nv-shot img{
  object-fit: cover;
  object-position: 50% 22%;
}

/* HERO: a touch higher (prevents chopped foreheads) */
.nv-stack__img--a img,
.nv-stack__img--b img,
.nv-stack__img--c img{
  object-position: 50% 25%;
}

/* HOME: Headshots card should be portrait-shaped */
.nv-card--headshots .nv-card__img{
  aspect-ratio: 3 / 4;
}

/* HOME: headshots framing (aim a bit higher) */
.nv-card--headshots .nv-card__img img{
  object-position: 50% 75%;
}

/* PORTFOLIO: headshots category (when you add headshots in grid) */
.nv-shot[data-cat="headshots"] img{
  object-position: 50% 14%;
}
/* Keep original inset sizes, just shift positions */
.nv-stack__img--a{ transform: translate(-10px, 0); }
.nv-stack__img--b{ transform: translate(18px, 150px); }
.nv-stack__img--c{ transform: translate(-150px, 18px); }
/* Home "A small preview" – Headshots card: show more of the top of the head */
.nv-cardgrid--3 a.nv-card[href*="#headshots"] .nv-card__img img{
  object-position: 50% 5% !important; /* smaller % = shows more top */
}
/* ============================
   PRICING BADGE OVERLAP FIX
   ============================ */

/* Reserve space on the right so the price can't sit under the badge */
.nv-price{
  position: relative;
}

.nv-price__badge{
  z-index: 3; /* keep badge on top if they ever touch */
}

/* This is the key: make the top row leave room for the badge */
.nv-price__top{
  padding-right: 140px; /* adjust 120–170px depending on badge width */
}

/* On small screens, remove the reserved space (layout stacks anyway) */
@media (max-width: 760px){
  .nv-price__top{ padding-right: 0; }
}
/* ============================
   CTA BUTTONS NOT CLICKABLE FIX
   (watermark/overlay is blocking clicks)
   ============================ */

.nv-cta__card{
  position: relative;
}

/* Put actual CTA content above any decorative layers */
.nv-cta__left,
.nv-cta__right{
  position: relative;
  z-index: 2;
}

/* Decorative watermark should never capture clicks */
.nv-cta__watermark{
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* If you later add any overlay/pseudo elements, ensure they don't block clicks */
.nv-cta__card::before,
.nv-cta__card::after{
  pointer-events: none;
}
/* ============================
   MOBILE FIXES — SERVICES PRICING
   Fix badge overlapping price + weird CTA button layout
   ============================ */

@media (max-width: 640px){

  /* 1) Stack section header + CTA button so it doesn't float oddly */
  .nv-slab{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nv-slab__right{
    width: 100%;
    justify-content: flex-start;
  }
  .nv-slab__right .nv-btn{
    width: 100%;
    justify-content: center;
    white-space: normal; /* allow wrapping without becoming a tiny circle */
    text-align: center;
  }

  /* 2) Stop "Most popular" badge from overlapping the price */
  .nv-price__badge{
    position: static;           /* remove absolute positioning on mobile */
    display: inline-flex;
    margin: 0 0 10px 0;
  }

  /* 3) Put package name + price on separate lines on mobile */
  .nv-price__top{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nv-price__amt{
    line-height: 1.1;
  }

  /* Optional: slightly tighter text for cleaner fit */
  .nv-price__meta,
  .nv-bullets{
    font-size: 13.5px;
  }
}
/* =========================================
   Seniors gallery section
========================================= */
.nv-seniors {
  padding: 72px 0;
}

.nv-seniors__head {
  margin-bottom: 18px;
  max-width: 820px;
}

.nv-seniors__title {
  margin: 0 0 8px;
}

.nv-seniors__sub {
  margin: 0;
  opacity: 0.9;
}

.nv-seniors__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.nv-seniors__item {
  grid-column: span 6;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  background: rgba(255,255,255,0.04);
}

.nv-seniors__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transform: scale(1.001);
  transition: transform 0.6s ease;
}

.nv-seniors__item:hover img {
  transform: scale(1.06);
}

@media (min-width: 900px) {
  .nv-seniors__item { grid-column: span 4; }
}
/* ============================
   PRICING PAGE: IMAGE + CARDS LAYOUT
   ============================ */

.nv-pricingGrid{
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 16px;
  align-items:start;
  margin-top: 18px;
}

/* Left media card */
.nv-mediaCard{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px; /* stays visible while you scan prices */
}
.nv-mediaCard__img{
  aspect-ratio: 4 / 5;
  background: #0a0a12;
}
.nv-mediaCard__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 20%; /* face-friendly default */
}
.nv-mediaCard__body{
  padding: 14px 16px 16px;
}
.nv-mediaCard__title{
  font-weight: 900;
  letter-spacing:-.01em;
  margin: 0 0 6px;
}
.nv-mediaCard__meta{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

/* Cards on the right: 2 columns looks better with the image beside it */
.nv-pricingGrid .nv-prices{
  grid-template-columns: repeat(2, 1fr);
}

/* Add-ons on the right: single column so it doesn't get cramped */
.nv-pricingGrid .nv-addons{
  grid-template-columns: 1fr;
}

@media (max-width: 980px){
  .nv-pricingGrid{grid-template-columns: 1fr;}
  .nv-mediaCard{position: relative; top: auto;}
  .nv-pricingGrid .nv-prices{grid-template-columns: 1fr;}
}

