/*
 * MVIBZ Social Media Agency — Page Template Stylesheet
 * File:    mvibz-style.css
 * Enqueue: wp_enqueue_style('mvibz-style', get_template_directory_uri() . '/css/mvibz-style.css', [], '1.0.0');
 * ─────────────────────────────────────────────────────
 */

/* ══════════════════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════════════════ */
:root {
  --mvibz-gold:       #C9A84C;
  --mvibz-gold-light: #F0D080;
  --mvibz-gold-dark:  #8B6914;
  --mvibz-black:      #080808;
  --mvibz-black-soft: #111111;
  --mvibz-black-mid:  #1a1a1a;
  --mvibz-white:      #f5f0e8;
  --mvibz-white-dim:  rgba(245, 240, 232, 0.6);
}

input[type=email]:focus, 
input[type=number]:focus, 
input[type=password]:focus, 
input[type=reset]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=text]:focus, 
input[type=url]:focus, 
select:focus, 
textarea:focus {
    color: var(--mvibz-gold) !important;
 
}

input[type=email], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
    background: transparent !important;
        color: var(--mvibz-white) !important; /* Forces text color to white */
-webkit-text-fill-color:var(--mvibz-white)  !important; /* Fixes some Safari/Chrome overrides */
}


.form-textarea {
    color: var(--mvibz-white) !important; /* Forces text color to white */
    background-color: transparent !important; /* Adjust this if you want a dark background */
}

.form-textarea::placeholder {
    color: var(--mvibz-white);
}

.form-textarea:focus {
    color: var(--mvibz-white);
    outline: none;
}
.mvibz-page *,
.mvibz-page *::before,
.mvibz-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply to <body> when this template is active — add class via body_class() filter */
body.page-template-page-mvibz {
  background: var(--mvibz-black);
  color: #f5f0e8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

html { scroll-behavior: smooth; }

/* Noise texture overlay */
body.page-template-page-mvibz::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--mvibz-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--mvibz-gold);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */

/* --- DESKTOP BASE --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000; /* Ensure it stays above Hero lines */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 6%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

/* Scrolled state (Triggers via JS) */
#navbar.scrolled {
    padding: 15px 6%;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--mvibz-white-dim);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { 
    color: var(--mvibz-gold); 
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--mvibz-gold);
    color: var(--mvibz-gold);
    padding: 12px 28px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--mvibz-gold);
    color: #000;
}

/* --- HAMBURGER ICON --- */
.nav-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 11000; /* Stay above the mobile menu overlay */
}

.nav-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: var(--mvibz-gold);
    transition: all 0.3s ease-in-out;
}

/* --- MOBILE STYLES (Max 991px) --- */
@media (min-width: 0px) and (max-width: 991px) {
    #navbar {
        padding: 20px 6%;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-cta {
        display: none;
    }

    /* HIDE nav-links by default on mobile */
    .nav-links {
        display: none;  /* ← ADD THIS */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        margin: 0;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 10500;
    }

    /* Show it as flex when active */
    .nav-links.active {
        display: flex;  /* ← ADD THIS */
        right: 0 !important;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #ffffff !important;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-line-left,
.hero-line-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.15), transparent);
  animation: mvibzFadeIn 2s ease forwards;
}

.hero-line-left  { left: 60px; }
.hero-line-right { right: 60px; }

.hero-content {
  text-align: center;
  position: relative;
  margin-top:50px;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: mvibzSlideUp 1s ease 0.3s forwards;
}

.hero-eyebrow span {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
}

.eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--mvibz-gold);
  opacity: 0.5;
}

.hero-logo-img {
  width: 200px;
  margin-bottom: 40px;
  opacity: 0;
  animation: mvibzScaleIn 1.2s ease 0.5s forwards;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mvibz-white) !important;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  opacity: 0;
  animation: mvibzSlideUp 1s ease 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--mvibz-gold);
}

