/* MJ Videography — Shared Stylesheet */

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

:root {
  --navy: #1a2340;
  --gold: #d4af37;
  --gold-dark: #b8960e;
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --text: #444444;
  --text-light: #666666;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e6e6e6;
}

.nav-inner {
  padding: 0 48px 0 16px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-mj {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-word {
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.95em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
}

.nav-links .nav-cta a:hover { opacity: 0.9; color: var(--navy); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  padding: 15px 34px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
  font-family: var(--font);
}

.btn-gold:hover { opacity: 0.9; }

.btn-outline-white {
  display: inline-block;
  padding: 15px 34px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  display: inline-block;
  padding: 13px 30px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
  font-family: var(--font);
}

.btn-navy:hover { opacity: 0.85; }

/* ── HERO (home page) ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

/* ── STATS ── */
.stats {
  background: var(--white);
  padding: 80px 24px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-number .suffix {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-number .prefix {
  font-size: 0.55em;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  background: var(--light-gray);
  padding: 80px 24px;
}

.primary-cards {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 2px 14px rgba(0,0,0,0.055);
}

.card.featured {
  border: 2px solid var(--gold);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.card-savings {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.card-divider {
  border: none;
  border-top: 1px solid #efefef;
  margin: 16px 0;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.addon-cards {
  max-width: var(--max-width);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.addon-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.055);
}

.addon-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.addon-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.addon-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.addon-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}

.retainer-block {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--navy);
  border-radius: 10px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.retainer-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.retainer-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.retainer-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
}

.retainer-cta { flex-shrink: 0; }

/* ── SERVICES PREVIEW (home only) ── */
.services-preview-footer {
  text-align: center;
  margin-top: 36px;
}

.services-preview-footer a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.services-preview-footer a:hover { opacity: 0.7; }

/* ── SAMPLE REEL ── */
.reel {
  background: var(--white);
  padding: 80px 24px;
}

.reel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.reel-placeholder {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 26px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 6px;
}

.reel-caption {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ── COVERAGE ── */
.coverage {
  background: var(--light-gray);
  padding: 80px 24px;
}

.coverage-grid {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.coverage-col h3 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.coverage-col p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 2.1;
}

.coverage-note {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ── WHY MJ ── */
.why {
  background: var(--white);
  padding: 80px 24px;
}

.why-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 60px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5edcc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg { width: 22px; height: 22px; }

.why-copy h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-copy p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 64px 24px;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(26,35,64,0.75);
  margin-bottom: 32px;
}

/* ── CONTACT PAGE ── */
.contact-page {
  background: var(--light-gray);
  padding: 80px 24px;
}

.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.contact-form-col .sub {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.contact-info-col h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.info-block {
  margin-bottom: 28px;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.info-value {
  font-size: 0.97rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.info-value a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.info-value a:hover {
  color: var(--gold-dark);
}

/* ── FORM ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.field 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='%23666' 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;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.form-submit:hover { opacity: 0.9; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-center {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-right {
  text-align: right;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */

/* 900px — grids collapse to single column */
@media (max-width: 900px) {
  .primary-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .addon-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .retainer-block {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
  }

  .retainer-cta { width: 100%; }

  .retainer-cta .btn-gold {
    display: block;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* 768px — tablet */
@media (max-width: 768px) {
  .hero { min-height: 72vh; }

  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.82rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer-right { text-align: center; }

  .stats,
  .services,
  .reel,
  .coverage,
  .why,
  .contact-page { padding: 56px 20px; }

  .page-header { padding: 48px 20px; }
  .cta-strip { padding: 52px 20px; }
}

/* 600px — phone: nav stacks, layout tightens */
@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 12px 16px 10px;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    gap: 20px;
  }

  .nav-links a { font-size: 0.8rem; }

  .nav-links .nav-cta a {
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  .hero { min-height: 62vh; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline-white {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .stats,
  .services,
  .reel,
  .coverage,
  .why,
  .contact-page { padding: 48px 16px; }

  .cta-strip { padding: 48px 16px; }
  .page-header { padding: 40px 16px; }

  .card { padding: 28px 20px; }
  .addon-card { padding: 24px 20px; }
  .retainer-block { padding: 32px 20px; }

  .section-title { margin-bottom: 32px; }

  .badges { gap: 8px; }
  .badge { font-size: 0.78rem; padding: 7px 14px; }
}

/* 400px — iPhone SE and smaller */
@media (max-width: 400px) {
  .hero { min-height: 58vh; }

  .nav-links { gap: 16px; }

  .stats,
  .services,
  .reel,
  .coverage,
  .why,
  .contact-page { padding: 40px 14px; }

  .cta-strip { padding: 40px 14px; }
  .page-header { padding: 36px 14px; }

  .card { padding: 22px 16px; }
  .addon-card { padding: 20px 16px; }
  .retainer-block { padding: 28px 16px; }

  .stat-number { font-size: clamp(1.9rem, 10vw, 2.6rem); }

  .hero-sub { font-size: 0.95rem; }

  .section-title { font-size: clamp(1.5rem, 6.5vw, 1.8rem); }

  .badge { font-size: 0.72rem; padding: 6px 12px; }
}
