/* Vega Tower Ventures LLC — site styles */
:root {
  --navy: #0f1b2d;
  --navy-2: #16253d;
  --steel: #2b3a52;
  --slate: #5b6b82;
  --mist: #e9edf2;
  --paper: #f7f8fa;
  --white: #ffffff;
  --amber: #f39c12;
  --amber-2: #d9820b;
  --amber-text: #9c5807; /* 5.5:1 on white, 5.2:1 on paper — WCAG AA */
  --ink: #1a2233;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.12);
  --max: 1180px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
.container { width: min(var(--max), 100% - 2rem); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--amber-text);
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.15rem; color: var(--slate); max-width: 62ch; }
.muted { color: var(--slate); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-2); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); }

/* Top bar + nav */
.topbar {
  background: var(--navy);
  color: var(--mist);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.topbar a { color: var(--mist); text-decoration: none; }
.topbar a:hover { color: var(--amber); }

header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--mist);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--navy); }
.brand-mark {
  width: 44px; height: 44px; flex: none;
}
.brand-text { line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--steel); font-size: 0.95rem; }
.nav-links a:not(.btn):hover, .nav-links a:not(.btn)[aria-current="page"] { color: var(--amber-text); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0; border-bottom: 1px solid var(--mist); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--mist); }
  .nav-links a { display: block; padding: 0.85rem 0.5rem; }
  .nav-links .btn { margin-top: 0.75rem; justify-content: center; }
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(15,27,45,0.96) 0%, rgba(22,37,61,0.9) 55%, rgba(43,58,82,0.85) 100%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.05) 39px 40px),
    var(--navy);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -8%; bottom: -30%;
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(closest-side, rgba(243,156,18,0.22), transparent 70%);
  pointer-events: none;
}
.hero h1 { color: var(--white); }
.hero .lead { color: rgba(255,255,255,0.82); }
.hero .eyebrow { color: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.hero-panel h2 { color: var(--amber); font-size: 1.1rem; letter-spacing: 0.12em; }
.hero-panel ul { list-style: none; padding: 0; margin: 0; }
.hero-panel li { padding: 0.55rem 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 0.6rem; align-items: flex-start; }
.hero-panel li:first-child { border-top: 0; }
.hero-panel svg { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--amber); }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

/* Page hero (interior) */
.page-hero { padding: clamp(3rem, 7vw, 5rem) 0; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* Sections */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
section.alt { background: var(--white); }
section.dark { background: var(--navy); color: var(--mist); }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark .lead { color: rgba(255,255,255,0.8); }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: var(--amber);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.35rem; }
.card ul { padding-left: 1.1rem; margin: 0.5rem 0 0; color: var(--slate); }
.card li { margin: 0.25rem 0; }
.card-link { display: inline-block; margin-top: 0.75rem; font-weight: 600; color: var(--amber-text); text-decoration: none; }
.card-link:hover { text-decoration: underline; }
section.dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--mist); }
section.dark .card ul { color: rgba(255,255,255,0.75); }
section.dark .card .icon { background: var(--amber); color: var(--navy); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.figure {
  border-radius: var(--radius); overflow: hidden; min-height: 320px;
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--steel) 100%);
  position: relative; display: grid; place-items: center; color: var(--amber);
}
.figure svg { width: 60%; max-width: 360px; height: auto; opacity: 0.9; }
.figure.light { background: linear-gradient(160deg, var(--mist), var(--white)); color: var(--navy); border: 1px solid var(--mist); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.stat .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--amber); line-height: 1; }
.stat .label { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 0.4rem; }

/* Process steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.5rem 1.5rem 1.5rem 1.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--mist); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.4rem; color: var(--amber); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.25rem; }
.step p { color: var(--slate); margin: 0; font-size: 0.95rem; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.6rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--amber-text); margin-top: 2px; }

/* Sector tags */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { padding: 0.5rem 0.9rem; border-radius: 999px; background: var(--white); border: 1px solid var(--mist); font-size: 0.9rem; font-weight: 500; }
section.dark .tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }

/* Quote / testimonial */
.quote { border-left: 4px solid var(--amber); padding: 1rem 1.5rem; background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.1rem; }
.quote cite { display: block; margin-top: 0.75rem; font-style: normal; color: var(--slate); font-size: 0.95rem; }

/* CTA band */
.cta-band { background: linear-gradient(100deg, var(--amber) 0%, var(--amber-2) 100%); color: var(--navy); padding: 3rem 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--navy); margin: 0; }
.cta-band p { margin: 0.25rem 0 0; }

/* Forms */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid #7f8c9b; border-radius: 6px;
  font: inherit; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: var(--amber); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--slate); }
.form-status { padding: 0.9rem 1rem; border-radius: 6px; background: var(--mist); }
.form-status:not(.show) { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list svg { flex: none; width: 24px; height: 24px; color: var(--amber-text); margin-top: 2px; }
.info-list strong { display: block; }

/* FAQ */
details { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 0.75rem; }
summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--amber-text); }
details[open] summary::after { content: "–"; }
details p { margin: 0.75rem 0 0; color: var(--slate); }

/* Footer */
footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 3.5rem 0 2rem; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h3.footer-heading { color: var(--white); font-size: 1.05rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin: 0.4rem 0; }
footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
footer a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Utilities */
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .btn, .card { transition: none; } }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--amber); color: var(--navy); padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* Photo figures */
.photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.photo.wide img { aspect-ratio: 16 / 9; }
figure.photo-figure { margin: 0; }
.hero.has-photo { background-color: var(--navy); background-size: cover; background-position: center; }
.hero.has-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(15,27,45,0.94) 0%, rgba(15,27,45,0.82) 50%, rgba(15,27,45,0.55) 100%); }
.hero.has-photo .container { position: relative; z-index: 1; }
.hero-home { background-image: url('../img/hero-aerial-800.jpg'); }
@media (min-width: 641px) { .hero-home { background-image: url('../img/hero-aerial.jpg'); } }
@media (min-width: 1601px) { .hero-home { background-image: url('../img/hero-aerial-1920.jpg'); } }
.card-photo { margin: -1.75rem -1.75rem 1.25rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.card-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Articles / resources */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { font-size: 1.9rem; margin-top: 2.25rem; }
.article h3 { font-size: 1.3rem; margin-top: 1.5rem; }
.article p, .article li { font-size: 1.05rem; }
.article ul, .article ol { padding-left: 1.4rem; }
.article li { margin: 0.35rem 0; }
.article .photo { margin: 1.5rem 0; }
.article-meta { color: var(--slate); font-size: 0.9rem; margin-bottom: 1.5rem; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; opacity: 0.5; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.post-list .card h3 a { text-decoration: none; color: var(--navy); }
.post-list .card h3 a:hover { color: var(--amber-text); }
.credits { font-size: 0.85rem; color: var(--slate); }
.credits li { margin: 0.3rem 0; }
