
/* ============================================================
   1. SHARED DESIGN TOKENS
   Used as fallback vars by components that don't set their own.
   ============================================================ */
:root {
  --nv-ink:    #0c0c0c;
  --nv-dark:   #1a1a1a;
  --nv-mid:    #3a3a3a;
  --nv-muted:  #909090;
  --nv-border: #e4e4e4;
  --nv-off:    #f8f7f5;
  --nv-white:  #ffffff;
  --nv-gold:   #b8925a;
  --nv-wa:     #25d366;
}


/* ============================================================
   2. KADENCE THEME OVERRIDES
   Layout fixes so custom sections sit flush inside Kadence.
   ============================================================ */
.whs-outer          { margin-top: -90px !important; }
.nv-how-wrapper     { margin-top: 85px !important; }
.nv-marquee-wrapper { margin-top: -35px !important; }

.entry,
.entry.single-entry { box-shadow: none !important; }

.content-area {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

h2 { margin-top: 0 !important; }


/* ============================================================
   3. SHARED COMPONENT PATTERNS
   Eyebrow labels, decorative rules, and separators reused
   across every section. Use these classes directly in HTML.
   ============================================================ */

/* Eyebrow label — small spaced uppercase text above titles */
.nv-eyebrow {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--nv-muted);
  display: block;
  margin-bottom: 18px;
}

/* Decorative rule with centre diamond dot */
.nv-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px auto;
  max-width: 240px;
}
.nv-rule::before,
.nv-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--nv-border);
}
.nv-rule-dot {
  width: 5px;
  height: 5px;
  background: var(--nv-ink);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Light rule variant for dark backgrounds */
.nv-rule--light::before,
.nv-rule--light::after { background: rgba(255,255,255,0.12); }
.nv-rule--light .nv-rule-dot { background: rgba(255,255,255,0.35); }

/* Thin separator line */
.nv-sep {
  width: 36px;
  height: 1px;
  background: var(--nv-ink);
  opacity: 0.2;
  border: none;
  margin-bottom: 22px;
}

/* Section subtitle */
.nv-subtitle {
  font-size: 0.80rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--nv-muted);
  letter-spacing: 0.03em;
  max-width: 420px;
  margin: 0 auto;
}

/* Section heading (Playfair) */
.nv-section-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--nv-ink);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  padding: 0;
  border: none;
}
.nv-section-title em {
  font-style: italic;
  color: var(--nv-mid);
}

/* Dark-bg opening title (white) */
.nv-opening-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  padding: 0;
  border: none;
}
.nv-opening-title em { font-style: italic; color: rgba(255,255,255,0.45); }

/* Dark-bg eyebrow */
.nv-eyebrow--dark { color: rgba(255,255,255,0.30); }

/* Dark-bg subtitle */
.nv-subtitle--dark { color: rgba(255,255,255,0.38); }

/* Shared CTA button — solid dark */
.nv-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--nv-ink);
  color: #fff !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.nv-btn:hover { background: var(--nv-mid); transform: translateY(-2px); color: #fff !important; }

/* Ghost variant */
.nv-btn--ghost {
  background: transparent;
  border: 1px solid var(--nv-ink);
  color: var(--nv-muted) !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.nv-btn--ghost:hover { background: var(--nv-ink); color: #fff !important; }

/* Light ghost (for dark backgrounds) */
.nv-btn--light {
  background: #fff;
  color: var(--nv-ink) !important;
}
.nv-btn--light:hover { background: var(--nv-off); color: var(--nv-ink) !important; }

/* Ghost on dark background */
.nv-btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65) !important;
}
.nv-btn--ghost-light:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff !important;
}

/* "Popular" gold badge */
.nv-badge {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--nv-gold);
  border: 1px solid var(--nv-gold);
  color: #fff;
  padding: 3px 10px;
  vertical-align: middle;
}

/* Dark opening panel (shared by Our Story, Contact, etc.) */
.nv-opening-panel {
  background: var(--nv-ink);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Watermark N */
.nv-opening-panel::before {
  content: 'N';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 40vw;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Dark CTA panel */
.nv-cta-panel {
  background: var(--nv-ink);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nv-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}


/* ============================================================
   4. HERO SLIDER  (.whs-*)
   Full-viewport hero with slide-in content + thumbnails.
   ============================================================ */
.whs-outer {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

.whs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s;
}
.whs-slide.is-active  { opacity: 1; pointer-events: auto; z-index: 2; }
.whs-slide.is-leaving { opacity: 1; z-index: 1; }

.whs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.whs-slide.is-active .whs-bg { transform: scale(1); }
.whs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.10) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.55) 0%, transparent 50%);
}

.whs-inner {
  --whs-site-width: 1290px;
  --whs-side-pad: 40px;
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding-left:  max(var(--whs-side-pad), calc((100% - var(--whs-site-width)) / 2 + var(--whs-side-pad)));
  padding-right: max(var(--whs-side-pad), calc((100% - var(--whs-site-width)) / 2 + var(--whs-side-pad)));
  pointer-events: none;
}

.whs-content {
  pointer-events: auto;
  color: #fff;
  max-width: 460px;
  flex-shrink: 0;
}

/* Animated text elements — shared transition pattern */
.whs-label,
.whs-eyebrow,
.whs-heading,
.whs-desc,
.whs-btn {
  opacity: 0;
  transform: translateY(14px);
}
.whs-label   { font-size: 0.60rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.50); margin-bottom: 18px; transition: opacity 0.6s 0.10s ease, transform 0.6s 0.10s ease; }
.whs-eyebrow { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.30em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 16px; transition: opacity 0.6s 0.28s ease, transform 0.6s 0.28s ease; }
.whs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px !important;
  transform: translateY(20px);
  transition: opacity 0.75s 0.44s ease, transform 0.75s 0.44s ease;
}
.whs-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.78; color: rgba(255,255,255,0.72); max-width: 340px; margin-bottom: 32px; transition: opacity 0.65s 0.62s ease, transform 0.65s 0.62s ease; }
.whs-btn  {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.70);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: opacity 0.6s 0.82s ease, transform 0.6s 0.82s ease, background 0.28s ease;
}
.whs-btn:hover { background: rgba(255,255,255,0.12); }

.whs-slide.is-active .whs-label,
.whs-slide.is-active .whs-eyebrow,
.whs-slide.is-active .whs-heading,
.whs-slide.is-active .whs-desc,
.whs-slide.is-active .whs-btn { opacity: 1; transform: translateY(0); }

.whs-thumbs {
  position: absolute;
  bottom: 42px;
  right: max(40px, calc((100% - 1290px) / 2 + 40px));
  z-index: 6;
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.whs-thumb {
  width: 155px;
  height: 195px;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.whs-thumb:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.65); }
