/* ==========================================================
   Virtual Elevation | virtualelevation.co.uk
   ========================================================== */

:root {
  --navy: #0f0f0f;
  --navy-2: #1c1c1c;
  --gold: #ff5a00;
  --gold-dark: #d94d00;
  --ink: #1c2733;
  --grey: #5b6b7b;
  --line: #e3e8ee;
  --bg: #fafbfc;
  --white: #ffffff;
  --radius: 12px;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

p { color: var(--grey); }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  width: 30px;
  height: 30px;
  flex: none;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: #ff7a2e; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.2s;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #262626 100%);
  color: var(--white);
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,90,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 { color: var(--white); max-width: 720px; }

.hero .kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  max-width: 620px;
  margin-top: 20px;
}

.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #ff7a2e; }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .kicker {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }

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

@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card h3 { margin-bottom: 10px; }
.card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(255,90,0,0.10);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.card p + p { margin-top: 10px; }
.card .card-link { display: inline-block; margin-top: 16px; font-weight: 600; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  color: var(--grey);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  clip-path: polygon(40% 78%, 85% 20%, 95% 30%, 42% 95%, 8% 55%, 18% 45%);
}
.feature-list li strong { color: var(--ink); }

/* ---------- Stats / banner ---------- */
.banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.banner h2 { color: var(--white); }
.banner p { color: rgba(255,255,255,0.8); margin-top: 8px; max-width: 520px; }

/* ---------- Workshop detail table ---------- */
.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-table th, .detail-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.detail-table th { width: 180px; color: var(--navy); font-family: "Sora", sans-serif; font-size: 0.9rem; vertical-align: top; }
.detail-table td { color: var(--grey); }
.detail-table tr:last-child th, .detail-table tr:last-child td { border-bottom: none; }

/* ---------- Price box ---------- */
.price-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.price-box .price {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
}
.price-box .price-note { font-size: 0.9rem; margin-top: 4px; }
.price-box .btn { margin-top: 22px; width: 100%; }
.price-box .small { font-size: 0.82rem; margin-top: 14px; color: var(--grey); }

/* ---------- Quote ---------- */
.pullquote {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-size: 1.25rem;
  font-family: "Sora", sans-serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
}
.contact-box .contact-row { margin-bottom: 20px; }
.contact-box .contact-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-brand { font-family: "Sora", sans-serif; font-weight: 700; color: var(--white); font-size: 1.15rem; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.site-footer .footer-tagline { font-size: 0.95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 72px 0;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 14px; max-width: 620px; font-size: 1.1rem; }

/* ---------- Two-col layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Misc ---------- */
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.center { text-align: center; }