.hero-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: mvibzSlideUp 1s ease 0.9s forwards;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
  max-width: 520px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: mvibzSlideUp 1s ease 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: mvibzSlideUp 1s ease 1.3s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: mvibzFadeIn 1s ease 2s forwards;
}

.scroll-hint span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

.scroll-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: mvibzScrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--mvibz-gold-dark), var(--mvibz-gold), var(--mvibz-gold-light), var(--mvibz-gold));
  background-size: 200% 200%;
  color: var(--mvibz-black);
  border: none;
  padding: 16px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  animation: mvibzShimmer 3s ease infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  color: var(--mvibz-white-dim);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--mvibz-gold); }

.btn-ghost::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn-ghost:hover::after { transform: translateX(6px); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-section {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 20px 0;
  overflow: hidden;
  background: var(--mvibz-black-soft);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: mvibzMarquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.4rem;
}

/* ══════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════ */
.section {
  padding: 140px 60px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label span {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
}

.label-num {
  width: 30px;
  height: 1px;
  background: var(--mvibz-gold);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--mvibz-white);
  font-weight: 300;
  line-height: 1.1;
}

.section-title em {
  color: var(--mvibz-gold);
  font-style: italic;
}

.section-desc {
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
  max-width: 320px;
  text-align: right;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--mvibz-black-soft);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--mvibz-gold-dark), var(--mvibz-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--mvibz-black-mid); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(201, 168, 76, 0.15); }

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mvibz-white);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-card:hover .service-name { color: var(--mvibz-gold); }

.service-text {
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
}

.service-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: var(--mvibz-gold);
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-section {
  background: var(--mvibz-black-soft);
  padding: 100px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.stat-item:last-child::after { display: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--mvibz-gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mvibz-white-dim);
  margin-top: 12px;
  display: block;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
  cursor: none;
  transition: padding-left 0.3s;
}

.process-step:hover { padding-left: 16px; }
.process-step:first-child { border-top: 1px solid rgba(201, 168, 76, 0.08); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--mvibz-gold);
  opacity: 0.5;
  min-width: 30px;
  padding-top: 4px;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mvibz-white);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.process-step:hover .step-content h3 { color: var(--mvibz-gold); }

.step-content p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--mvibz-white-dim);
}

.process-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.process-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.process-circle::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.06);
  animation: mvibzSpin 30s linear infinite;
}

.circle-center {
  text-align: center;
  z-index: 2;
}

.circle-center .big-m {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--mvibz-gold);
  line-height: 1;
  opacity: 0.4;
}

.circle-center span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  opacity: 0.5;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--mvibz-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mvibz-gold);
}

.orbit-dot:nth-child(1) { top: -4px;  left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { bottom: -4px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(3) { left: -4px; top: 50%; transform: translateY(-50%); }
.orbit-dot:nth-child(4) { right: -4px; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  background: var(--mvibz-black-soft);
  padding: 140px 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.testimonial-card {
  background: var(--mvibz-black);
  padding: 48px 40px;
  position: relative;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--mvibz-gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
}

.stars {
  color: var(--mvibz-gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--mvibz-white-dim);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mvibz-gold-dark), var(--mvibz-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--mvibz-black);
  font-weight: 600;
}

.author-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-role {
  font-size: 0.65rem;
  color: var(--mvibz-gold);
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   INSTAGRAM CLIENT STRIP
══════════════════════════════════════ */
.insta-strip {
  padding: 80px 0;
  background: var(--mvibz-black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
}

.insta-strip-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 56px;
}

.insta-track-wrapper {
  overflow: hidden;
  position: relative;
}

.insta-track-wrapper::before,
.insta-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.insta-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--mvibz-black), transparent);
}

.insta-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--mvibz-black), transparent);
}

.insta-track {
  display: flex;
  gap: 24px;
  animation: mvibzInstaScroll 30s linear infinite;
  width: max-content;
}

.insta-track:hover { animation-play-state: paused; }

.insta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  width: 160px;
  transition: transform 0.35s ease;
}

