/* ScaleWithSteven design system */
:root {
  --bg: #020617;          /* slate-950 (matches GHL site) */
  --surface: #0f172a;     /* slate-900 */
  --surface-2: #1e293b;   /* slate-800 — elevated cards */
  --border: #1e293b;
  --border-strong: #334155;
  --text: #ffffff;
  --text-muted: #94a3b8;  /* slate-400 */
  --text-soft: #cbd5e1;   /* slate-300 */
  --gold: #d4af37;
  --gold-hover: #e6c14a;
  --gold-soft: rgba(212, 175, 55, 0.08);
  --danger: #ef4444;
  --max-w: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle radial glow on body background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.06), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(99,102,241,0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--text-soft); }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

.section { padding: 6rem 0; position: relative; }
.section--tight { padding: 3rem 0; }

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 2px;
}
.btn:hover {
  background: var(--gold-hover);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface);
  color: var(--gold);
  border-color: var(--gold);
}

.btn--lg { padding: 1.25rem 2.5rem; font-size: 1.05rem; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.25s ease;
  border-radius: 4px;
  position: relative;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
a.card { display: block; color: inherit; }

/* Photo card (testimonial) */
.photo-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 3/4;
  transition: all 0.3s ease;
}
.photo-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(2,6,23,0.95), rgba(2,6,23,0.7) 60%, transparent);
  color: var(--text);
}
.photo-card .caption .badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.photo-card .caption strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.photo-card .caption .brand {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* Utilities */
.muted { color: var(--text-muted); }
.gold { color: var(--gold); }
.upper { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; }
.center { text-align: center; }

/* Grid */
.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: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Hero */
.hero {
  padding: 7rem 0 6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
@media (max-width: 768px) {
  .hero { padding: 4rem 0 3rem; }
}

/* Stats card */
.stats {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats .stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats .stat .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 768px) {
  .stats { padding: 2rem; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Nav */
nav.site {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
nav.site .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}
nav.site .brand img {
  height: 44px;
  width: auto;
  display: block;
}
nav.site .brand .wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
nav.site .brand .wordmark .gold-accent {
  color: var(--gold);
}
@media (max-width: 640px) {
  nav.site .brand { gap: 0.5rem; }
  nav.site .brand img { height: 32px; }
  nav.site .brand .wordmark { font-size: 0.78rem; letter-spacing: 0.02em; }
}

/* Footer */
footer.site {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 600px; }
.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .error { color: var(--danger); font-size: 0.9rem; }
.form button[type="submit"] { align-self: flex-start; }

/* About row with photo */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.about .photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4/5;
}
.about .photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.05);
}
.about .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,175,55,0.15));
  pointer-events: none;
}
@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; gap: 2rem; }
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details > p {
  margin-top: 1rem;
  color: var(--text-muted);
}

/* Scroll animations — content is visible by default; JS adds .js-fade to enable */
.fade-in { transition: opacity 0.7s ease, transform 0.7s ease; }
.js-fade .fade-in:not(.visible) { opacity: 0; transform: translateY(20px); }
.js-fade .fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-fade .fade-in { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}
/* v1776959688 */
