/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: #0e1320;
  background: #ffffff;
  line-height: 1.6;
}

/* Theme - tuned to RHC Advisory colorway */
:root {
  --deep-green: #012622;
  --gold: #d3a316;
  --ink: #0e1320;
  --muted: #5a6275;
  --bg-alt: #f5f7f3;
  --stroke: #dde4da;
}

/* Layout helpers */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(1, 38, 34, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.brand-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: #edf2f1;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

/* Hero */
.hero {
  background:
    radial-gradient(1000px 600px at 15% -10%, rgba(211, 163, 22, 0.12) 0, transparent 60%),
    linear-gradient(150deg, #012622 0%, #021916 55%, #02100f 100%);
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 60px 0 50px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 6px;
}

.hero-main h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.hero-sub {
  margin: 0 0 20px;
  max-width: 54ch;
  color: rgba(237, 243, 242, 0.9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #012622;
  background: #ffffff;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #012622;
}

.button.primary:hover {
  filter: brightness(1.06);
}

.button.ghost {
  background: transparent;
  color: #ffffff;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-cred {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.9rem;
  color: rgba(230, 238, 237, 0.85);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(1, 18, 16, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 16px;
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.9rem;
  color: rgba(231, 239, 238, 0.9);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  background: rgba(1, 18, 16, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  text-align: center;
}

.stat-num {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(226, 236, 235, 0.9);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--stroke);
}

.section-header {
  text-align: center;
  margin-bottom: 26px;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  color: var(--deep-green);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

/* Cards / grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 18px 18px 16px;
}

.card h3 {
  margin: 4px 0 6px;
  font-size: 1.1rem;
  color: var(--deep-green);
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.result {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 18px;
}

.result h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--deep-green);
}

.result p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.result-outcome {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--stroke);
  margin-top: 10px;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  position: relative;
}

.step-badge {
  position: absolute;
  left: -31px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--deep-green);
}

.step-body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--deep-green);
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 0.95rem;
}

.about-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 16px;
  font-size: 0.92rem;
}

.about-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--deep-green);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

.contact-layout.single {
  grid-template-columns: minmax(0, 1fr);
}

.contact-form {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 18px 16px 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.contact-form span {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--deep-green);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 16px 0;
  background: #011613;
  color: #e4ecea;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #e4ecea;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Privacy note */
.privacy-note {
  padding: 14px 0 24px;
  background: #f3f6f5;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-aside {
    order: -1;
  }

  .nav-links {
    display: none; /* simple mobile treatment; can expand later */
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout.single {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Honeypot field - hidden from human users */
.hidden-field {
  display: none;
}


.follow-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #d3a316;
  color: #012622;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 8px;
}
.follow-btn:hover {
  filter: brightness(1.06);
}


.follow-top {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  margin-bottom: -18px;
}



.nav-follow {
  padding: 6px 12px;
  border-radius: 999px;
  background: #d3a316;
  color: #012622 !important;
  font-weight: 600;
  text-decoration: none;
  margin-left: 12px;
}
.nav-follow:hover {
  filter: brightness(1.06);
}