.insta-card:hover { transform: translateY(-6px); }

.insta-dp-wrap {
  position: relative;
  width: 88px;
  height: 88px;
}

.insta-dp-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(#f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.insta-card:hover .insta-dp-wrap::before { opacity: 1; }

.insta-dp-inner {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--mvibz-black-soft);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--mvibz-black);
}

.insta-dp-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--mvibz-gold);
  z-index: 2;
  line-height: 1;
}

.insta-handle {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--mvibz-white-dim);
  text-align: center;
  transition: color 0.3s;
  font-weight: 400;
}

.insta-card:hover .insta-handle { color: var(--mvibz-gold); }

.insta-niche {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  text-align: center;
  margin-top: -8px;
}

/* ══════════════════════════════════════
   WHY CHOOSE MVIBZ
══════════════════════════════════════ */
.why-section {
  padding: 140px 60px;
  background: var(--mvibz-black-soft);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-header .section-label { justify-content: center; margin-bottom: 16px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: var(--mvibz-black);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.why-card:hover { background: var(--mvibz-black-mid); }

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--mvibz-gold-dark), var(--mvibz-gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleY(1); }

.why-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
  color: var(--mvibz-gold);
  transition: border-color 0.3s, background 0.3s;
}

.why-card:hover .why-icon {
  border-color: var(--mvibz-gold);
  background: rgba(201, 168, 76, 0.06);
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mvibz-white);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.why-card:hover .why-title { color: var(--mvibz-gold); }

.why-text {
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
}

.why-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.why-mini {
  background: var(--mvibz-black);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s;
}

.why-mini:hover { background: var(--mvibz-black-mid); }

.why-mini-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--mvibz-gold);
  line-height: 1;
  flex-shrink: 0;
}

.why-mini-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mvibz-white-dim);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section {
  padding: 140px 60px;
  background: var(--mvibz-black);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 300px;
  width: 80vw;
  align-items: start;
}

.contact-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mvibz-white-dim);
  line-height: 1.5;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  text-decoration: none;
  transition: padding-left 0.3s;
}

.contact-detail-item:first-child { border-top: 1px solid rgba(201, 168, 76, 0.08); }
.contact-detail-item:hover { padding-left: 12px; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--mvibz-gold);
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-detail-item:hover .contact-detail-icon { background: rgba(201, 168, 76, 0.08); }

.contact-detail-text { flex: 1; }

.contact-detail-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.8rem;
  color: var(--mvibz-white);
  letter-spacing: 0.03em;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-social-btn {
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--mvibz-white-dim);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.contact-social-btn:hover {
  border-color: var(--mvibz-gold);
  color: var(--mvibz-gold);
  background: rgba(201, 168, 76, 0.04);
}

/* Form */
.contact-form { position: relative; z-index: 2; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  opacity: 0.7;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--mvibz-black-soft);
  border: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--mvibz-white);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  background: var(--mvibz-black-mid);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245, 240, 232, 0.25); }

.form-select {
  cursor: pointer;
  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='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option { background: #111111; color: #f5f0e8; }

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--mvibz-gold-dark), var(--mvibz-gold), var(--mvibz-gold-light), var(--mvibz-gold)) !important;
  background-size: 200% 200%;
  color: var(--mvibz-black) !important;
  border: none;
  padding: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  animation: mvibzShimmer 3s ease infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25) !important;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  padding: 140px 60px;
  background: var(--mvibz-black-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.faq-left-desc {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
  margin-bottom: 40px;
}

.faq-cta-link {
  color: var(--mvibz-gold);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.faq-cta-link:hover { gap: 18px; }
.faq-cta-link::after { content: '→'; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid rgba(201, 168, 76, 0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--mvibz-white) !important;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--mvibz-gold) !important;
background-color: var(--mvibz-black-soft);
}

.faq-question:active{
    color: var(--mvibz-gold) !important;
background-color: var(--mvibz-black-soft);
}
.faq-item.open .faq-question { color: var(--mvibz-gold) !important; }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--mvibz-gold);
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
  padding-bottom: 24px;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.cta-section .section-label { justify-content: center; margin-bottom: 24px; }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--mvibz-white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title em { color: var(--mvibz-gold); font-style: italic; }

