/* VentureX Downtown Columbia — rebuild demo by Digital Mayhem */
:root {
  --bg: #0a1628;
  --bg-soft: #0f1d35;
  --bg-elev: #142745;
  --line: rgba(201, 169, 110, 0.18);
  --gold: #c9a96e;
  --gold-soft: #d4b888;
  --text: #f4f0e8;
  --text-mute: #a9b3c4;
  --white: #ffffff;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

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

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: .02em;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); font-size: .95rem; font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--bg) !important;
  padding: .55rem 1.1rem; border-radius: 4px;
  font-weight: 600; font-size: .9rem;
}
.nav-cta:hover { background: var(--gold-soft); }
.menu-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: .9rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-ghost:hover { background: var(--gold); color: var(--bg); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(10,22,40,.55) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1800&q=80') center/cover;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem; width: 100%; }
.hero .eyebrow {
  display: inline-block;
  font-size: .8rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--gold);
}
.hero h1 { max-width: 900px; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  max-width: 600px;
  font-size: 1.15rem; color: var(--text-mute);
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.hero-stats-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.hero-stats-grid > div { text-align: center; }
.hero-stats .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold); display: block;
}
.hero-stats .lbl { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-mute); }

/* SECTIONS */
section { padding: 6rem 0; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .eyebrow {
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.section-head p { color: var(--text-mute); max-width: 640px; margin: 1rem auto 0; }

/* PHOTO STRIP */
.photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2rem 0;
}
.photo-strip img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 4px;
  filter: brightness(.85);
  transition: filter .3s;
}
.photo-strip img:hover { filter: brightness(1); }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  padding: 2.5rem 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all .25s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-card .icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.why-card p { color: var(--text-mute); font-size: .95rem; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all .25s;
}
.price-card.featured { border-color: var(--gold); transform: scale(1.03); }
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 999px; font-weight: 700;
}
.price-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.price-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; color: var(--white); display: block;
  margin-bottom: .25rem;
}
.price-card .price small { font-size: .9rem; color: var(--text-mute); font-family: 'Inter', sans-serif; }
.price-card .price-sub { font-size: .85rem; color: var(--text-mute); margin-bottom: 1.5rem; }
.price-card ul { list-style: none; margin-bottom: 1.5rem; }
.price-card ul li {
  padding: .5rem 0; border-bottom: 1px solid var(--line);
  font-size: .9rem; color: var(--text-mute);
}
.price-card ul li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.price-card ul li:last-child { border: 0; }

/* CTA BAND */
.cta-band {
  background:
    linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(15,29,53,.88) 100%),
    url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1800&q=80') center/cover;
  text-align: center; padding: 5rem 1.5rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--text-mute); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* PAGE HERO (sub-pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.7) 100%),
    url('https://images.unsplash.com/photo-1497215842964-222b430dc094?w=1800&q=80') center/cover;
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-mute); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* SERVICES TABLE */
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin: 2rem 0;
}
.pricing-table th, .pricing-table td {
  padding: 1.2rem 1.5rem; text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing-table th {
  background: var(--bg-elev);
  color: var(--gold); font-size: .8rem;
  letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600;
}
.pricing-table td.price { color: var(--gold); font-weight: 600; font-size: 1.05rem; }
.pricing-table tr:last-child td { border: 0; }
.pricing-table td:first-child { font-weight: 600; color: var(--white); }

/* ABOUT 2COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col img { border-radius: 4px; height: 100%; object-fit: cover; min-height: 460px; }
.two-col .copy h2 { margin-bottom: 1.5rem; }
.two-col .copy p { color: var(--text-mute); margin-bottom: 1.2rem; }

.badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.badge {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
}
.badge .v { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }
.badge .l { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-mute); }

/* REVIEWS */
.reviews-hero {
  text-align: center; padding: 4rem 1.5rem 2rem;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.score {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); line-height: 1;
}
.stars { color: var(--gold); font-size: 1.5rem; letter-spacing: .25em; margin: .5rem 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
}
.review-card .stars { font-size: 1rem; }
.review-card blockquote {
  font-style: italic; color: var(--text);
  margin: 1rem 0; line-height: 1.6;
}
.review-card .author { color: var(--gold); font-weight: 600; font-size: .9rem; }
.review-card .meta { color: var(--text-mute); font-size: .8rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { color: var(--gold); margin-top: 1.5rem; }
.contact-info p, .contact-info a { color: var(--text-mute); display: block; margin-bottom: .35rem; font-size: .95rem; }
.contact-info a:hover { color: var(--gold); }

.form { background: var(--bg-soft); border: 1px solid var(--line); padding: 2rem; border-radius: 4px; }
.form label { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: 1rem 0 .5rem; font-weight: 600; }
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: .8rem 1rem;
  font-size: .95rem;
  border-radius: 4px;
  font-family: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--gold); }
.form textarea { min-height: 120px; resize: vertical; }
.form button { margin-top: 1.5rem; width: 100%; }

iframe { width: 100%; height: 320px; border: 1px solid var(--line); border-radius: 4px; margin-top: 1.5rem; filter: grayscale(.3) brightness(.85); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item h3 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
.faq-item p { color: var(--text-mute); }

/* FOOTER */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: var(--text-mute); display: block; margin: .35rem 0; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: var(--text-mute);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 75vh; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .photo-strip, .why-grid, .pricing-grid, .reviews-grid, .two-col, .contact-grid, .badges {
    grid-template-columns: 1fr;
  }
  .two-col img { min-height: 280px; }
  .price-card.featured { transform: none; }
  section { padding: 4rem 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-table { font-size: .85rem; }
  .pricing-table th, .pricing-table td { padding: .8rem; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}
