/* ==========================================================
   Quorum — Community Management
   styles.css v1.0  |  June 2026
   ========================================================== */

/* 0. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--q-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--q-ink);
  background: var(--q-parchment);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  --q-forest:       #1A3D2B;
  --q-forest-mid:   #2A5E40;
  --q-gold:         #B8902E;
  --q-gold-dark:    #9A7826;
  --q-parchment:    #F7F5F0;
  --q-surface:      #FFFFFF;
  --q-ink:          #1C2820;
  --q-muted:        #5C6B5E;
  --q-hairline:     #D8D4CC;
  --q-gold-tint:    #F4EDD8;

  --q-font-display: 'Playfair Display', Georgia, serif;
  --q-font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --q-fs-hero:   clamp(2.2rem, 5vw, 3.6rem);
  --q-fs-h1:     clamp(1.7rem, 3vw, 2.4rem);
  --q-fs-h2:     clamp(1.3rem, 2.2vw, 1.75rem);
  --q-fs-h3:     1.2rem;
  --q-fs-body:   1rem;
  --q-fs-small:  0.875rem;
  --q-fs-tiny:   0.75rem;

  --q-max-width: 1100px;
  --q-nav-h:     72px;
  --q-radius:    6px;
  --q-shadow:    0 1px 3px rgba(26,61,43,0.08), 0 1px 2px rgba(26,61,43,0.05);
  --q-shadow-lg: 0 4px 16px rgba(26,61,43,0.12);
}

/* 2. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--q-font-display);
  line-height: 1.2;
  color: var(--q-forest);
}
h1 { font-size: var(--q-fs-h1); }
h2 { font-size: var(--q-fs-h2); margin-bottom: 16px; }
h3 { font-size: var(--q-fs-h3); margin-bottom: 10px; }
p  { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--q-muted);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--q-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--q-gold);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--q-gold);
  opacity: 0.5;
}
.eyebrow::before { width: 28px; }
.eyebrow::after  { width: 28px; }

/* 3. LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--q-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section       { padding: 96px 0; }
.section--alt  { background: var(--q-surface); }
.section--dark { background: var(--q-forest); color: #fff; }
.section--tint { background: var(--q-gold-tint); }

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

.text-center  { text-align: center; }
.text-gold    { color: var(--q-gold); }
.text-muted   { color: var(--q-muted); }
.text-white   { color: #fff; }
.text-forest  { color: var(--q-forest); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* 4. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--q-radius);
  font-family: var(--q-font-body);
  font-size: var(--q-fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn--primary {
  background: var(--q-forest);
  color: #fff;
  border-color: var(--q-forest);
}
.btn--primary:hover { background: var(--q-forest-mid); border-color: var(--q-forest-mid); }

.btn--gold {
  background: var(--q-gold);
  color: #fff;
  border-color: var(--q-gold);
}
.btn--gold:hover { background: var(--q-gold-dark); border-color: var(--q-gold-dark); }

.btn--outline {
  background: transparent;
  color: var(--q-forest);
  border-color: var(--q-forest);
}
.btn--outline:hover { background: var(--q-forest); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* 5. NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--q-surface);
  border-bottom: 1px solid var(--q-hairline);
  height: var(--q-nav-h);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 8px rgba(26,61,43,0.1); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--q-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__brand  { display: flex; flex-direction: column; line-height: 1; }
.nav__word   { font-family: var(--q-font-display); font-size: 1.5rem; font-weight: 700; color: var(--q-forest); }
.nav__sub    { font-family: var(--q-font-body); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--q-gold); margin-top: 2px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: var(--q-fs-small);
  font-weight: 500;
  color: var(--q-ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--q-gold);
  transition: width 0.2s;
}
.nav__link:hover, .nav__link.active { color: var(--q-forest); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { margin-left: 16px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--q-ink); transition: all 0.3s; }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  background: var(--q-surface);
  border-bottom: 1px solid var(--q-hairline);
  padding: 24px 32px;
}
.nav__mobile.open { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile .nav__link { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--q-hairline); }

/* 6. HERO (home)
   ---------------------------------------------------------- */
.hero {
  background: var(--q-forest);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -25%; right: -8%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(184,144,46,0.07);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -4%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.65s ease both;
}
.hero__headline {
  font-family: var(--q-font-display);
  font-size: var(--q-fs-hero);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 24px;
}
.hero__headline em { font-style: italic; color: var(--q-gold); }
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* 7. STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: var(--q-surface);
  border-bottom: 1px solid var(--q-hairline);
}
.stats-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  gap: 16px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--q-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--q-forest);
  line-height: 1;
}
.stat__num em { font-style: italic; color: var(--q-gold); }
.stat__label {
  font-size: 0.72rem;
  color: var(--q-muted);
  letter-spacing: 0.02em;
  margin-top: 6px;
  max-width: 160px;
  line-height: 1.5;
}
.stats-bar__div { width: 1px; height: 52px; background: var(--q-hairline); }

