@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --ink-black: #0a0b0f;
  --obsidian: #111318;
  --vault-navy: #0d1b2e;
  --navy-mid: #142338;
  --navy-surface: #1a2d46;
  --navy-border: #1f3554;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim: #8a6e32;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --mist: #d4dae4;
  --slate: #8a95a8;
  --slate-dim: #5a6474;
  --accent-cyan: #1a8fa8;
  --accent-cyan-bright: #22b8d4;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.12);
  --shadow-nav: 0 2px 32px rgba(0,0,0,0.5);

  --space-1: clamp(4px, 0.5vw, 6px);
  --space-2: clamp(8px, 1vw, 12px);
  --space-3: clamp(12px, 1.5vw, 18px);
  --space-4: clamp(16px, 2vw, 24px);
  --space-5: clamp(24px, 3vw, 36px);
  --space-6: clamp(32px, 4vw, 52px);
  --space-7: clamp(48px, 6vw, 80px);
  --space-8: clamp(64px, 8vw, 112px);
  --space-9: clamp(80px, 10vw, 140px);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --transition-fast: 150ms ease;
  --transition-mid: 280ms ease;
  --transition-slow: 420ms ease;
}

body {
  background-color: var(--obsidian);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── CONTAINER ─────────────────────────────────────── */
.mv-wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5.5vw, 68px); line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 1.8vw, 21px); font-family: var(--font-body); font-weight: 600; }
h5 { font-size: clamp(14px, 1.4vw, 16px); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

p { color: var(--mist); line-height: 1.75; }

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--white); }

strong { color: var(--white); font-weight: 600; }
em { color: var(--gold-light); font-style: italic; }

/* ─── HEADER / NAV ───────────────────────────────────── */
.mv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 11, 15, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: var(--shadow-nav);
  transition: background var(--transition-mid);
}

.mv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 7vw, 76px);
}

.mv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mv-brand__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.mv-brand__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.mv-brand__name span {
  color: var(--gold);
}

.mv-nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 2vw, 8px);
}

.mv-nav__link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.mv-nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.mv-nav__link--active {
  color: var(--gold-light);
}

.mv-nav__cta {
  margin-left: clamp(8px, 1.5vw, 20px);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-black);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.mv-nav__cta:hover {
  background: var(--gold-light);
  color: var(--ink-black);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* Mobile nav toggle */
.mv-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mv-nav__toggle span {
  display: block;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: var(--transition-mid);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: clamp(12px, 1.5vw, 15px) clamp(22px, 3vw, 34px);
  transition: all var(--transition-mid);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink-black);
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--mist);
  border: 1.5px solid rgba(212,218,228,0.3);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

.btn--cyan {
  background: var(--accent-cyan);
  color: var(--white);
}

.btn--cyan:hover {
  background: var(--accent-cyan-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,143,168,0.4);
}

/* ─── SECTIONS ────────────────────────────────────────── */
.mv-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.mv-section--dark {
  background: var(--obsidian);
}

.mv-section--navy {
  background: var(--vault-navy);
}

.mv-section--surface {
  background: var(--navy-surface);
}

.mv-section--black {
  background: var(--ink-black);
}

/* ─── EYEBROW LABEL ──────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.07);
}

/* ─── HERO ────────────────────────────────────────────── */
.mv-hero {
  background: var(--ink-black);
  padding-top: clamp(100px, 12vw, 148px);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

.mv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26,143,168,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.mv-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.mv-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.mv-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.mv-hero__title {
  color: var(--white);
}

.mv-hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.mv-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--slate);
  max-width: 50ch;
  line-height: 1.7;
}

.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.mv-hero__image-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.mv-hero__image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.mv-hero__image-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── CONTENT SECTION ────────────────────────────────── */
.mv-content__header {
  max-width: 720px;
  margin-bottom: var(--space-5);
}

.mv-content__lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--mist);
  line-height: 1.65;
  margin-top: var(--space-3);
  font-weight: 400;
}

.mv-content__body {
  max-width: 72ch;
  color: var(--slate);
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ─── CARD GRID ──────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: var(--space-6);
}

.mv-grid--2col { grid-template-columns: repeat(2, 1fr); }
.mv-grid--4col { grid-template-columns: repeat(4, 1fr); }

.mv-card {
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition-mid), transform var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.mv-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 32px rgba(201,168,76,0.08);
}

.mv-card:hover::before { opacity: 1; }

.mv-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.mv-card__title {
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 20px);
  font-family: var(--font-body);
  font-weight: 600;
}