.cta-desc {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--mvibz-white-dim);
  max-width: 500px;
  margin: 0 auto 60px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section {
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--mvibz-black-soft);
  overflow: hidden;
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.about-frame::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  pointer-events: none;
  z-index: 2;
}

.about-frame-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.about-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.07);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  transition: color 0.6s ease;
}

.about-frame:hover .about-monogram { color: rgba(201, 168, 76, 0.12); }

.about-tag {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--mvibz-gold);
  padding: 16px 28px;
  z-index: 4;
}

.about-tag span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mvibz-black);
  font-weight: 600;
}

.about-accent-card {
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--mvibz-black-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 24px 28px;
  z-index: 10;
}

.about-accent-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--mvibz-gold);
  line-height: 1;
  display: block;
}

.about-accent-text {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mvibz-white-dim);
  margin-top: 6px;
  display: block;
}

.about-intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mvibz-gold);
  line-height: 1.4;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
}

.about-body {
  font-size: 0.8rem;
  line-height: 2;
  color: var(--mvibz-white-dim);
  margin-bottom: 20px;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--mvibz-gold), transparent);
  margin: 40px 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 52px;
}

.about-pillar {
  background: var(--mvibz-black-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}

.about-pillar:hover { background: var(--mvibz-black-mid); }

.about-pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--mvibz-gold-dark), var(--mvibz-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-pillar:hover::after { transform: scaleX(1); }

.pillar-icon {
  font-size: 1rem;
  color: var(--mvibz-gold);
  opacity: 0.7;
  margin-bottom: 12px;
  display: block;
  transition: opacity 0.3s;
}

.about-pillar:hover .pillar-icon { opacity: 1; }

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--mvibz-white);
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.about-pillar:hover .pillar-title { color: var(--mvibz-gold); }

.pillar-desc {
  font-size: 0.68rem;
  line-height: 1.7;
  color: var(--mvibz-white-dim);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mvibz-gold-dark), var(--mvibz-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--mvibz-black);
  font-weight: 600;
  flex-shrink: 0;
}

.sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.sig-role {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  opacity: 0.7;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
body.page-template-page-mvibz footer {
  background: var(--mvibz-black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--mvibz-gold);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--mvibz-white-dim);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mvibz-gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--mvibz-white-dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--mvibz-gold); }

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-link {
  color: var(--mvibz-white-dim);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.social-link:hover { color: var(--mvibz-gold); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0 ;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════ */
@keyframes mvibzFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes mvibzSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes mvibzScaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes mvibzShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes mvibzMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mvibzInstaScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes mvibzScrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes mvibzSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  body.page-template-page-mvibz nav { padding: 22px 36px; }
  body.page-template-page-mvibz nav.scrolled { padding: 14px 36px; }

  .hero { padding: 100px 36px 80px; }
  .hero-line-left  { left: 36px; }
  .hero-line-right { right: 36px; }

  .section { padding: 100px 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-section { padding: 80px 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(201, 168, 76, 0.08); padding: 40px 30px; }

  .process-grid { gap: 60px; }
  .testimonials-section { padding: 100px 36px; }

  .why-section { padding: 100px 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-bottom { grid-template-columns: repeat(2, 1fr); }

  .contact-section { padding: 100px 36px; }
  .contact-grid { gap: 60px; }

  .faq-section { padding: 100px 36px; }
  .faq-grid { gap: 60px; }

  .about-section { padding: 100px 36px; }
  .about-grid { gap: 60px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  body.page-template-page-mvibz footer { padding: 60px 36px 32px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  body.page-template-page-mvibz { cursor: auto; }

  body.page-template-page-mvibz nav { padding: 20px 24px; }
  body.page-template-page-mvibz nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .hero { padding: 110px 24px 80px; }
  .hero-line-left  { left: 24px; }
  .hero-line-right { right: 24px; }
  .hero-logo-img { width: 140px; }
  .hero-actions { flex-direction: column; gap: 16px; width: 100%; }
  .btn-primary { width: 100%; text-align: center; padding: 18px 32px; }

  .marquee-item { gap: 40px; }
  .section { padding: 80px 24px; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 48px; }
  .section-desc { text-align: left; max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }

  .stats-section { padding: 60px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 16px; }

  .process-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-visual { min-height: 320px; order: -1; }
  .process-circle { width: 280px; height: 280px; }
  .circle-center .big-m { font-size: 4rem; }

  .testimonials-section { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }

  .insta-strip { padding: 60px 0; }
  .insta-strip-header { padding: 0 24px; margin-bottom: 40px; }
  .insta-track-wrapper::before,
  .insta-track-wrapper::after { width: 60px; }

  .why-section { padding: 80px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-bottom { grid-template-columns: repeat(2, 1fr); }
  .why-card { padding: 40px 28px; }

  .contact-section { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-socials { flex-wrap: wrap; }

  .faq-section { padding: 80px 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }

  .about-section { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-frame { aspect-ratio: 3 / 2; }
  .about-monogram { font-size: 8rem; }
  .about-accent-card { top: -20px; right: -10px; padding: 18px 22px; }
  .about-accent-num { font-size: 2.2rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-pillar { padding: 24px 20px; }

  .cta-section { padding: 100px 24px; }
  .cta-buttons { flex-direction: column; gap: 16px; width: 100%; }
  .cta-buttons .btn-primary { width: 100%; text-align: center; }

  body.page-template-page-mvibz footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .social-links { justify-content: center; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title  { font-size: clamp(2.8rem, 10vw, 4rem); }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .cta-title   { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }

  body.page-template-page-mvibz nav { padding: 16px 20px; }
  .nav-logo { font-size: 1.2rem; }

  .about-frame { aspect-ratio: 1 / 1; }
  .about-monogram { font-size: 6rem; }
  .about-intro-quote { font-size: 1.2rem; }

  .process-circle { width: 220px; height: 220px; }
  .circle-center .big-m { font-size: 3rem; }
}

/* ══════════════════════════════════════
   MODAL STYLES (UPDATED)
══════════════════════════════════════ */
.services-actions {
    margin-top: 30px;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 80vh;
    background: var(--mvibz-black); /* Updated background color */
    z-index: 1000;
    display: none; 
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding for full-bleed look */
}

.modal-content {
    background: var(--mvibz-black); /* Overlay already has the color */
    margin-top: 200px;
    width: 100%;
    max-width: 1200px;
    max-height: 100vh;
    position: relative;
    padding: 80px 40px;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--mvibz-gold); /* Using brand gold for the close icon */
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s, color 0.3s;
    z-index: 1010;
}

.modal-close:hover { 
    transform: rotate(90deg);
    color: var(--mvibz-white);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.modal-column h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--mvibz-gold); /* Header color matching theme */
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-bottom: 12px;
    letter-spacing: 0.05em;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    color: var(--mvibz-white-dim);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

.modal-list li:hover {
    color: var(--mvibz-gold);
}

.modal-list li::before {
    content: '→';
    font-size: 0.7rem;
    color: var(--mvibz-gold);
    border: 1px solid var(--mvibz-gold);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVENESS
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .modal-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-content { padding: 100px 40px 60px; }
}

@media (max-width: 600px) {
    .modal-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 80px 25px; }
    .modal-column h3 { font-size: 1.4rem; }
    .modal-close { top: 20px; right: 20px; }
}


@media (min-width: 0px) and (max-width: 600px) {
    .form-ro,.form-group,.form-submit{
        width: 75vw;
    }
    
    .why-bottom{
        display: block;
    }
}