/* 8. CARDS
   ---------------------------------------------------------- */
.card {
  background: var(--q-surface);
  border-radius: var(--q-radius);
  box-shadow: var(--q-shadow);
  padding: 36px;
  transition: all 0.2s ease;
}
.card:hover { box-shadow: var(--q-shadow-lg); transform: translateY(-2px); }

.card__icon {
  width: 48px; height: 48px;
  background: var(--q-gold-tint);
  border-radius: var(--q-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--q-gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { color: var(--q-forest); }
.card p  { color: var(--q-muted); font-size: var(--q-fs-small); line-height: 1.75; }

/* 9. SECTION HEADER
   ---------------------------------------------------------- */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* 10. PAGE HERO (interior)
    ---------------------------------------------------------- */
.page-hero {
  background: var(--q-forest);
  padding: 72px 0;
}
.page-hero h1 {
  font-family: var(--q-font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
}
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 580px; }

/* 11. TESTIMONIAL
    ---------------------------------------------------------- */
.testimonial {
  background: var(--q-forest);
  color: #fff;
  padding: 56px;
  border-radius: var(--q-radius);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--q-font-display);
  font-size: 7rem;
  line-height: 0;
  position: absolute;
  top: 48px; left: 48px;
  color: var(--q-gold);
  opacity: 0.35;
}
.testimonial__quote {
  font-family: var(--q-font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-top: 36px;
}
.testimonial__attr { font-size: var(--q-fs-small); color: rgba(255,255,255,0.6); }
.testimonial__attr strong { color: #fff; display: block; margin-bottom: 2px; }

/* 12. PROCESS STEPS
    ---------------------------------------------------------- */
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--q-hairline);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--q-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--q-hairline);
  line-height: 1;
  padding-top: 2px;
}
.step__body h3 { color: var(--q-forest); }
.step__body p  { color: var(--q-muted); font-size: var(--q-fs-small); line-height: 1.75; }
.step__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--q-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* 13. PRICING
    ---------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--q-surface);
  border-radius: var(--q-radius);
  border: 2px solid var(--q-hairline);
  overflow: hidden;
  transition: all 0.2s ease;
}
.pricing-card:hover { border-color: var(--q-forest); box-shadow: var(--q-shadow-lg); }
.pricing-card--featured { border-color: var(--q-forest); box-shadow: var(--q-shadow-lg); }

