:root {
  --ink: #161616;          /* logo black */
  --ink-2: #202020;
  --gold: #f5a800;         /* logo gold */
  --gold-dark: #d68f00;
  --charcoal: #222222;
  --slate: #5e5e5e;
  --grey: #8a8a8a;         /* tagline grey */
  --light: #f6f6f4;        /* clean neutral background */
  --line: #e6e6e2;
  --white: #ffffff;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold-dark); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Brand wordmark ---------- */
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  font-weight: 800; font-size: 26px; letter-spacing: 0.5px; color: var(--white); line-height: 1;
}
.brand .mark .g { color: var(--gold); }
.brand .name {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: #cfcfcf; font-weight: 600; padding-left: 12px; border-left: 1px solid #3a3a3a;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--ink);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: #cfcfcf; font-size: 15px; font-weight: 500; letter-spacing: 0.3px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 9px 20px; font-weight: 700; border-radius: 3px; letter-spacing: 0.3px;
}
.nav-cta:hover { background: #ffbb1f; color: var(--ink) !important; }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold);
}
.hero h1 { color: var(--white); font-size: 50px; max-width: 800px; }
.hero p.lead { color: #c9c9c9; font-size: 20px; max-width: 660px; margin-top: 22px; }
.hero .kicker { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; font-weight: 700; margin-bottom: 18px; }
.hero .kicker em { font-style: italic; text-transform: none; letter-spacing: 0.5px; color: var(--grey); }
.hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 3px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.3px; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: #ffbb1f; color: var(--ink); }
.btn-ghost { border-color: #5a5a5a; color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); color: var(--gold); }

/* ---------- Sections ---------- */
section.block { padding: 84px 0; }
section.alt { background: var(--light); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .kicker { color: var(--gold-dark); letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; font-weight: 700; }
.section-head h2 { font-size: 35px; margin-top: 10px; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 14px; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; padding: 32px; transition: all .2s ease;
  border-top: 3px solid var(--line);
}
.card:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.08); border-top-color: var(--gold); transform: translateY(-3px); }
.card .num { color: var(--gold-dark); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.card h3 { font-size: 21px; margin: 12px 0 12px; }
.card p { color: var(--slate); font-size: 15.5px; }
.card ul { margin-top: 14px; padding-left: 18px; color: var(--slate); font-size: 15px; }
.card ul li { margin-bottom: 6px; }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .big { font-size: 42px; color: var(--gold-dark); font-weight: 800; }
.stat .lbl { color: var(--slate); font-size: 14px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: 33px; }
.split p { color: var(--slate); font-size: 16.5px; margin-top: 16px; }
.split .panel {
  background: var(--ink); color: var(--white); padding: 44px; border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.split .panel h3 { color: var(--white); font-size: 22px; }
.split .panel ul { list-style: none; margin-top: 18px; }
.split .panel li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); color: #cfcfcf; display: flex; gap: 12px; }
.split .panel li:last-child { border-bottom: 0; }
.split .panel li::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--white); text-align: center; padding: 78px 0; border-top: 2px solid var(--gold); }
.cta-band h2 { color: var(--white); font-size: 34px; }
.cta-band p { color: #c9c9c9; margin: 14px 0 30px; font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a8a8a8; padding: 56px 0 28px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--white); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #a8a8a8; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }

/* footer logo recreation */
.logo-stack { display: inline-block; }
.logo-stack .lm { font-weight: 800; font-size: 30px; color: var(--white); line-height: 1; letter-spacing: 0.5px; }
.logo-stack .lm .g { color: var(--gold); }
.logo-stack .lrule { display: block; height: 4px; background: var(--gold); margin: 6px 0; width: 100%; }
.logo-stack .lc { font-weight: 800; font-size: 16px; letter-spacing: 6px; color: var(--white); text-transform: uppercase; }
.footer-brand .tagline { color: var(--grey); font-style: italic; font-size: 13px; letter-spacing: 0.5px; margin-top: 12px; }
.footer-brand p.desc { max-width: 340px; margin-top: 12px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #777; font-size: 13px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item .ico {
  color: var(--ink); background: var(--gold); font-size: 16px;
  min-width: 40px; height: 40px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.info-item h4 { font-size: 14px; letter-spacing: 0.3px; color: var(--ink); }
.info-item p, .info-item a { color: var(--slate); font-size: 15px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 36px; box-shadow: 0 14px 34px rgba(0,0,0,0.05); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px;
  font-family: inherit; font-size: 15px; color: var(--charcoal); background: var(--light);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.note { font-size: 13px; color: var(--slate); margin-top: 12px; }

/* ---------- Page header ---------- */
.page-head { background: var(--ink); color: var(--white); padding: 76px 0; position: relative; }
.page-head::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.page-head .kicker { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; font-weight: 700; }
.page-head h1 { color: var(--white); font-size: 42px; margin-top: 10px; }
.page-head p { color: #c9c9c9; font-size: 18px; max-width: 640px; margin-top: 14px; }

.lead-text { font-si