/* ── CONSERVI.US — GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-dark: #111D30;
  --navy-mid: #253F6B;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-pale: #FDF8EC;
  --white: #ffffff;
  --off-white: #F4F6F9;
  --border: #E5E7EB;
  --border-light: #F0F0F0;
  --text-body: #4B5563;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --green: #2D7D46;
  --red: #C0392B;
  --font-sans: 'Josefin Sans', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text-body); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── UTILS ── */
.eyebrow { font-size: 13.2px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); font-weight: 300; margin-bottom: 14px; display: block; }
.h1 { font-size: 68.8px; font-weight: 700; color: var(--navy); line-height: 1.05; letter-spacing: -0.5px; }
.h1-light { font-size: 68.8px; font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.5px; }
.h2 { font-size: 47.6px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.h3 { font-size: 29.1px; font-weight: 700; color: var(--navy); }
.gold { color: var(--gold); }
.lead { font-size: 21.2px; font-weight: 300; color: var(--text-muted); line-height: 1.9; }
.lead-light { font-size: 21.2px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.9; }
.body-sm { font-size: 18.5px; font-weight: 300; line-height: 1.85; color: var(--text-body); }
.muted { color: var(--text-muted); }
.caps { font-size: 14.5px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--font-sans); font-size: 14.5px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; padding: 14px 28px; border-radius: 3px; cursor: pointer; border: none; transition: all 0.2s; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8962e; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: var(--white); }