.pricing-badge {
  background: var(--q-gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
}
.pricing-head { background: var(--q-forest); color: #fff; padding: 32px; }
.pricing-head__tier { font-family: var(--q-font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.pricing-head__price { font-family: var(--q-font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.pricing-head__price span { font-family: var(--q-font-body); font-size: 1rem; font-weight: 400; opacity: 0.7; }
.pricing-head__desc { font-size: var(--q-fs-small); opacity: 0.7; margin-top: 10px; font-style: italic; }

.pricing-features { padding: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--q-fs-small);
  color: var(--q-ink);
  border-bottom: 1px solid var(--q-hairline);
  line-height: 1.5;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; stroke: var(--q-gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.pricing-cta { padding: 0 32px 32px; }
.pricing-cta .btn { width: 100%; text-align: center; }

/* 14. CASE STUDY CARDS
    ---------------------------------------------------------- */
.case-card {
  background: var(--q-surface);
  border-radius: var(--q-radius);
  box-shadow: var(--q-shadow);
  overflow: hidden;
}
.case-card__head { background: var(--q-forest); padding: 32px; color: #fff; }
.case-card__org  { font-family: var(--q-font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.case-card__type { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--q-gold); }
.case-card__body { padding: 32px; }
.case-card__challenge { font-size: var(--q-fs-small); color: var(--q-muted); line-height: 1.75; margin-bottom: 24px; }
.case-card__results { display: flex; gap: 12px; margin-bottom: 24px; }
.result-metric { flex: 1; text-align: center; background: var(--q-parchment); border-radius: var(--q-radius); padding: 14px 8px; }
.result-metric__num   { font-family: var(--q-font-display); font-size: 1.6rem; font-weight: 700; color: var(--q-forest); line-height: 1; }
.result-metric__label { font-size: 0.65rem; color: var(--q-muted); margin-top: 4px; line-height: 1.4; }
.case-card__quote {
  font-style: italic;
  font-size: var(--q-fs-small);
  color: var(--q-muted);
  border-left: 3px solid var(--q-gold);
  padding-left: 16px;
  line-height: 1.7;
}

/* 15. CONTACT FORM
    ---------------------------------------------------------- */
.form-wrap { background: var(--q-surface); border-radius: var(--q-radius); box-shadow: var(--q-shadow-lg); padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: var(--q-fs-small); font-weight: 600; color: var(--q-ink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--q-hairline);
  border-radius: var(--q-radius);
  font-family: var(--q-font-body);
  font-size: var(--q-fs-body);
  color: var(--q-ink);
  background: var(--q-surface);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--q-forest); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--q-muted); }
.form-note { font-size: var(--q-fs-tiny); color: var(--q-muted); margin-top: 12px; }

/* 16. CHECK LIST
    ---------------------------------------------------------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--q-fs-small); color: var(--q-ink); line-height: 1.6; }
.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8902E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 17. HIGHLIGHT BOX
    ---------------------------------------------------------- */
.highlight-box {
  background: var(--q-gold-tint);
  border-left: 4px solid var(--q-gold);
  border-radius: 0 var(--q-radius) var(--q-radius) 0;
  padding: 24px 32px;
}
.highlight-box p { font-size: var(--q-fs-small); color: var(--q-ink); line-height: 1.75; }

/* 18. PAIN POINT CARDS
    ---------------------------------------------------------- */
.pain-card {
  background: var(--q-surface);
  border-radius: var(--q-radius);
  box-shadow: var(--q-shadow);
  padding: 36px;
}
.pain-card__number {
  font-family: var(--q-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--q-hairline);
  line-height: 1;
  margin-bottom: 16px;
}
.pain-card h3 { color: var(--q-forest); margin-bottom: 12px; }
.pain-card p  { color: var(--q-muted); font-size: var(--q-fs-small); line-height: 1.75; }

/* 19. CONTACT INFO PANEL
    ---------------------------------------------------------- */
.contact-panel { background: var(--q-forest); border-radius: var(--q-radius); padding: 48px; color: #fff; }
.contact-panel h3 { color: #fff; font-size: 1.4rem; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail svg { width: 22px; height: 22px; stroke: var(--q-gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.contact-detail p { font-size: var(--q-fs-small); color: rgba(255,255,255,0.75); margin: 0; }
.contact-detail strong { color: #fff; display: block; margin-bottom: 2px; }

/* 20. FOOTER
    ---------------------------------------------------------- */
.footer { background: var(--q-ink); color: rgba(255,255,255,0.6); padding: 64px 0 32px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__brand-word { font-family: var(--q-font-display); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer__brand-sub  { font-family: var(--q-font-body); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--q-gold); margin-bottom: 16px; }
.footer__brand p    { font-size: var(--q-fs-small); line-height: 1.75; color: rgba(255,255,255,0.5); }
.footer__col-head   { font-family: var(--q-font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer__links      { display: flex; flex-direction: column; gap: 10px; }
.footer__link       { font-size: var(--q-fs-small); color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__link:hover { color: var(--q-gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--q-fs-tiny);
  color: rgba(255,255,255,0.35);
}
.footer__ig { font-size: var(--q-fs-tiny); color: rgba(255,255,255,0.35); }
.footer__ig a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }

/* 21. ANIMATION
    ---------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__content { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* 22. RESPONSIVE
    ---------------------------------------------------------- */
@media (max-width: 900px) {
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .stats-bar__inner { flex-wrap: wrap; justify-content: center; gap: 28px; }
  .stats-bar__div { display: none; }
}
@media (max-width: 600px) {
  .container  { padding: 0 20px; }
  .section    { padding: 64px 0; }
  .form-grid  { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .form-wrap  { padding: 28px 24px; }
  .testimonial { padding: 36px 28px; }
  .contact-panel { padding: 32px 24px; }
}
/* InterGen public concept notice */
.intergen-concept-banner{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;background:#16263f;color:#fff;padding:11px 24px;font-family:Inter,Arial,sans-serif;font-size:.88rem;line-height:1.4;text-align:center}
.intergen-concept-banner strong{color:#e4ad69}
.intergen-concept-banner a{color:#fff;font-weight:600;text-decoration:underline;text-underline-offset:3px}
@media(max-width:700px){.intergen-concept-banner{gap:6px 12px;padding:10px 16px}.intergen-concept-banner span{flex-basis:100%}}