.whs-thumb-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.whs-thumb.is-next .whs-thumb-img { transform: scale(1); }
.whs-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  z-index: 1;
}
.whs-thumb-label {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  z-index: 2;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.whs-dots {
  position: absolute;
  bottom: 18px;
  right: max(40px, calc((100% - 1290px) / 2 + 40px));
  z-index: 7;
  display: flex;
  gap: 8px;
}
.whs-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.whs-dot.is-active { background: #fff; transform: scale(1.25); }

.whs-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: rgba(255,255,255,0.82);
  width: 0%;
  z-index: 8;
  transition: width linear;
}

@media (max-width: 768px) {
  .whs-outer { height: 100svh; min-height: 100svh; }
  .whs-inner { align-items: flex-end; padding-bottom: 230px; padding-left: 24px; padding-right: 24px; }
  .whs-content { max-width: 100%; }
  .whs-heading { font-size: clamp(2.2rem, 9vw, 3rem); }
  .whs-thumbs { bottom: 24px; right: 20px; }
  .whs-thumb { width: 118px; height: 152px; }
  .whs-dots { bottom: 8px; right: auto; left: 50%; transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .whs-thumb { width: 100px; height: 130px; }
  .whs-desc { display: none; }
}


/* ============================================================
   5. STATS BAR  (.nvts-*)
   Dark 3-column stats strip below hero.
   ============================================================ */
.nvts-wrap {
  width: 100%;
  background: rgb(12, 12, 12);
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nvts-wrap *, .nvts-wrap *::before, .nvts-wrap *::after { box-sizing: border-box; }

.nvts-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nvts-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nvts-item:last-child { border-right: none; }

.nvts-icon {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}
.nvts-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.nvts-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .nvts-inner { grid-template-columns: 1fr; }
  .nvts-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 32px 28px; }
  .nvts-item:last-child { border-bottom: none; }
}


/* ============================================================
   6. MARQUEE BAR  (.nv-marquee-*)
   Scrolling feature ticker.
   ============================================================ */
.nv-marquee-wrapper {
  background-color: #0b0f19;
  padding: 22px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.nv-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: nv-scroll-left 40s linear infinite;
}
.nv-marquee-wrapper:hover .nv-marquee-track { animation-play-state: paused; }

.nv-bar-item {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 60px;
}
.nv-bar-divider {
  color: #fff;
  opacity: 0.5;
  font-size: 18px;
  font-weight: 300;
}

@keyframes nv-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .nv-marquee-track { animation-duration: 25s; }
  .nv-bar-item { font-size: 12px; padding: 0 25px; }
}


/* ============================================================
   7. HOW IT WORKS  (.nvh3-*)
   Interactive step panel with progress track + thumbnails.
   ============================================================ */
.nvh3-wrap {
  width: 100%;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  overflow: hidden;
}
.nvh3-wrap *, .nvh3-wrap *::before, .nvh3-wrap *::after { box-sizing: border-box; }

.nvh3-header {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

/* Progress track */
.nvh3-track {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  margin-bottom: 64px;
  position: relative;
}
.nvh3-track-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
}
.nvh3-track-item:not(.nvh3-active) { opacity: 0.38; }
.nvh3-track-item:not(.nvh3-active):hover { opacity: 0.65; }