/* ── NAV ── */
.nav { background: var(--navy); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; height: 68px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark svg { display: block; }
.nav-wordmark { font-size: 22.4px; font-weight: 700; letter-spacing: 2px; color: var(--white); }
.nav-wordmark span { color: var(--gold); }
.nav-links { display: flex; gap: 4px; }
.nav-link { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; font-weight: 300; color: rgba(255,255,255,0.5); padding: 8px 14px; border-radius: 3px; transition: all 0.2s; cursor: pointer; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--gold); border: 1px solid var(--gold); padding: 9px 20px; border-radius: 3px; cursor: pointer; background: transparent; font-family: var(--font-sans); transition: all 0.2s; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ── SECTIONS ── */
.section { padding: 80px 48px; }
.section-sm { padding: 56px 48px; }
.section-navy { background: var(--navy); padding: 80px 48px; }
.section-off { background: var(--off-white); padding: 80px 48px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-center { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── CARDS ── */
.card { background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 28px 32px; }
.card-navy { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 28px 32px; }
.card-gold-left { border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; padding: 24px 28px; background: var(--white); border-top: 0.5px solid var(--border); border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }

/* ── BADGES ── */
.badge { font-size: 13.2px; font-weight: 700; letter-spacing: 1px; padding: 3px 9px; border-radius: 3px; text-transform: uppercase; display: inline-block; }
.badge-red { background: #FDEDEC; color: var(--red); }
.badge-gold { background: #FDF8EC; color: #8B6914; }
.badge-green { background: #E8F5E9; color: var(--green); }

/* ── SCORE BARS ── */
.score-row { display: flex; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 0.5px solid var(--border-light); }
.score-row:last-child { border-bottom: none; }
.score-label { font-size: 17.3px; font-weight: 300; color: var(--text-body); min-width: 170px; }
.score-track { flex: 1; height: 6px; background: #F0F0F0; border-radius: 3px; overflow: hidden; }
.score-fill { height: 6px; border-radius: 3px; }
.score-rating { font-size: 14.5px; font-weight: 600; min-width: 80px; text-align: right; letter-spacing: 1px; }

/* ── FRICTION TABLE ── */
.friction-table { width: 100%; border-collapse: collapse; }
.friction-table th { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); font-weight: 600; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); background: var(--off-white); }
.friction-table td { font-size: 17.3px; font-weight: 300; color: var(--text-body); padding: 13px 14px; border-bottom: 0.5px solid var(--border-light); line-height: 1.6; }
.friction-table tr:last-child td { border-bottom: none; }
.friction-table tr:hover td { background: var(--off-white); }

/* ── QUOTE ── */
.pull-quote { border-left: 3px solid var(--gold); padding: 22px 28px; background: var(--gold-pale); border-radius: 0 6px 6px 0; }
.pull-quote p { font-family: var(--font-serif); font-size: 23.8px; font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.8; }

/* ── TIMELINE ── */
.timeline { display: grid; grid-template-columns: 180px 1fr; gap: 0; }
.tl-era { padding: 32px 32px 32px 0; border-right: 1px solid var(--border); border-bottom: 0.5px solid var(--border-light); text-align: right; }
.tl-era:last-child { border-bottom: none; }
.tl-era-label { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 300; }
.tl-era-type { font-size: 17.3px; font-weight: 300; color: var(--text-faint); margin-top: 4px; }
.tl-content { padding: 32px 0 32px 40px; border-bottom: 0.5px solid var(--border-light); }
.tl-content:last-child { border-bottom: none; }
.tl-role { font-size: 22.4px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tl-org { font-size: 17.3px; font-weight: 300; color: var(--gold); margin-bottom: 10px; letter-spacing: 1px; }
.tl-desc { font-size: 18.5px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* ── STEP BLOCKS ── */
.step-block { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 0; padding: 52px 0; border-bottom: 0.5px solid var(--border-light); align-items: start; }
.step-block:last-child { border-bottom: none; }
.step-num { font-size: 74.1px; font-weight: 700; color: #EBEBEB; line-height: 1; letter-spacing: -3px; }
.step-body { padding: 0 40px; }
.step-title { font-size: 15.9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 18.5px; font-weight: 300; color: var(--text-muted); line-height: 1.85; }
.step-callout { background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 4px 4px 0; }
.step-callout-label { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.step-callout-text { font-size: 17.3px; font-weight: 300; color: var(--text-body); line-height: 1.75; }

/* ── DELIVERABLE ROWS ── */
.deliv-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border-light); }
.deliv-row:last-child { border-bottom: none; }
.deliv-left { padding: 52px 48px 52px 0; border-right: 0.5px solid var(--border-light); }
.deliv-right { padding: 52px 0 52px 48px; display: flex; align-items: center; }
.deliv-num { font-size: 68.8px; font-weight: 700; color: #EBEBEB; line-height: 1; margin-bottom: 16px; }
.deliv-title { font-size: 31.7px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.deliv-desc { font-size: 18.5px; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.deliv-includes { margin-top: 20px; }
.deliv-inc-label { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.include-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 7px; font-size: 17.3px; font-weight: 300; color: var(--text-body); line-height: 1.6; }
.include-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.deliv-visual { background: var(--off-white); border-radius: 8px; padding: 28px; width: 100%; }
.deliv-visual-label { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; margin-top: 48px; }
.faq-q { font-size: 19.9px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-a { font-size: 18.5px; font-weight: 300; color: var(--text-muted); line-height: 1.85; }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 88px 48px; }
.page-hero-inner { max-width: 580px; }
.page-hero-centered { text-align: center; max-width: 560px; margin: 0 auto; }

/* ── GOLD STRIP ── */
.gold-strip { background: var(--gold); padding: 16px 48px; display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.gold-strip-item { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; color: var(--navy); }

/* ── PILL STATS ── */
.stat-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.2); border-radius: 3px; padding: 8px 16px; font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 300; }
.pill strong { color: var(--gold); font-weight: 700; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); padding: 88px 48px; text-align: center; }
.cta-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 14px; }
.cta-input { flex: 1; background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.2); border-radius: 3px; padding: 14px 18px; font-size: 18.5px; color: var(--white); font-family: var(--font-sans); font-weight: 300; outline: none; }
.cta-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-input:focus { border-color: var(--gold); }
.cta-note { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-size: 19.9px; font-weight: 700; letter-spacing: 2px; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 28px; }
.footer-link { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-link:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 14.5px; color: rgba(255,255,255,0.2); letter-spacing: 2px; }

/* ── REPORT PREVIEW ── */
.report-card { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 32px; }
.rp-header { border-bottom: 0.5px solid rgba(255,255,255,0.1); padding-bottom: 18px; margin-bottom: 18px; }
.rp-eyebrow { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 300; margin-bottom: 6px; }
.rp-prop { font-size: 23.8px; font-weight: 700; color: var(--white); }
.rp-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.rp-row:last-child { border-bottom: none; }
.rp-label { font-size: 15.9px; font-weight: 300; color: rgba(255,255,255,0.5); }
.rp-bar-wrap { width: 130px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.rp-bar { height: 4px; border-radius: 2px; }
.rp-score { font-size: 15.9px; font-weight: 600; min-width: 72px; text-align: right; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 13.2px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-input { background: var(--white); border: 0.5px solid var(--border); border-radius: 3px; padding: 13px 16px; font-size: 18.5px; color: var(--navy); font-family: var(--font-sans); font-weight: 300; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.contact-info { padding-top: 8px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 0.5px solid var(--border-light); }
.contact-info-item:first-child { border-top: 0.5px solid var(--border-light); }
.ci-icon { font-size: 23.8px; color: var(--gold); margin-top: 2px; min-width: 24px; }
.ci-label { font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-bottom: 3px; }
.ci-value { font-size: 19.9px; font-weight: 300; color: var(--navy); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 36px 32px; position: relative; }
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 13.2px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; padding: 4px 16px; border-radius: 12px; white-space: nowrap; }
.pricing-tier { font-size: 14.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.pricing-name { font-size: 31.7px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-size: 18.5px; font-weight: 300; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 0.5px solid var(--border); }
.pricing-price strong { font-size: 47.6px; font-weight: 700; color: var(--navy); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 17.3px; font-weight: 300; color: var(--text-body); line-height: 1.5; }
.pf-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .two-col, .two-col-center, .contact-grid, .deliv-row { grid-template-columns: 1fr; }
  .step-block { grid-template-columns: 1fr; gap: 16px; }
  .three-col, .four-col, .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .h1, .h1-light { font-size: 47.6px; }
  .section, .section-navy, .section-off { padding: 56px 24px; }
  .nav { padding: 0 24px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
}
