﻿/* ===== SUMMIT LABS - SHARED STYLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Screen-reader-only utility. Visible to assistive tech and to crawlers (since
   it stays in the DOM with non-zero dimensions), invisible to sighted users.
   Used to add descriptive context to generic link labels like "Learn More". */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --navy: #1B2A4A;
  --navy-deep: #0C1525;
  --navy-light: #243556;
  --slate: #4A5568;
  --gold: #C8A951;
  --gold-hover: #B8993F;
  --gold-soft: rgba(200, 169, 81, 0.08);
  /* WCAG AA-compliant gold for use on light backgrounds (5.5:1 on white). */
  --gold-dark: #8B7028;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --warm-gray: #F0EDE8;
  --text: #1A1A1A;
  --heading: 'Cormorant Garamond', 'CG Fallback', Georgia, serif;
  --body: 'Source Sans 3', 'SS Fallback', 'Segoe UI', Arial, sans-serif;
}

/* Self-hosted Cormorant Garamond + Source Sans 3.  Loaded from same origin to
   remove the cross-origin handshake.  Critical weights are also <link rel=preload>'d
   per page so they arrive before FCP. */
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/cg-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('/assets/fonts/cg-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/cg-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/cg-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/cg-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/cg-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/ss3-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/ss3-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/ss3-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/ss3-600-normal.woff2') format('woff2'); }

/* Metrics-matched fallbacks for Cormorant Garamond + Source Sans 3.  These eliminate
   layout shift when webfonts swap in.  Values derived from each webfont's actual
   metrics (cap-height, x-height, advance-width) measured against the local fallback. */