.nvh3-track-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e4e4e4;
  border: 2px solid #e4e4e4;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  z-index: 2;
}
.nvh3-track-item.nvh3-active .nvh3-track-dot { background: #0c0c0c; border-color: #0c0c0c; transform: scale(1.5); }
.nvh3-track-item.nvh3-done  .nvh3-track-dot { background: #0c0c0c; border-color: #0c0c0c; }

.nvh3-track-line {
  position: absolute;
  top: 5px;
  left: calc(50% + 5px);
  width: calc(100% - 10px);
  height: 1px;
  background: #e4e4e4;
  z-index: 1;
}
.nvh3-track-line-fill { height: 100%; background: #0c0c0c; width: 0%; transition: width 0.5s ease; }
.nvh3-track-item.nvh3-done .nvh3-track-line-fill { width: 100%; }

.nvh3-track-num { font-family: 'Playfair Display', serif; font-size: 0.68rem; color: #909090; font-weight: 400; }
.nvh3-track-item.nvh3-active .nvh3-track-num { color: #0c0c0c; font-weight: 500; }

/* Main panel */
.nvh3-panel-wrap { position: relative; overflow: hidden; }
.nvh3-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #f8f7f5;
  animation: nvh3-fade 0.5s ease;
}
.nvh3-panel.nvh3-show { display: grid; }

@keyframes nvh3-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nvh3-panel-img { position: relative; overflow: hidden; min-height: 480px; }
.nvh3-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  margin: 0; padding: 0; max-width: none;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 1s ease;
}
.nvh3-panel:hover .nvh3-panel-img img { transform: scale(1.04); }

.nvh3-panel-img-num {
  position: absolute;
  top: 24px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.13);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.nvh3-panel-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
}

.nvh3-panel-body {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  position: relative;
}
.nvh3-panel-body::before {
  content: '';
  position: absolute;
  top: 0; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(to right, #0c0c0c, transparent);
  opacity: 0.15;
}
.nvh3-panel-step { font-size: 0.52rem; letter-spacing: 0.42em; text-transform: uppercase; color: #909090; font-weight: 500; margin-bottom: 14px; }
.nvh3-panel-title,  nvh3-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #0c0c0c;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  padding: 0; border: none;
}
.nvh3-panel-title em { font-style: italic; color: #3a3a3a; }
.nvh3-panel-sep { width: 36px; height: 1px; background: #0c0c0c; opacity: 0.2; margin: 22px 0; border: none; }
.nvh3-panel-desc { font-size: 0.84rem; font-weight: 300; color: #3a3a3a; line-height: 1.90; letter-spacing: 0.02em; max-width: 400px; margin: 0 0 36px; }

/* Chips */
.nvh3-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.nvh3-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid #e4e4e4;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: #3a3a3a;
  font-family: 'Raleway', sans-serif;
  border-radius: 2px;
}
.nvh3-chip-dot { width: 4px; height: 4px; border-radius: 50%; background: #0c0c0c; opacity: 0.4; flex-shrink: 0; }

/* Nav buttons */
.nvh3-nav { display: flex; align-items: center; gap: 12px; }
.nvh3-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid #0c0c0c;
  background: transparent;
  cursor: pointer;
  color: #0c0c0c;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.nvh3-nav-btn:hover { background: #0c0c0c; color: #fff; }
.nvh3-nav-btn:disabled { opacity: 0.2; cursor: default; }
.nvh3-nav-btn:disabled:hover { background: transparent; color: #0c0c0c; }
.nvh3-nav-label { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: #909090; font-weight: 400; }

/* Thumbnails */
.nvh3-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: #e4e4e4;
  border-top: 1px solid #e4e4e4;
}
.nvh3-thumb { position: relative; height: 100px; overflow: hidden; cursor: pointer; opacity: 0.5; transition: opacity 0.3s; }
.nvh3-thumb:hover { opacity: 0.75; }
.nvh3-thumb.nvh3-active { opacity: 1; }
.nvh3-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; padding: 0; max-width: none; filter: grayscale(30%); transition: transform 0.6s ease, filter 0.3s; }
.nvh3-thumb.nvh3-active img { filter: grayscale(0%); }
.nvh3-thumb:hover img { transform: scale(1.08); }
.nvh3-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  font-size: 0.46rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
}
.nvh3-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #0c0c0c;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nvh3-thumb.nvh3-active::after { transform: scaleX(1); }

.nvh3-footer { text-align: center; padding: 52px 32px 72px; background: #ffffff; }
.nvh3-footer p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.92rem; color: #ccc; letter-spacing: 0.06em; margin: 0; }

.nvh3-subtitle { max-width: 400px; margin: 0 auto 72px; }

@media (max-width: 820px) {
  .nvh3-panel { grid-template-columns: 1fr; }
  .nvh3-panel-img { min-height: 280px; }
  .nvh3-panel-body { padding: 40px 32px; }
  .nvh3-panel-body::before { left: 32px; right: 32px; }
  .nvh3-thumb { height: 72px; }
  .nvh3-track { padding: 0 16px; }
}
@media (max-width: 560px) {
  .nvh3-header { padding: 56px 24px 0; }
  .nvh3-panel-img { min-height: 220px; }
  .nvh3-panel-body { padding: 32px 24px; }
  .nvh3-panel-body::before { left: 24px; right: 24px; }
  .nvh3-thumb { height: 56px; }
  .nvh3-thumb-label { display: none; }
  .nvh3-track-num { font-size: 0.55rem; }
  .nvh3-panel-title { font-size: 1.9rem; }
}


/* ============================================================
   8. PRICING — STACKED CARDS  (.nvp4-*)
   Alternating two-column cards with photo and content.
   ============================================================ */
.nvp4-wrap {
  width: 100%;
  background: #ffffff;
  color: #0a0a0a;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  padding: 72px 0 80px;
  box-sizing: border-box;
}
.nvp4-wrap *, .nvp4-wrap *::before, .nvp4-wrap *::after { box-sizing: border-box; }

.nvp4-header { text-align: center; margin-bottom: 72px; }

.nvp4-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid #e0e0e0;
  background: #e0e0e0;
}

.nvp4-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.nvp4-card.nvp4-in   { opacity: 1; transform: translateY(0); }
.nvp4-card.nvp4-featured { background: #f5f5f5; }
.nvp4-card:nth-child(even)    { direction: rtl; }
.nvp4-card:nth-child(even) > * { direction: ltr; }

.nvp4-photo { position: relative; overflow: hidden; }
.nvp4-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  margin: 0; padding: 0; max-width: none;
  filter: grayscale(15%) brightness(0.92);
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
}
.nvp4-card:hover .nvp4-photo img { transform: scale(1.05); filter: grayscale(5%) brightness(0.98); }

.nvp4-card:nth-child(odd)  .nvp4-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 50%, #ffffff 100%); pointer-events: none; }
.nvp4-card:nth-child(even) .nvp4-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to left,  transparent 50%, #ffffff 100%); pointer-events: none; }
.nvp4-card.nvp4-featured:nth-child(odd)  .nvp4-photo::after { background: linear-gradient(to right, transparent 50%, #f5f5f5 100%); }
.nvp4-card.nvp4-featured:nth-child(even) .nvp4-photo::after { background: linear-gradient(to left,  transparent 50%, #f5f5f5 100%); }

.nvp4-photo-num {
  position: absolute;
  bottom: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.nvp4-card:nth-child(even) .nvp4-photo-num { left: auto; right: 24px; }

.nvp4-body {
  background: inherit;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.nvp4-card:nth-child(odd)  .nvp4-body::before { content: ''; position: absolute; top: 40px; bottom: 40px; left: 0; width: 1px; background: linear-gradient(to bottom, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent); }
.nvp4-card:nth-child(even) .nvp4-body::before { content: ''; position: absolute; top: 40px; bottom: 40px; right: 0; width: 1px; background: linear-gradient(to bottom, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent); }

.nvp4-tier    { font-size: 0.52rem; letter-spacing: 0.44em; text-transform: uppercase; color: #888888; margin-bottom: 12px; font-weight: 500; }
.nvp4-name    { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 400; color: #0a0a0a; line-height: 1.1; margin: 0 0 2px; padding: 0; border: none; letter-spacing: -0.02em; }
.nvp4-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: #444444; margin-bottom: 22px; letter-spacing: 0.01em; line-height: 1.55; }

.nvp4-price-row { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 8px; }
.nvp4-price { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 4.5vw, 3.8rem); font-weight: 400; color: #0a0a0a; line-height: 1; letter-spacing: -0.03em; }
.nvp4-price-currency { font-family: 'Raleway', sans-serif; font-size: 0.70rem; font-weight: 500; letter-spacing: 0.14em; color: #444444; text-transform: uppercase; align-self: flex-end; margin-bottom: 6px; }

.nvp4-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.nvp4-features li { font-size: 0.74rem; font-weight: 300; color: #444444; line-height: 1.55; display: flex; align-items: flex-start; gap: 12px; letter-spacing: 0.02em; padding-bottom: 9px; border-bottom: 1px solid #e0e0e0; }
.nvp4-features li:last-child { border-bottom: none; padding-bottom: 0; }
.nvp4-features li::before { content: '✓'; font-size: 0.65rem; color: #0a0a0a; flex-shrink: 0; margin-top: 1px; opacity: 0.5; }

.nvp4-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid #0a0a0a;
  color: #0a0a0a !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
  align-self: flex-start;
}
.nvp4-btn:hover             { background: #0a0a0a; color: #fff !important; transform: translateY(-2px); }
.nvp4-btn.nvp4-btn-solid    { background: #0a0a0a; color: #fff !important; }
.nvp4-btn.nvp4-btn-solid:hover { background: #1a1a1a; }

.nvp4-contact {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: #888888;
  text-transform: uppercase;
}
.nvp4-contact a { color: inherit !important; text-decoration: none !important; transition: color 0.25s; }
.nvp4-contact a:hover { color: #0a0a0a !important; }
.nvp4-contact-pipe { opacity: 0.3; }

@media (max-width: 820px) {
  .nvp4-card { grid-template-columns: 1fr; min-height: auto; }
  .nvp4-card:nth-child(even) { direction: ltr; }
  .nvp4-photo { height: 260px; }
  .nvp4-card:nth-child(odd)  .nvp4-photo::after,
  .nvp4-card:nth-child(even) .nvp4-photo::after,
  .nvp4-card.nvp4-featured:nth-child(odd)  .nvp4-photo::after,
  .nvp4-card.nvp4-featured:nth-child(even) .nvp4-photo::after { background: linear-gradient(to top, #ffffff 0%, transparent 55%); }
  .nvp4-card.nvp4-featured .nvp4-photo::after { background: linear-gradient(to top, #f5f5f5 0%, transparent 55%) !important; }
  .nvp4-body::before { display: none; }
  .nvp4-body { padding: 36px 28px; }
  .nvp4-photo-num { font-size: 3.5rem; }
  .nvp4-btn { align-self: stretch; text-align: center; }
}
@media (max-width: 560px) {
  .nvp4-wrap { padding: 52px 0 60px; }
  .nvp4-photo { height: 210px; }
  .nvp4-body { padding: 28px 20px; }
  .nvp4-contact { gap: 12px; }
}


/* ============================================================
   9. PRICING — TABBED PANEL  (.nvp5-*)
   3-tab selector with image + feature list panel.
   ============================================================ */
.nvp5-wrap {
  width: 100%;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  overflow: hidden;
}
.nvp5-wrap *, .nvp5-wrap *::before, .nvp5-wrap *::after { box-sizing: border-box; }

.nvp5-header { text-align: center; padding: 80px 32px; }

/* Tabs */
.nvp5-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #e4e4e4; border-bottom: none; }
.nvp5-tab {
  padding: 28px 24px;
  cursor: pointer;
  border-right: 1px solid #e4e4e4;
  position: relative;
  transition: background 0.25s;
  background: #f8f7f5;
}
.nvp5-tab:last-child { border-right: none; }
.nvp5-tab:hover { background: #f0eeeb; }
.nvp5-tab.nvp5-active { background: #ffffff; margin-bottom: -1px; z-index: 2; }
.nvp5-tab::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
.nvp5-tab.nvp5-active::before { background: #0c0c0c; }

.nvp5-tab-tier  { font-size: 0.50rem; letter-spacing: 0.40em; text-transform: uppercase; color: #909090; font-weight: 500; margin-bottom: 8px; display: block; }
.nvp5-tab-name  { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; color: #0c0c0c; line-height: 1.1; display: block; margin-bottom: 10px; }
.nvp5-tab-price { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 400; color: #0c0c0c; letter-spacing: -0.03em; line-height: 1; }
.nvp5-tab-price sup { font-size: 0.48em; vertical-align: super; font-weight: 400; letter-spacing: 0; }
.nvp5-tab-currency { font-family: 'Raleway', sans-serif; font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; color: #909090; text-transform: uppercase; margin-left: 4px; }
.nvp5-tab-badge { position: absolute; top: 16px; right: 16px; font-size: 0.44rem; letter-spacing: 0.24em; text-transform: uppercase; background: #b8925a; color: #fff; padding: 3px 9px; font-family: 'Raleway', sans-serif; font-weight: 600; }

/* Panel */
.nvp5-panels { border: 1px solid #e4e4e4; position: relative; z-index: 1; }
.nvp5-panel { display: none; grid-template-columns: 1fr 1fr; min-height: 500px; animation: nvp5-fade 0.45s ease; }
.nvp5-panel.nvp5-show { display: grid; }
@keyframes nvp5-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.nvp5-img { position: relative; overflow: hidden; min-height: 460px; }
.nvp5-img img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; padding: 0; max-width: none; filter: brightness(0.88) saturate(0.88); transition: transform 1s ease; }
.nvp5-panel:hover .nvp5-img img { transform: scale(1.04); }
.nvp5-img-num { position: absolute; top: 24px; left: 28px; font-family: 'Playfair Display', serif; font-size: 7rem; font-weight: 700; color: rgba(255,255,255,0.13); line-height: 1; letter-spacing: -0.05em; pointer-events: none; user-select: none; }
.nvp5-img-badge { position: absolute; bottom: 28px; left: 28px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); padding: 8px 18px; font-size: 0.52rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; color: #0c0c0c; font-family: 'Raleway', sans-serif; }

.nvp5-body { padding: 56px 56px 52px; display: flex; flex-direction: column; justify-content: center; background: #ffffff; position: relative; }
.nvp5-body::before { content: ''; position: absolute; top: 0; left: 56px; right: 56px; height: 1px; background: linear-gradient(to right, #0c0c0c, transparent); opacity: 0.12; }

.nvp5-body-tier   { font-size: 0.50rem; letter-spacing: 0.44em; text-transform: uppercase; color: #909090; font-weight: 500; margin-bottom: 12px; }
.nvp5-body-name   { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: #0c0c0c; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 10px; padding: 0; border: none; }
.nvp5-body-name em { font-style: italic; color: #3a3a3a; }
.nvp5-body-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: #3a3a3a; margin-bottom: 22px; letter-spacing: 0.01em; line-height: 1.6; }
.nvp5-body-sep     { width: 36px; height: 1px; background: #0c0c0c; opacity: 0.18; margin-bottom: 22px; border: none; }

.nvp5-body-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.nvp5-body-price { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4vw, 3.6rem); font-weight: 400; color: #0c0c0c; line-height: 1; letter-spacing: -0.03em; }
.nvp5-body-price sup { font-size: 0.50em; vertical-align: super; font-weight: 400; }
.nvp5-body-currency { font-family: 'Raleway', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; color: #909090; text-transform: uppercase; align-self: flex-end; margin-bottom: 5px; }

.nvp5-features { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; }
.nvp5-features li { font-size: 0.76rem; font-weight: 300; color: #3a3a3a; line-height: 1.55; display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #e4e4e4; letter-spacing: 0.02em; }
.nvp5-features li:first-child { border-top: 1px solid #e4e4e4; }
.nvp5-features li::before { content: '✓'; font-size: 0.62rem; color: #0c0c0c; flex-shrink: 0; opacity: 0.45; margin-top: 1px; }

.nvp5-cta-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 15px 36px;
  background: #0c0c0c;
  color: #fff !important;
  font-family: 'Raleway', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.nvp5-cta-btn:hover { background: #3a3a3a; transform: translateY(-2px); color: #fff !important; }
.nvp5-cta-btn.nvp5-ghost { background: transparent; color: #0c0c0c !important; border: 1px solid #0c0c0c; }
.nvp5-cta-btn.nvp5-ghost:hover { background: #0c0c0c; color: #fff !important; }

/* Thumbnails */
.nvp5-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e4e4e4; border: 1px solid #e4e4e4; border-top: none; }
.nvp5-thumb { position: relative; height: 110px; overflow: hidden; cursor: pointer; opacity: 0.45; transition: opacity 0.3s; }
.nvp5-thumb:hover { opacity: 0.7; }
.nvp5-thumb.nvp5-active { opacity: 1; }
.nvp5-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; padding: 0; max-width: none; filter: grayscale(25%); transition: transform 0.6s ease, filter 0.3s; }
.nvp5-thumb.nvp5-active img { filter: grayscale(0%); }
.nvp5-thumb:hover img { transform: scale(1.07); }
.nvp5-thumb-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 14px; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%); font-size: 0.48rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.92); font-weight: 500; font-family: 'Raleway', sans-serif; }
.nvp5-thumb-price { display: block; font-family: 'Playfair Display', serif; font-size: 0.90rem; font-weight: 400; color: rgba(255,255,255,0.95); letter-spacing: -0.01em; margin-bottom: 2px; }
.nvp5-thumb::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #0c0c0c; transform: scaleX(0); transition: transform 0.3s ease; }
.nvp5-thumb.nvp5-active::after { transform: scaleX(1); }

.nvp5-footer { text-align: center; padding: 52px 32px 72px; }
.nvp5-footer p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.90rem; color: #ccc; letter-spacing: 0.06em; margin: 0 0 24px; }
.nvp5-footer-link { font-size: 0.60rem; letter-spacing: 0.24em; text-transform: uppercase; color: #909090; text-decoration: none; border-bottom: 1px solid #e4e4e4; padding-bottom: 2px; transition: color 0.25s, border-color 0.25s; font-family: 'Raleway', sans-serif; }
.nvp5-footer-link:hover { color: #0c0c0c; border-color: #0c0c0c; }

@media (max-width: 820px) {
  .nvp5-panel { grid-template-columns: 1fr; }
  .nvp5-img { min-height: 260px; }
  .nvp5-body { padding: 36px 28px; }
  .nvp5-body::before { left: 28px; right: 28px; }
  .nvp5-cta-btn { align-self: stretch; text-align: center; }
  .nvp5-thumb { height: 80px; }
}
@media (max-width: 560px) {
  .nvp5-header { padding: 56px 24px 0; }
  .nvp5-tab { padding: 18px 14px; }
  .nvp5-tab-name { font-size: 0.95rem; }
  .nvp5-tab-price { font-size: 1.3rem; }
  .nvp5-tab-badge { display: none; }
  .nvp5-img { min-height: 210px; }
  .nvp5-body { padding: 28px 20px; }
  .nvp5-body::before { left: 20px; right: 20px; }
  .nvp5-thumb { height: 64px; }
  .nvp5-thumb-price { font-size: 0.75rem; }
}


/* ============================================================
   10. HOW IT WORKS — STACK CARDS  (.nvsc-*)
   Sticky scroll-stacking step cards.
   ============================================================ */
.nvsc-wrap *, .nvsc-wrap *::before, .nvsc-wrap *::after { box-sizing: border-box; }

.nvsc-header { text-align: center; padding: 80px 24px 72px; }

.nvsc-stack { position: relative; padding: 0 24px 80px; }

.nvsc-card {
  position: sticky;
  top: 80px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 24px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 52px 60px 52px 52px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 40px;
  align-items: start;
  transform-origin: top center;
  will-change: transform;
  transition: box-shadow 0.4s ease;
}

.nvsc-card:nth-child(1) { z-index: 10; box-shadow: 0  2px  8px rgba(0,0,0,0.06); }
.nvsc-card:nth-child(2) { z-index: 20; box-shadow: 0  4px 16px rgba(0,0,0,0.08); top:  96px; }
.nvsc-card:nth-child(3) { z-index: 30; box-shadow: 0  6px 24px rgba(0,0,0,0.10); top: 112px; }
.nvsc-card:nth-child(4) { z-index: 40; box-shadow: 0  8px 32px rgba(0,0,0,0.12); top: 128px; }
.nvsc-card:nth-child(5) { z-index: 50; box-shadow: 0 10px 40px rgba(0,0,0,0.14); top: 144px; }
.nvsc-card:nth-child(6) { z-index: 60; box-shadow: 0 12px 48px rgba(0,0,0,0.16); top: 160px; }

.nvsc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #0a0a0a; opacity: 0.12; transition: opacity 0.3s; }
.nvsc-card:nth-child(2)::before { opacity: 0.20; }
.nvsc-card:nth-child(3)::before { opacity: 0.30; }
.nvsc-card:nth-child(4)::before { opacity: 0.45; }
.nvsc-card:nth-child(5)::before { opacity: 0.65; }
.nvsc-card:nth-child(6)::before { opacity: 1.00; }

.nvsc-num-col { display: flex; flex-direction: column; align-items: flex-start; padding-top: 4px; border-right: 1px solid #e8e8e8; padding-right: 40px; }
.nvsc-step-index { font-size: 0.50rem; letter-spacing: 0.38em; text-transform: uppercase; color: #aaa; font-weight: 500; margin-bottom: 10px; font-family: 'Raleway', sans-serif; }
.nvsc-big-num { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 7vw, 6rem); font-weight: 400; line-height: 0.9; color: #0a0a0a; letter-spacing: -0.04em; }

.nvsc-card:nth-child(1) .nvsc-big-num { color: #d0d0d0; }
.nvsc-card:nth-child(2) .nvsc-big-num { color: #b0b0b0; }
.nvsc-card:nth-child(3) .nvsc-big-num { color: #888888; }
.nvsc-card:nth-child(4) .nvsc-big-num { color: #555555; }
.nvsc-card:nth-child(5) .nvsc-big-num { color: #2a2a2a; }
.nvsc-card:nth-child(6) .nvsc-big-num { color: #0a0a0a; }

.nvsc-card-label { font-size: 0.54rem; letter-spacing: 0.38em; text-transform: uppercase; color: #888; font-weight: 500; margin-bottom: 12px; font-family: 'Raleway', sans-serif; }
.nvsc-card-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 400; color: #0a0a0a; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; padding: 0; border: none; }
.nvsc-card-title em { font-style: italic; color: #555; }
.nvsc-card-sep  { width: 32px; height: 1px; background: #0a0a0a; opacity: 0.2; margin-bottom: 18px; border: none; }
.nvsc-card-desc { font-size: 0.82rem; font-weight: 300; color: #555; line-height: 1.85; letter-spacing: 0.02em; max-width: 480px; margin: 0; }

.nvsc-corner { position: absolute; bottom: 22px; right: 28px; font-family: 'Playfair Display', serif; font-size: 0.65rem; font-style: italic; color: #ddd; letter-spacing: 0.08em; pointer-events: none; user-select: none; }

.nvsc-footer-note { text-align: center; padding: 0 24px 80px; }
.nvsc-footer-note p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.92rem; color: #aaa; letter-spacing: 0.06em; margin: 0; }

@media (max-width: 680px) {
  .nvsc-card { grid-template-columns: 1fr; gap: 0; padding: 36px 28px 32px; }
  .nvsc-num-col { flex-direction: row; align-items: baseline; gap: 14px; border-right: none; border-bottom: 1px solid #e8e8e8; padding-right: 0; padding-bottom: 18px; margin-bottom: 22px; }
  .nvsc-step-index { margin-bottom: 0; }
  .nvsc-big-num { font-size: 3rem; }
  .nvsc-card:nth-child(2) { top:  88px; }
  .nvsc-card:nth-child(3) { top:  96px; }
  .nvsc-card:nth-child(4) { top: 104px; }
  .nvsc-card:nth-child(5) { top: 112px; }
  .nvsc-card:nth-child(6) { top: 120px; }
  .nvsc-header { padding: 60px 24px 52px; }
}
@media (max-width: 480px) { .nvsc-stack { padding-bottom: 60px; } }


/* ============================================================
   11. OUR STORY  (.nvos-*)
   ============================================================ */
.nvos-wrap {
  width: 100%;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  overflow-x: hidden;
}
.nvos-wrap *, .nvos-wrap *::before, .nvos-wrap *::after { box-sizing: border-box; }

/* Opening */
.nvos-opening { background: #0c0c0c; padding: 100px 48px 96px; text-align: center; position: relative; overflow: hidden; }
.nvos-opening::before { content: 'N'; position: absolute; font-family: 'Playfair Display', serif; font-size: 40vw; font-weight: 700; color: rgba(255,255,255,0.025); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; user-select: none; line-height: 1; }
.nvos-opening-eyebrow { font-size: 0.56rem; letter-spacing: 0.48em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 32px; font-weight: 400; }
.nvos-opening-quote { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 400; font-style: italic; color: #ffffff; line-height: 1.3; max-width: 860px; margin: 0 auto 36px; letter-spacing: -0.01em; }
.nvos-opening-quote em { font-style: normal; color: rgba(255,255,255,0.45); }
.nvos-opening-sub { font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.38); font-weight: 300; }

/* Story body */
.nvos-story { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #e4e4e4; }
.nvos-story-left { padding: 80px 60px 80px 48px; border-right: 1px solid #e4e4e4; display: flex; flex-direction: column; justify-content: center; background: #f8f7f5; position: relative; }
.nvos-story-left::before { content: ''; position: absolute; top: 0; left: 48px; right: 60px; height: 2px; background: #0c0c0c; }
.nvos-story-pull { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; color: #0c0c0c; letter-spacing: -0.02em; margin: 0 0 28px; padding: 0; border: none; }
.nvos-story-pull em { font-style: italic; color: #3a3a3a; }
.nvos-story-origin { font-size: 0.72rem; font-weight: 300; color: #909090; line-height: 1.8; letter-spacing: 0.04em; max-width: 340px; }
.nvos-story-year { margin-top: 48px; font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 700; color: #e4e4e4; letter-spacing: -0.05em; line-height: 1; user-select: none; }
.nvos-story-right { padding: 80px 48px 80px 60px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.nvos-story-p { font-size: 0.84rem; font-weight: 300; color: #3a3a3a; line-height: 1.95; letter-spacing: 0.02em; margin: 0; }
.nvos-story-p strong { font-weight: 500; color: #0c0c0c; }
.nvos-story-sep { width: 36px; height: 1px; background: #0c0c0c; opacity: 0.15; border: none; margin: 4px 0; }

/* Beliefs */
.nvos-beliefs { background: #f8f7f5; padding: 88px 48px; border-bottom: 1px solid #e4e4e4; }
.nvos-beliefs-header { text-align: center; margin-bottom: 64px; }
.nvos-beliefs-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; color: #0c0c0c; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 4px; padding: 0; border: none; }
.nvos-beliefs-title em { font-style: italic; color: #3a3a3a; }
.nvos-beliefs-sub { font-size: 0.78rem; color: #909090; max-width: 380px; margin: 0 auto; line-height: 1.85; font-weight: 300; letter-spacing: 0.03em; }
.nvos-beliefs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e4e4e4; border: 1px solid #e4e4e4; }

.nvos-belief { background: #ffffff; padding: 48px 40px; position: relative; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.nvos-belief.nvos-in { opacity: 1; transform: translateY(0); }
.nvos-belief::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #0c0c0c; }
.nvos-belief:nth-child(1)::before { opacity: 0.25; }
.nvos-belief:nth-child(2)::before { opacity: 0.60; }
.nvos-belief:nth-child(3)::before { opacity: 1.00; }
.nvos-belief-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: #e4e4e4; line-height: 1; letter-spacing: -0.04em; margin-bottom: 20px; user-select: none; }
.nvos-belief-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: #0c0c0c; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 6px; padding: 0; border: none; }
.nvos-belief-title em { font-style: italic; color: #3a3a3a; }
.nvos-belief-sep { width: 28px; height: 1px; background: #0c0c0c; opacity: 0.18; margin: 16px 0; border: none; }
.nvos-belief-desc { font-size: 0.76rem; font-weight: 300; color: #3a3a3a; line-height: 1.85; letter-spacing: 0.02em; margin: 0; }

/* Promise / Stats */
.nvos-promise { padding: 88px 48px; border-bottom: 1px solid #e4e4e4; }
.nvos-promise-header { text-align: center; margin-bottom: 64px; }
.nvos-promise-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; color: #0c0c0c; letter-spacing: -0.02em; margin: 0 0 4px; padding: 0; border: none; line-height: 1.05; }
.nvos-promise-title em { font-style: italic; color: #3a3a3a; }

.nvos-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #e4e4e4; }
.nvos-stat { padding: 48px 40px; border-right: 1px solid #e4e4e4; text-align: center; opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.nvos-stat:last-child { border-right: none; }
.nvos-stat.nvos-in { opacity: 1; transform: translateY(0); }
.nvos-stat-num { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 400; color: #0c0c0c; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; display: block; }
.nvos-stat-num em { font-style: italic; font-size: 0.65em; color: #3a3a3a; }
.nvos-stat-label { font-size: 0.60rem; letter-spacing: 0.30em; text-transform: uppercase; color: #909090; font-weight: 400; line-height: 1.6; }
.nvos-stat-sep { width: 24px; height: 1px; background: #0c0c0c; opacity: 0.15; margin: 16px auto; border: none; }
.nvos-stat-desc { font-size: 0.72rem; color: #3a3a3a; line-height: 1.75; font-weight: 300; letter-spacing: 0.02em; max-width: 200px; margin: 0 auto; }

/* CTA */
.nvos-cta { background: #0c0c0c; padding: 96px 48px; text-align: center; position: relative; overflow: hidden; }
.nvos-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%); pointer-events: none; }
.nvos-cta-eyebrow { font-size: 0.56rem; letter-spacing: 0.48em; text-transform: uppercase; color: rgba(255,255,255,0.30); display: block; margin-bottom: 24px; font-weight: 400; }
.nvos-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 400; color: #ffffff; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 8px; padding: 0; border: none; }
.nvos-cta-title em { font-style: italic; color: rgba(255,255,255,0.50); }
.nvos-cta-sub { font-size: 0.80rem; color: rgba(255,255,255,0.42); max-width: 380px; margin: 0 auto 44px; line-height: 1.9; font-weight: 300; letter-spacing: 0.03em; }
.nvos-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .nvos-story { grid-template-columns: 1fr; }
  .nvos-story-left { border-right: none; border-bottom: 1px solid #e4e4e4; padding: 56px 32px; }
  .nvos-story-left::before { left: 32px; right: 32px; }
  .nvos-story-right { padding: 56px 32px; gap: 20px; }
  .nvos-beliefs-grid { grid-template-columns: 1fr; }
  .nvos-stats { grid-template-columns: 1fr; }
  .nvos-stat { border-right: none; border-bottom: 1px solid #e4e4e4; }
  .nvos-stat:last-child { border-bottom: none; }
  .nvos-opening { padding: 72px 32px; }
  .nvos-beliefs { padding: 64px 32px; }
  .nvos-promise { padding: 64px 32px; }
  .nvos-cta { padding: 72px 32px; }
}
@media (max-width: 560px) {
  .nvos-opening-quote { font-size: 1.8rem; }
  .nvos-cta-buttons { flex-direction: column; gap: 12px; }
  .nvos-belief { padding: 36px 28px; }
  .nvos-stat { padding: 36px 28px; }
}


/* ============================================================
   12. CONTACT PAGE  (.nvct-*)
   ============================================================ */
.nvct-wrap {
  width: 100%;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  overflow-x: hidden;
}
.nvct-wrap *, .nvct-wrap *::before, .nvct-wrap *::after { box-sizing: border-box; }

/* Opening */
.nvct-opening { background: #0c0c0c !important; padding: 90px 48px 88px; text-align: center; position: relative; overflow: hidden; }
.nvct-opening::before { content: 'N'; position: absolute; font-family: 'Playfair Display', serif; font-size: 42vw; font-weight: 700; color: rgba(255,255,255,0.022); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; user-select: none; line-height: 1; }
.nvct-opening-eyebrow { font-size: 0.56rem; letter-spacing: 0.48em; text-transform: uppercase; color: rgba(255,255,255,0.30); display: block; margin-bottom: 22px; font-weight: 400; }
.nvct-opening-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 400; line-height: 1; color: #fff; margin: 0 0 6px; padding: 0; border: none; letter-spacing: -0.02em; }
.nvct-opening-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.nvct-opening-sub { font-size: 0.80rem; color: rgba(255,255,255,0.38); max-width: 400px; margin: 0 auto; line-height: 1.9; font-weight: 300; letter-spacing: 0.03em; }

/* Split layout */
.nvct-split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #e4e4e4; min-height: 600px; }

.nvct-form-side { padding: 72px 60px 72px 48px; border-right: 1px solid #e4e4e4; position: relative; }
.nvct-form-side::before { content: ''; position: absolute; top: 0; left: 48px; right: 60px; height: 2px; background: #0c0c0c; }
.nvct-form-header { margin-bottom: 40px; }
.nvct-form-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: #0c0c0c; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 6px; padding: 0; border: none; }
.nvct-form-title em { font-style: italic; color: #3a3a3a; }
.nvct-form-sub { font-size: 0.76rem; color: #909090; line-height: 1.75; font-weight: 300; margin: 10px 0 0; letter-spacing: 0.02em; }

.nvct-form  { display: flex; flex-direction: column; gap: 20px; }
.nvct-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nvct-field { display: flex; flex-direction: column; gap: 7px; }
.nvct-label { font-size: 0.52rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: #3a3a3a; }

.nvct-input,
.nvct-select,
.nvct-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  border-radius: 0;
}
.nvct-input:focus, .nvct-select:focus, .nvct-textarea:focus { border-color: #0c0c0c; }
.nvct-input::placeholder, .nvct-textarea::placeholder { color: #bbb; }
.nvct-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.nvct-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }

.nvct-submit { display: inline-block; padding: 16px 40px; background: #0c0c0c; color: #fff !important; font-family: 'Raleway', sans-serif; font-size: 0.60rem; font-weight: 600; letter-spacing: 0.30em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; align-self: flex-start; margin-top: 8px; }
.nvct-submit:hover { background: #3a3a3a; transform: translateY(-2px); }

.nvct-success { display: none; padding: 20px 24px; border: 1px solid #e4e4e4; background: #f8f7f5; margin-top: 16px; }
.nvct-success p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: #3a3a3a; margin: 0; }

/* Info side */
.nvct-info-side { padding: 72px 48px 72px 60px; background: #f8f7f5; display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.nvct-info-block { display: flex; flex-direction: column; gap: 28px; }
.nvct-info-item { display: flex; flex-direction: column; gap: 6px; }
.nvct-info-tag { font-size: 0.50rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: #909090; }
.nvct-info-val { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; color: #0c0c0c; letter-spacing: -0.01em; }
.nvct-info-val a { color: inherit !important; text-decoration: none !important; transition: color 0.25s; }
.nvct-info-val a:hover { color: #3a3a3a !important; }
.nvct-info-note { font-size: 0.68rem; color: #909090; font-weight: 300; line-height: 1.65; letter-spacing: 0.02em; }
.nvct-info-sep { width: 36px; height: 1px; background: #e4e4e4; border: none; }

.nvct-wa-btn { display: flex; align-items: center; gap: 14px; padding: 18px 24px; background: #ffffff; border: 1px solid #e4e4e4; text-decoration: none !important; transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s; cursor: pointer; }
.nvct-wa-btn:hover { border-color: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.12); transform: translateY(-2px); }
.nvct-wa-icon { width: 40px; height: 40px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nvct-wa-icon svg { width: 20px; height: 20px; fill: #fff; }
.nvct-wa-label { font-size: 0.54rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: #0c0c0c; display: block; margin-bottom: 3px; }
.nvct-wa-sub { font-size: 0.68rem; color: #909090; font-weight: 300; letter-spacing: 0.02em; }

.nvct-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.nvct-social-link { display: inline-block; padding: 9px 18px; border: 1px solid #e4e4e4; font-size: 0.52rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #3a3a3a !important; text-decoration: none !important; transition: border-color 0.25s, color 0.25s; }
.nvct-social-link:hover { border-color: #0c0c0c; color: #0c0c0c !important; }

.nvct-hours { padding: 24px; border: 1px solid #e4e4e4; background: #ffffff; }
.nvct-hours-title { font-size: 0.50rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: #909090; margin-bottom: 14px; display: block; }
.nvct-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #e4e4e4; }
.nvct-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.nvct-hours-day  { font-size: 0.68rem; color: #3a3a3a; font-weight: 300; letter-spacing: 0.04em; }
.nvct-hours-time { font-family: 'Playfair Display', serif; font-size: 0.75rem; color: #0c0c0c; }

/* FAQ */
.nvct-faq { background: #f8f7f5; padding: 88px 48px; border-bottom: 1px solid #e4e4e4; }
.nvct-faq-header { text-align: center; margin-bottom: 60px; }
.nvct-faq-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: #0c0c0c; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 4px; padding: 0; border: none; }
.nvct-faq-title em { font-style: italic; color: #3a3a3a; }
.nvct-faq-sub { font-size: 0.78rem; color: #909090; max-width: 360px; margin: 0 auto; line-height: 1.85; font-weight: 300; letter-spacing: 0.03em; }
.nvct-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #e4e4e4; border: 1px solid #e4e4e4; }

.nvct-faq-item { background: #ffffff; padding: 0; cursor: pointer; position: relative; opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.nvct-faq-item.nvct-in { opacity: 1; transform: translateY(0); }
.nvct-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 32px; font-size: 0.80rem; font-weight: 500; color: #0c0c0c; letter-spacing: 0.02em; line-height: 1.45; transition: background 0.2s; user-select: none; }
.nvct-faq-item:hover .nvct-faq-q { background: #f8f7f5; }
.nvct-faq-icon { width: 22px; height: 22px; border: 1px solid #e4e4e4; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: #909090; transition: transform 0.3s, border-color 0.3s, color 0.3s; line-height: 1; }
.nvct-faq-item.nvct-open .nvct-faq-icon { transform: rotate(45deg); border-color: #0c0c0c; color: #0c0c0c; }
.nvct-faq-a { display: none; padding: 20px 32px 28px; font-size: 0.76rem; font-weight: 300; color: #3a3a3a; line-height: 1.85; letter-spacing: 0.02em; border-top: 1px solid #e4e4e4; }
.nvct-faq-item.nvct-open .nvct-faq-a { display: block; }

/* CTA */
.nvct-cta { background: #0c0c0c; padding: 88px 48px; text-align: center; position: relative; overflow: hidden; }
.nvct-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.018) 0%, transparent 60%); pointer-events: none; }
.nvct-cta-eyebrow { font-size: 0.56rem; letter-spacing: 0.48em; text-transform: uppercase; color: rgba(255,255,255,0.28); display: block; margin-bottom: 22px; font-weight: 400; }
.nvct-cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 8px; padding: 0; border: none; }
.nvct-cta-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.nvct-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.38); max-width: 360px; margin: 0 auto 40px; line-height: 1.9; font-weight: 300; letter-spacing: 0.03em; }
.nvct-cta-btn { display: inline-block; padding: 16px 44px; background: #fff; color: #0c0c0c !important; font-family: 'Raleway', sans-serif; font-size: 0.60rem; font-weight: 600; letter-spacing: 0.30em; text-transform: uppercase; text-decoration: none !important; transition: background 0.25s, transform 0.2s; cursor: pointer; }
.nvct-cta-btn:hover { background: #f8f7f5; transform: translateY(-2px); color: #0c0c0c !important; }

@media (max-width: 860px) {
  .nvct-split { grid-template-columns: 1fr; }
  .nvct-form-side { border-right: none; border-bottom: 1px solid #e4e4e4; padding: 52px 32px; }
  .nvct-form-side::before { left: 32px; right: 32px; }
  .nvct-info-side { padding: 52px 32px; }
  .nvct-faq-grid { grid-template-columns: 1fr; }
  .nvct-faq { padding: 64px 32px; }
  .nvct-opening { padding: 70px 28px; }
  .nvct-cta { padding: 70px 28px; }
}
@media (max-width: 560px) {
  .nvct-row { grid-template-columns: 1fr; }
  .nvct-submit { align-self: stretch; text-align: center; }
  .nvct-faq-q { padding: 22px 20px; font-size: 0.74rem; }
  .nvct-faq-a { padding: 16px 20px 22px; }
}


/* ============================================================
   13. WEDDING TEMPLATES GRID  (.wedding-template-*, .theme-*)
   Filter buttons + card grid for template listing page.
   ============================================================ */
.wedding-template-grid {
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Open Sans', sans-serif;
}
.grid-title {

  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--nv-ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
  border: none;
}

/* Filter buttons */
.theme-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: #555;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}
.filter-btn:hover,
.filter-btn.active { background: #111; border-color: #111; color: #fff; }

/* Card grid */
.themes-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.theme-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }

.theme-image-placeholder {
  background-color: #e5e3df;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 4/3;
  position: relative;
  padding: 16px;
  border-bottom: 1px solid #ebebeb;
}
.mt5{
    margin-top: 5px !important;
}
.card-badge {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  display: inline-block;
}

  .nvrf-wrap {
    width: 100%;
    background: #ffffff;
    color: var(--nv-ink);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .nvrf-wrap *, .nvrf-wrap *::before, .nvrf-wrap *::after { box-sizing: border-box; }

  /* ── Opening panel (reuses nv-opening-panel pattern) ───────── */
  .nvrf-opening {
    background: var(--nv-ink);
    padding: 88px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .nvrf-opening::before {
    content: 'R';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 38vw;
    font-weight: 700;
    color: rgba(255,255,255,0.025);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    line-height: 1;
  }

  .nvrf-opening-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    padding: 0;
    border: none;
  }
  .nvrf-opening-title em { font-style: italic; color: rgba(255,255,255,0.40); }

  .nvrf-opening-sub {
    font-size: 0.80rem;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    max-width: 420px;
    margin: 16px auto 0;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  /* ── Section container ─────────────────────────────────────── */
  .nvrf-sections {
    padding: 80px 0;
    background: #ffffff;
  }

  .nvrf-inner {
   
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ── Each policy block ─────────────────────────────────────── */
  .nvrf-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 48px;
    align-items: start;
    padding: 56px 0;
    border-bottom: 1px solid var(--nv-border);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .nvrf-block.nvrf-in { opacity: 1; transform: translateY(0); }
  .nvrf-block:first-child { padding-top: 0; }
  .nvrf-block:last-child  { border-bottom: none; }

  /* Left: big number */
  .nvrf-num {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0px;
    border-right: 1px solid var(--nv-border);
    padding-top: 4px;
  }
  .nvrf-num-index {
    font-size: 0.50rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--nv-muted);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 8px;
  }
  .nvrf-big-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--nv-border);
  }
  .nvrf-block:nth-child(2) .nvrf-big-num { color: #c8c8c8; }
  .nvrf-block:nth-child(3) .nvrf-big-num { color: #888; }

  /* Right: content */
  .nvrf-body { padding-left: 0; }

  .nvrf-tier-label {
    font-size: 0.50rem;
    font-weight: 600;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: var(--nv-muted);
    display: block;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
  }

  .nvrf-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--nv-ink);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    padding: 0;
    border: none;
  }
  .nvrf-title em { font-style: italic; color: var(--nv-mid); }

  /* reuse nv-sep */
  .nvrf-sep {
    width: 36px;
    height: 1px;
    background: var(--nv-ink);
    opacity: 0.15;
    margin: 18px 0 20px;
    border: none;
  }

  .nvrf-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--nv-mid);
    line-height: 1.92;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
  }
  .nvrf-desc:last-child { margin-bottom: 0; }

  /* Sub-items (cancellation tiers) */
  .nvrf-sub {
    margin: 22px 0;
    padding: 22px 24px;
    border-left: 2px solid var(--nv-ink);
    background: var(--nv-off);
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0 20px;
    align-items: start;
  }

  .nvrf-sub-label {
    font-size: 0.50rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--nv-ink);
    padding-top: 2px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
  }

  .nvrf-sub-text {
    font-size: 0.79rem;
    font-weight: 300;
    color: var(--nv-mid);
    line-height: 1.85;
    letter-spacing: 0.02em;
    margin: 0;
  }

  /* Status chips — reuse nvh3-chip pattern */
  .nvrf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
  }
  .nvrf-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border: 1px solid var(--nv-border);
    font-size: 0.60rem;
    font-weight: 400;
    letter-spacing: 0.10em;
    color: var(--nv-mid);
    font-family: 'Raleway', sans-serif;
  }
  .nvrf-chip-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .nvrf-chip--no  .nvrf-chip-dot { background: #c0392b; }
  .nvrf-chip--yes .nvrf-chip-dot { background: #27ae60; }
  .nvrf-chip--neu .nvrf-chip-dot { background: var(--nv-gold); }
  .nvrf-chip--no  { border-color: rgba(192,57,43,0.25);  color: #c0392b; }
  .nvrf-chip--yes { border-color: rgba(39,174,96,0.25);  color: #27ae60; }

  /* ── Blockquote — reuse nv-cta-panel feel ──────────────────── */
  .nvrf-quote-wrap {
    background: var(--nv-ink);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .nvrf-quote-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
    pointer-events: none;
  }

  .nvrf-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 20px;
    letter-spacing: -0.01em;
  }
  .nvrf-quote em { font-style: normal; color: rgba(255,255,255,0.40); }
  .nvrf-quote-cite {
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    font-family: 'Raleway', sans-serif;
  }

  /* ── CTA nudge ─────────────────────────────────────────────── */
  .nvrf-cta {
    text-align: center;
    padding: 72px 48px 80px;
    background: #ffffff;
    border-top: 1px solid var(--nv-border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .nvrf-cta.nvrf-in { opacity: 1; transform: translateY(0); }

  .nvrf-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--nv-ink);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    padding: 0;
    border: none;
  }
  .nvrf-cta-title em { font-style: italic; color: var(--nv-mid); }

  .nvrf-cta-sub {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--nv-muted);
    max-width: 380px;
    margin: 10px auto 36px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
  
  .nv-home-offer-wrap{
  background:#ffffff;
  padding:80px 40px;
  font-family:'Raleway',sans-serif;
}

.nv-home-offer-hdr{
  text-align:center;
  margin-bottom:52px;
}

.nv-home-offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:16px;
}
.nv-home-offer-grid--2col{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.nv-home-pcard{
  border-radius:20px;
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:420px;
  cursor:pointer;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:0 8px 32px rgba(0,0,0,0.10);
}
.nv-home-pcard:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 48px rgba(0,0,0,0.18);
}

/* photo bg — solid colour gradients matching each category feel */
.nv-home-pcard-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.nv-home-pcard--wedding .nv-home-pcard-bg{
    background-image: url('https://nevoura.com/wp-content/uploads/2026/04/Hero-slider-7-scaled.jpg?w=1600&q=80');
}
.nv-home-pcard--corporate .nv-home-pcard-bg{
    background-image: url('https://nevoura.com/wp-content/uploads/2026/05/Young_man_and_women_party_202605092215.jpeg?w=1600&q=80');
}
.nv-home-pcard--birthday .nv-home-pcard-bg{
    background-image: url('https://nevoura.com/wp-content/uploads/2026/05/bday.jpg?w=1600&q=80');
}
.nv-home-pcard--thankyou .nv-home-pcard-bg{
    background-image: url('https://nevoura.com/wp-content/uploads/2026/05/dinner-night.jpg?w=1600&q=80');
}
.nv-home-pcard--custom .nv-home-pcard-bg{
    background-image: url('https://nevoura.com/wp-content/uploads/2026/05/Other-occasions.jpg?w=1600&q=80');
}

/* overlay gradient so bottom text is readable */
.nv-home-pcard-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.05) 100%);
}

/* dot indicator (like the reference) */
.nv-home-pcard-dots{
  position:absolute;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:5px;
  z-index:3;
}
.nv-home-pcard-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
}
.nv-home-pcard-dot.active{background:rgba(255,255,255,0.90);}

/* specialty badge top-left */
.nv-home-pcard-specialty{
  position:absolute;
  top:18px;
  left:18px;
  z-index:4;
  background:var(--nv-gold);
  color:#fff;
  font-family:'Raleway',sans-serif;
  font-size:0.44rem;
  font-weight:600;
  letter-spacing:0.24em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:20px;
}

/* content sits at bottom */
.nv-home-pcard-body{
  position:relative;
  z-index:3;
  margin-top:auto;
  padding:24px 22px 0;
}

.nv-home-pcard-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.nv-home-pcard-title{
  font-family:'Playfair Display',serif;
  font-size:1.25rem;
  font-weight:400;
  color:#ffffff;
  line-height:1.15;
  margin:0;
}
.nv-home-pcard-price{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.20);
  color:#fff;
  font-family:'Raleway',sans-serif;
  font-size:0.60rem;
  font-weight:600;
  letter-spacing:0.12em;
  padding:4px 12px;
  border-radius:20px;
  white-space:nowrap;
  flex-shrink:0;
}

.nv-home-pcard-desc{
  font-size:0.70rem;
  font-weight:300;
  color:rgba(255,255,255,0.60);
  line-height:1.75;
  letter-spacing:0.02em;
  margin-bottom:16px;
  font-family:'Raleway',sans-serif;
}

.nv-home-pcard-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:18px;
}
.nv-home-pcard-chip{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.75);
  font-family:'Raleway',sans-serif;
  font-size:0.54rem;
  font-weight:400;
  letter-spacing:0.10em;
  padding:4px 12px;
  border-radius:20px;
  white-space:nowrap;
}

/* reserve button */
.nv-home-pcard-btn{
  display:block;
  width:100%;
  padding:14px;
  background:#ffffff;
  color:var(--nv-ink);
  font-family:'Raleway',sans-serif;
  font-size:0.58rem;
  font-weight:600;
  letter-spacing:0.28em;
  text-transform:uppercase;
  text-align:center;
  text-decoration:none;
  border-radius:0 0 20px 20px;
  margin:0 -0px;
  transition:background 0.2s;
  position:relative;
  z-index:3;
}
.nv-home-pcard-btn:hover{background:#f5f5f5;}

@media(max-width:700px){
  .nv-home-offer-grid { grid-template-columns: 1fr 1fr; }
  .nv-home-offer-grid--2col { grid-template-columns: 1fr 1fr; }
  .nv-home-offer-wrap { padding: 60px 20px; }
  .nv-home-pcard { min-height: 340px; }
}

@media(max-width:520px){
  .nv-home-offer-grid,
  .nv-home-offer-grid--2col { grid-template-columns: 1fr; }
  .nv-home-pcard { min-height: 300px; }
}

  @media (max-width: 680px) {
    .nvrf-opening { padding: 72px 28px 60px; }
    .nvrf-inner   { padding: 0 24px; }
    .nvrf-block   { grid-template-columns: 1fr; gap: 0; padding: 44px 0; }
    .nvrf-num     { flex-direction: row; align-items: baseline; gap: 14px; border-right: none; border-bottom: 1px solid var(--nv-border); padding-right: 0; padding-bottom: 16px; margin-bottom: 22px; }
    .nvrf-big-num { font-size: 3rem; }
    .nvrf-sub     { grid-template-columns: 1fr; gap: 6px; }
    .nvrf-quote-wrap { padding: 56px 28px; }
    .nvrf-cta     { padding: 56px 28px 64px; }
  }


.theme-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.theme-title { margin: 0; font-size: 16px; color: #222; font-weight: 400; font-family: 'Open Sans', sans-serif; text-transform: uppercase; }

.theme-footer { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.theme-price { font-size: 16px; font-weight: 700; color: #222; }
.theme-price ins { text-decoration: none; }
.theme-price del { opacity: 0.5; font-weight: 400; font-size: 13px; margin-right: 4px; }

.theme-actions { display: flex; gap: 8px; }
.btn-card { padding: 8px 18px; border-radius: 30px; font-size: 14px; font-weight: 600; text-decoration: none !important; transition: all 0.2s ease; }
.btn-preview { background: #fff; color: #222; border: 1px solid #d4d4d4; }
.btn-preview:hover { border-color: #222; background: #fafafa; }
.btn-cart { background: #111; color: #fff; border: 1px solid #111; }
.btn-cart:hover { background: #000; transform: scale(1.02); }


