:root {
  --bg: #07111d;
  --bg-soft: #0c1a2a;
  --panel: rgba(10, 21, 35, 0.78);
  --panel-solid: #0d1a2a;
  --text: #f3efe8;
  --muted: #c7c0b4;
  --gold: #d28a2f;
  --gold-soft: #f0bf6e;
  --line: rgba(240, 191, 110, 0.22);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { width: min(840px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 20, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand-block {
  display: flex;
  flex-direction: column;
}
.eyebrow, .section-label, .hero-kicker, .ecq-number, .timeline-item span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold-soft);
}
.brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
}
.site-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.96rem;
}
.site-nav a {
  color: var(--muted);
}
.site-nav a:hover, .text-link:hover {
  color: var(--gold-soft);
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-image: url('assets/recommended-colors.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 138, 47, 0.25), transparent 32%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.83), rgba(3, 7, 13, 0.58) 45%, rgba(3, 7, 13, 0.8));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 6rem;
  max-width: 760px;
}
.hero h1, .section h2 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.15;
}
.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  margin: 0.4rem 0 1rem;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 720px;
  color: #fbf6ed;
}
.hero-body {
  max-width: 680px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c8731f);
  color: #0b1320;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn-secondary {
  border: 1px solid rgba(240, 191, 110, 0.34);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn-secondary:hover {
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.06);
}

.section {
  padding: 6rem 0;
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(var(--max), calc(100% - 2rem));
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
}
.section-header {
  max-width: 760px;
  margin-bottom: 2.25rem;
}
.section h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 0.45rem 0 1rem;
}
.lead {
  font-size: 1.18rem;
  color: #f9f0de;
}
blockquote {
  margin: 2.25rem 0 0;
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 0 18px 18px 0;
  font-family: 'Libre Baskerville', serif;
  color: #fbf6ed;
}
.cards {
  display: grid;
  gap: 1.2rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .ecq-card, .download-card, .timeline-item, .quote-panel, .brand-panel, .tool-callout, .contact-form, .coaching-invite {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .ecq-card, .timeline-item, .quote-panel, .brand-panel, .coaching-invite {
  padding: 1.5rem;
}
.card h3, .ecq-card h3, .download-card h3, .tool-callout h3, .quote-panel p, .brand-panel h3, .coaching-invite h3 {
  margin-top: 0;
  font-family: 'Libre Baskerville', serif;
}
.ecq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.ecq-card:last-child {
  grid-column: 1 / -1;
}
.ecq-card ul, .brand-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
}
.tool-callout {
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.tool-callout.inverse {
  background: linear-gradient(135deg, rgba(210,138,47,0.16), rgba(11, 24, 40, 0.96));
}
.text-link {
  color: var(--gold-soft);
  font-weight: 600;
}
.download-card {
  padding: 1.5rem;
  display: block;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.download-card span {
  color: var(--gold-soft);
  font-weight: 600;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 191, 110, 0.34);
}
.accent-section {
  background: linear-gradient(180deg, rgba(210,138,47,0.08), rgba(7,17,29,0));
}
.split {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.quote-panel {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #fbf3e3;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.timeline-item h3 {
  margin-bottom: 0.4rem;
}
.center-link {
  margin-top: 1.75rem;
  text-align: center;
}
.brand-section {
  background: radial-gradient(circle at 85% 20%, rgba(210,138,47,0.12), transparent 24%);
}
.contact-form {
  margin-top: 2rem;
  padding: 1.7rem;
}
.form-row {
  margin-bottom: 1rem;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
input, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font: inherit;
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(240, 191, 110, 0.5);
  box-shadow: 0 0 0 4px rgba(210, 138, 47, 0.12);
}
.hidden { display: none; }
.coaching-invite {
  margin-top: 1.6rem;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.8rem 0 2.3rem;
  background: rgba(0,0,0,0.14);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-brand {
  font-family: 'Libre Baskerville', serif;
  margin: 0 0 0.3rem;
}

@media (max-width: 960px) {
  .three-up, .two-up, .split, .timeline, .ecq-grid, .form-row.two-col {
    grid-template-columns: 1fr;
  }
  .ecq-card:last-child { grid-column: auto; }
  .tool-callout {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    position: absolute;
    right: 1rem;
    top: 78px;
    width: min(320px, calc(100% - 2rem));
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: rgba(5, 11, 20, 0.96);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero-content { padding-top: 7rem; }
  .section { padding: 4.6rem 0; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