.mv-card__text {
  color: var(--slate);
  font-size: clamp(14px, 1.3vw, 15.5px);
  line-height: 1.7;
}

/* ─── STATS ROW ──────────────────────────────────────── */
.mv-stats {
  background: var(--vault-navy);
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.mv-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.mv-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border-right: 1px solid var(--navy-border);
}

.mv-stat:last-child { border-right: none; }

.mv-stat__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.mv-stat__label {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ─── CTA BAND ───────────────────────────────────────── */
.mv-cta-band {
  background: var(--navy-mid);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

.mv-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mv-cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.mv-cta-band__title {
  font-size: clamp(28px, 4vw, 48px);
  max-width: 20ch;
}

.mv-cta-band__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--slate);
  max-width: 55ch;
}

.mv-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.mv-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.mv-faq__item {
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-mid);
}

.mv-faq__item:hover { border-color: rgba(201,168,76,0.25); }

.mv-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px);
  cursor: pointer;
  list-style: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 17px);
  user-select: none;
}

.mv-faq__question::after {
  content: '+';
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-mid);
}

.mv-faq__item[open] .mv-faq__question::after {
  transform: rotate(45deg);
}

.mv-faq__answer {
  padding: 0 clamp(20px, 3vw, 32px) clamp(18px, 2.5vw, 26px);
  color: var(--slate);
  font-size: clamp(14px, 1.3vw, 15.5px);
  line-height: 1.75;
}

/* ─── DIVIDER ─────────────────────────────────────────── */
.mv-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
  margin: 0;
}

/* ─── SECTION HEADER UTIL ────────────────────────────── */
.mv-section-head {
  margin-bottom: var(--space-6);
}

.mv-section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv-section-head__title {
  margin-top: var(--space-2);
}

.mv-section-head__subtitle {
  margin-top: var(--space-3);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--slate);
  max-width: 60ch;
  line-height: 1.7;
}

/* ─── FORMS ───────────────────────────────────────────── */
.mv-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.mv-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mv-form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.mv-form__input,
.mv-form__textarea,
.mv-form__select {
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.mv-form__input::placeholder,
.mv-form__textarea::placeholder {
  color: var(--slate-dim);
}

.mv-form__input:focus,
.mv-form__textarea:focus,
.mv-form__select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.mv-form__textarea {
  resize: vertical;
  min-height: 140px;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.mv-footer {
  background: var(--ink-black);
  border-top: 1px solid var(--navy-border);
  padding-top: var(--space-8);
  padding-bottom: var(--space-5);
}

.mv-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--navy-border);
}

.mv-footer__brand-col {}

.mv-footer__tagline {
  font-size: clamp(13px, 1.2vw, 14.5px);
  color: var(--slate);
  margin-top: var(--space-3);
  max-width: 32ch;
  line-height: 1.7;
}

.mv-footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.mv-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mv-footer__links a {
  font-size: clamp(13px, 1.2vw, 14.5px);
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mv-footer__links a:hover { color: var(--white); }

.mv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
}

.mv-footer__copy {
  font-size: 13px;
  color: var(--slate-dim);
}

.mv-footer__legal {
  display: flex;
  gap: var(--space-4);
  list-style: none;
}

.mv-footer__legal a {
  font-size: 13px;
  color: var(--slate-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mv-footer__legal a:hover { color: var(--slate); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .mv-hero__grid {
    grid-template-columns: 1fr;
  }

  .mv-hero__image-slot {
    aspect-ratio: 16/9;
    max-width: 600px;
  }

  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-stats__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-stat {
    border-right: none;
    border-bottom: 1px solid var(--navy-border);
  }

  .mv-stat:nth-child(even) { border-bottom: none; }
  .mv-stat:last-child { border-bottom: none; }

  .mv-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .mv-footer__brand-col {
    grid-column: span 2;
  }

  .mv-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .mv-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-black);
    border-top: 1px solid var(--navy-border);
    padding: var(--space-4);
    gap: var(--space-2);
  }

  .mv-nav.is-open { display: flex; }

  .mv-nav__link {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .mv-nav__cta {
    margin-left: 0;
    text-align: center;
    padding: 12px 20px;
  }

  .mv-nav__toggle { display: flex; }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid--2col {
    grid-template-columns: 1fr;
  }

  .mv-stats__row {
    grid-template-columns: 1fr 1fr;
  }

  .mv-footer__main {
    grid-template-columns: 1fr;
  }

  .mv-footer__brand-col {
    grid-column: span 1;
  }
}*{box-sizing:border-box}html{-webkit-text-size-adjust:100%}img,svg,video{max-width:100%;height:auto}