@font-face {
  font-family: 'CG Fallback';
  src: local('Georgia');
  size-adjust: 95.45%;
  ascent-override: 90.42%;
  descent-override: 24.29%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'SS Fallback';
  src: local('Arial'), local('Helvetica');
  size-adjust: 102.27%;
  ascent-override: 100.18%;
  descent-override: 27.62%;
  line-gap-override: 0%;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--text);
  line-height: 1.7; font-weight: 400; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 21, 37, 0.95);
  backdrop-filter: blur(16px);
  padding: 20px 40px 10px;
  display: flex; flex-direction: column; align-items: center;
  border-bottom: none;
}
.nav-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.nav-logo img {
  height: 120px !important;
  width: auto !important;
  display: block;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; margin-left: 0; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 9px 24px !important; font-size: 11px !important;
  background: transparent; color: #C8A951 !important;
  border: 1.5px solid rgba(200,169,81,0.4);
  border-radius: 3px; font-weight: 600 !important;
  letter-spacing: 2px !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: rgba(200,169,81,0.1) !important; border-color: #C8A951 !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 17px 44px;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.4s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200, 169, 81, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27, 42, 74, 0.3); }
.btn-ghost { background: transparent; color: var(--gold-dark); padding: 0; letter-spacing: 1.5px; font-size: 13px; text-decoration: none; font-weight: 600; }
.btn-ghost::after { content: ' \2192'; transition: margin-left 0.3s; }
.btn-ghost:hover { color: var(--gold-hover); }
.btn-ghost:hover::after { margin-left: 8px; }
/* On dark backgrounds the bright gold meets contrast - opt back in. */
.page-hero .btn-ghost,
.hero .btn-ghost,
.cta-section .btn-ghost,
.image-break .btn-ghost,
.results-card .btn-ghost { color: var(--gold); }
.page-hero .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-section .btn-ghost:hover,
.image-break .btn-ghost:hover,
.results-card .btn-ghost:hover { color: var(--white); }

/* ===== TYPOGRAPHY ===== */
section { padding: 80px 60px; position: relative; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold-dark); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
/* Inside dark backdrops the bright gold has plenty of contrast - keep brand. */
.page-hero .section-label,
.hero .section-label,
.cta-section .section-label,
.image-break .section-label,
.results-card .section-label { color: var(--gold); }
.page-hero .section-label::before,
.hero .section-label::before,
.cta-section .section-label::before,
.image-break .section-label::before,
.results-card .section-label::before { background: var(--gold); }
h1, h2, h3, h4 { font-family: var(--heading); font-weight: 500; line-height: 1.15; }
h1 { font-size: 76px; }
h2 { font-size: 50px; margin-bottom: 24px; }
h3 { font-size: 28px; margin-bottom: 12px; }
h4 { font-size: 22px; margin-bottom: 8px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 240px 60px 80px;
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.02;
  background-image:
    repeating-radial-gradient(circle at 30% 50%, transparent 0, transparent 60px, rgba(200,169,81,0.5) 60px, rgba(200,169,81,0.5) 61px, transparent 61px, transparent 120px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 56px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 19px; max-width: 600px; line-height: 1.8; }
.page-hero .hero-divider {
  width: 60px; height: 2px; background: var(--gold); margin-bottom: 24px; opacity: 0.6;
}

/* ===== STATS BAND ===== */
.stats {
  background: var(--navy); padding: 40px 60px;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(200,169,81,0.04) 0%, transparent 50%, rgba(200,169,81,0.04) 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--heading); font-size: 56px; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500;
}

/* ===== IMAGE BREAK ===== */
.image-break {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.image-break-content { position: relative; z-index: 1; max-width: 700px; padding: 0 40px; }
.image-break-content blockquote {
  font-family: var(--heading); font-size: 36px; font-style: italic;
  color: var(--white); font-weight: 400; line-height: 1.4; margin-bottom: 16px;
}
.image-break-content cite {
  font-family: var(--body); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 100px 60px; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,21,37,0.92) 0%, rgba(12,21,37,0.8) 50%, rgba(12,21,37,0.95) 100%),
    url('/assets/images/ridge-mountain-mobile.jpg') center/cover no-repeat;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white); font-size: 52px; margin-bottom: 24px;
  font-style: italic; font-weight: 400;
}
.cta-section p {
  color: rgba(255,255,255,0.45); font-size: 18px;
  max-width: 520px; margin: 0 auto 48px; line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact { background: var(--white); padding: 80px 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { color: var(--navy); }
.contact-info > p { color: var(--slate); margin-bottom: 40px; line-height: 1.8; }
.contact-detail {
  padding: 18px 0; border-bottom: 1px solid #E5E7EB;
  display: flex; align-items: center; gap: 20px;
}
.contact-detail-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); min-width: 80px;
}
.contact-detail-value { color: var(--slate); }
.contact-detail-value a { color: var(--slate); text-decoration: none; border-bottom: 1px solid #D1D5DB; transition: border-color 0.3s; }
.contact-detail-value a:hover { border-color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 18px 22px; border: 1px solid #D1D5DB;
  border-radius: 3px; font-family: var(--body); font-size: 15px;
  color: var(--text); background: var(--off-white); transition: all 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep); padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(200, 169, 81, 0.06);
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-left img { height: 40px; width: auto; opacity: 0.6; }
.footer-left p { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-tagline {
  font-family: var(--heading); font-style: italic;
  color: rgba(255,255,255,0.6); font-size: 16px;
}

/* ===== MOBILE HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  background: none;
  border: none;
  outline-offset: 2px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 180px; left: 0; right: 0; bottom: 0;
  background: #0C1525;
  padding: 40px 24px;
  gap: 0;
  z-index: 99;
  animation: fadeIn 0.3s ease;
}
.nav-links.mobile-open li {
  border-bottom: 1px solid rgba(200,169,81,0.08);
}
.nav-links.mobile-open a {
  display: block;
  padding: 18px 0;
  font-size: 14px !important;
  letter-spacing: 3px !important;
}
.nav-links.mobile-open .nav-cta {
  margin-top: 20px;
  text-align: center;
  display: block !important;
  padding: 16px 28px !important;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-warm { background: var(--warm-gray); }
.bg-navy { background: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 12px 24px 8px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 80px !important; }
  section { padding: 60px 24px; }
  .page-hero { padding: 180px 24px 60px; }
  .page-hero h1 { font-size: 36px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .image-break { height: 220px; }
  .image-break-content blockquote { font-size: 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-section h2 { font-size: 36px; }
}

/* ===== NEWSLETTER SIGNUP =====
   Two variants share one JS handler (subscribe.js, hooked via [data-newsletter-form]):
     1. .newsletter-card  — large block for blog post bodies (cream, in-content)
     2. .newsletter-strip — slim ribbon above footer for site-wide placement (navy)
   Honeypot field is hidden off-screen; success state collapses the form. */

/* --- Variant 1: card (in-content, blog posts) --- */
.newsletter-card {
  background: var(--warm-gray);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 36px 40px;
  margin: 32px 0;
}
.newsletter-card__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 10px;
}
.newsletter-card__title {
  font-family: var(--heading); font-weight: 500;
  color: var(--navy); font-size: 26px;
  margin: 0 0 10px 0; line-height: 1.2;
}
.newsletter-card__desc {
  color: var(--slate); font-size: 15px; line-height: 1.55;
  margin: 0 0 20px 0; max-width: 56ch;
}
.newsletter-card__form {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: stretch; max-width: 540px;
  position: relative;
}
.newsletter-card__input {
  flex: 1 1 240px; min-width: 0;
  padding: 12px 16px; font-size: 15px; font-family: var(--body);
  border: 1px solid rgba(27, 42, 74, 0.15);
  border-radius: 3px;
  background: white; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-card__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.newsletter-card__btn {
  flex: 0 0 auto;
  padding: 12px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--navy); color: white;
  border: none; border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-card__btn:hover:not(:disabled) {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.newsletter-card__btn:disabled { opacity: 0.6; cursor: wait; }
.newsletter-card__honeypot {
  position: absolute !important;
  left: -10000px; width: 1px; height: 1px;
  overflow: hidden;
}
.newsletter-card__status {
  flex: 1 1 100%;
  font-size: 14px; line-height: 1.5;
  margin: 14px 0 0 0; min-height: 1.5em;
}
.newsletter-card__status[data-state="error"] { color: #B33A3A; }
.newsletter-card__status[data-state="success"] { color: var(--navy); font-weight: 600; }
.newsletter-card[data-state="success"] .newsletter-card__form { display: none; }
.newsletter-card__small {
  font-size: 12px; color: var(--slate);
  margin: 10px 0 0 0; opacity: 0.75;
}

/* --- Variant 2: strip (above footer) --- */
.newsletter-strip {
  background: var(--navy);
  padding: 36px 60px;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(200, 169, 81, 0.06);
}
.newsletter-strip__copy { flex: 1 1 320px; max-width: 520px; }
.newsletter-strip__eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.newsletter-strip__title {
  font-family: var(--heading); font-weight: 500;
  color: white; font-size: 22px;
  margin: 0 0 4px 0; line-height: 1.25;
}
.newsletter-strip__desc {
  color: rgba(255,255,255,0.7); font-size: 14px;
  line-height: 1.55; margin: 0;
}
.newsletter-strip__form {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: stretch; flex: 0 1 auto;
  position: relative;
}
.newsletter-strip__input {
  flex: 1 1 220px; min-width: 0;
  padding: 11px 16px; font-size: 14px; font-family: var(--body);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  background: rgba(255,255,255,0.04); color: white;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-strip__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-strip__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.newsletter-strip__btn {
  flex: 0 0 auto;
  padding: 11px 22px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: var(--navy-deep);
  border: none; border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-strip__btn:hover:not(:disabled) {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.newsletter-strip__btn:disabled { opacity: 0.6; cursor: wait; }
.newsletter-strip__honeypot {
  position: absolute !important;
  left: -10000px; width: 1px; height: 1px;
  overflow: hidden;
}
.newsletter-strip__status {
  flex: 1 1 100%;
  font-size: 13px; line-height: 1.5;
  margin: 0; min-height: 1.5em;
  color: rgba(255,255,255,0.75);
}
.newsletter-strip__status[data-state="error"] { color: #FFB4B4; }
.newsletter-strip__status[data-state="success"] { color: var(--gold); font-weight: 600; }
.newsletter-strip[data-state="success"] .newsletter-strip__form { display: none; }

@media (max-width: 768px) {
  .newsletter-card { padding: 28px 24px; }
  .newsletter-card__title { font-size: 22px; }
  .newsletter-card__form { flex-direction: column; }
  .newsletter-card__input,
  .newsletter-card__btn { width: 100%; }
  .newsletter-strip {
    flex-direction: column; align-items: stretch; padding: 32px 24px;
  }
  .newsletter-strip__copy { max-width: none; }
  .newsletter-strip__form { width: 100%; flex-direction: column; }
  .newsletter-strip__input,
  .newsletter-strip__btn { width: 100%; }
}

/* ===== SCROLL REVEAL INIT (add to each page) ===== */

/* Desktop mountain upgrades.  Phones load the lighter -mobile.jpg variants
   (50-75 KB).  Tablets and desktops swap in the 1280px versions for sharpness. */
@media (min-width: 768px) {
  .hero {
    background:
      radial-gradient(2px 2px at 15% 25%, rgba(200,169,81,0.25) 0%, transparent 100%),
      radial-gradient(2px 2px at 45% 15%, rgba(255,255,255,0.12) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 75% 35%, rgba(200,169,81,0.2) 0%, transparent 100%),
      radial-gradient(1px 1px at 25% 65%, rgba(255,255,255,0.08) 0%, transparent 100%),
      radial-gradient(1.5px 1.5px at 85% 55%, rgba(200,169,81,0.15) 0%, transparent 100%),
      radial-gradient(1px 1px at 55% 80%, rgba(255,255,255,0.1) 0%, transparent 100%),
      radial-gradient(2px 2px at 5% 90%, rgba(200,169,81,0.18) 0%, transparent 100%),
      radial-gradient(1px 1px at 95% 10%, rgba(255,255,255,0.15) 0%, transparent 100%),
      linear-gradient(180deg, rgba(12,21,37,0.95) 0%, rgba(12,21,37,0.7) 50%, rgba(12,21,37,0.9) 100%),
      url('/assets/images/hero-mountain.jpg') center/cover no-repeat !important;
  }
  .image-break {
    background:
      linear-gradient(180deg, rgba(12,21,37,0.6) 0%, rgba(12,21,37,0.4) 50%, rgba(12,21,37,0.7) 100%),
      url('/assets/images/peak-mountain.jpg') center/cover no-repeat !important;
  }
  .cta-section {
    background:
      linear-gradient(180deg, rgba(12,21,37,0.92) 0%, rgba(12,21,37,0.8) 50%, rgba(12,21,37,0.95) 100%),
      url('/assets/images/ridge-mountain.jpg') center/cover no-repeat !important;
  }
  .about-hero {
    background:
      linear-gradient(180deg, rgba(12,21,37,0.88) 0%, rgba(12,21,37,0.75) 50%, rgba(12,21,37,0.92) 100%),
      url('/assets/images/hero-mountain.jpg') center/cover no-repeat !important;
  }
}
