/* ShazRise — brand system built on the logo: ink #14181F + gold #C98A3E */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  /* brand */
  --ink:        #14181F;
  --ink-2:      #1C222C;
  --ink-3:      #2A3240;
  --gold:       #C98A3E;
  --gold-lt:    #E0A455;
  --gold-dk:    #A66F2C;
  --gold-tint:  rgba(201, 138, 62, 0.10);

  /* surfaces */
  --paper:      #F7F5F2;
  --paper-2:    #EFEBE4;
  --paper-3:    #E4DED4;

  /* text */
  --text:       #171A20;
  --muted:      #5E636E;
  --muted-2:    #7C818C;
  --on-dark:    #F2EFEA;
  --on-dark-mut:#A8ADB8;

  /* lines */
  --line:       #DCD6CC;
  --line-2:     #CAC3B7;
  --line-dark:  rgba(255,255,255,0.13);

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.005em; margin: 0 0 10px;
}
h1 { font-size: clamp(38px, 4.7vw, 64px); line-height: 0.98; letter-spacing: -0.015em; font-weight: 700; }
h2 { font-size: clamp(30px, 3.9vw, 46px); }
h3 { font-size: 20px; }
p { margin: 0 0 12px; }
a { color: var(--gold-dk); }
img { display: block; max-width: 100%; height: auto; }
strong { font-weight: 600; }

.kicker {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dk); margin-bottom: 16px;
}
.kicker.on-dark { color: var(--gold-lt); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 44px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* ---------------- header ---------------- */
.site-header { background: var(--ink); position: sticky; top: 0; z-index: 20; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--on-dark); }
.brand img { width: 32px; height: 32px; }
.brand span {
  font-family: var(--font-heading); font-weight: 700; font-size: 23px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-heading); font-size: 15px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; color: var(--on-dark-mut); transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-lt); }
.nav-links a.btn { color: var(--ink); }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 64px 0 auto 0; background: var(--ink);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s;
    border-bottom: 1px solid var(--line-dark); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .nav-links a.btn { margin-top: 14px; justify-content: center; border-bottom: none; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; padding: 0; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 17px; height: 2px; background: var(--gold-lt); position: relative; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  letter-spacing: 0.04em; line-height: 1.2;
  color: var(--ink); background: var(--gold); border: 1px solid var(--gold);
  padding: 14px 26px; transition: background .15s, border-color .15s, transform .08s;
}
.btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn:active { transform: translateY(1px); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-secondary:hover { background: rgba(20,24,31,0.05); border-color: var(--muted-2); }
.btn-on-dark { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.3); }
.btn-on-dark:hover { background: rgba(255,255,255,0.08); border-color: var(--on-dark); }

/* ---------------- sections ---------------- */
section { border-bottom: 1px solid var(--line); }
.section-pad { padding: 92px 0; }
.section-alt { background: var(--paper-2); }
@media (max-width: 720px) { .section-pad { padding: 60px 0; } }

.sec-head { max-width: 64ch; margin-bottom: 44px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------------- hero (dark) ---------------- */
.hero-band { background: var(--ink); border-bottom: none; position: relative; overflow: hidden; }
.hero-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(62% 85% at 80% 38%, rgba(201,138,62,0.17), transparent 72%);
  pointer-events: none;
}
.hero { display: grid; grid-template-columns: 1.55fr 1fr; position: relative; z-index: 1; }
.hero-copy { padding: 74px 60px 74px 0; border-right: 1px solid var(--line-dark); }
.hero-side { padding: 74px 0 74px 60px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 62px 0 48px; }
  .hero-side { padding: 44px 0 62px; }
}
.hero-copy h1 { color: var(--on-dark); max-width: 21ch; text-wrap: balance; }
.hero-copy h1 .hl { color: var(--gold); display: block; }
.hero-copy .lede {
  margin-top: 30px; max-width: 54ch; font-size: 20px; line-height: 1.62; color: var(--on-dark-mut);
}
.hero-side .kicker { color: var(--gold-lt); margin-bottom: 4px; }
.hero-note { font-size: 15.5px; color: var(--on-dark-mut); margin: 0; }

.numbered-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.numbered-list > div { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.numbered-list .n {
  font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.12em; padding-top: 4px; flex: none;
}
.numbered-list .t { font-family: var(--font-heading); font-size: 23px; font-weight: 600; line-height: 1.15; color: var(--on-dark); }
.numbered-list .d { font-size: 15px; color: var(--on-dark-mut); margin-top: 6px; line-height: 1.6; }

.hero-actions, .cta-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; }
.cta-inline .note { font-size: 15px; color: var(--muted); }
.hero-actions .note { font-size: 15px; color: var(--on-dark-mut); }

/* ---------------- proof strip ---------------- */
.proof-strip { background: var(--gold); border-bottom: none; }
.proof-strip .container {
  display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: baseline; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.proof-strip span { display: inline-flex; align-items: baseline; color: rgba(20,24,31,0.8); font-size: 14.5px; }
.proof-strip b {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--ink); margin-right: 7px; letter-spacing: 0.01em;
}

/* ---------------- stat grid ---------------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.stat-grid > div { padding: 36px 30px; border-right: 1px solid var(--line); min-width: 0; }
.stat-grid > div:last-child { border-right: none; }
.stat-tag {
  font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px;
}
.stat-num {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(38px, 3.4vw, 54px); line-height: 0.9;
  color: var(--ink); letter-spacing: -0.02em; white-space: nowrap;
}
.stat-label { margin-top: 16px; font-size: 15px; line-height: 1.55; color: var(--muted); }
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid > div:nth-child(2n) { border-right: none; }
  .stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid > div { border-right: none !important; border-bottom: 1px solid var(--line); padding: 28px 22px; }
  .stat-grid > div:last-child { border-bottom: none; }
  .stat-num { font-size: 48px; }
}

/* ---------------- card grid ---------------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid > div {
  background: #fff; padding: 32px 30px; border: 1px solid var(--line);
  border-top: 3px solid var(--gold); min-width: 0;
}
.card-grid h3 { font-size: 21px; margin-bottom: 10px; color: var(--ink); }
.card-grid p { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .card-grid, .card-grid.two { grid-template-columns: 1fr; } }

/* ---------------- case cards ---------------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; min-width: 0; }
.case-card .case-top { padding: 28px 30px 24px; background: var(--ink); }
.case-card .case-tag {
  font-family: var(--font-heading); font-size: 12.5px; font-weight: 600; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px;
}
.case-card .case-num {
  font-family: var(--font-heading); font-weight: 700; font-size: 58px; line-height: 0.9;
  color: #fff; overflow-wrap: anywhere; letter-spacing: -0.02em;
}
.case-card .case-num small {
  font-size: 19px; font-weight: 500; color: var(--on-dark-mut); margin-left: 10px; letter-spacing: 0;
}
.case-card .case-body { padding: 24px 30px 28px; }
.case-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 11px 20px; font-size: 15px; }
.case-card dt { color: var(--muted-2); white-space: nowrap; }
.case-card dd { margin: 0; color: var(--text); }
@media (max-width: 560px) {
  .case-card .case-num { font-size: 44px; }
  .case-card dl { grid-template-columns: 1fr; gap: 2px 0; }
  .case-card dt { margin-top: 12px; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk); }
}

/* ---------------- steps ---------------- */
.steps { border-top: 1px solid var(--line); }
.steps > div {
  display: grid; grid-template-columns: 76px 1fr 1.3fr; gap: 26px; padding: 28px 0;
  border-bottom: 1px solid var(--line); align-items: start;
}
.steps .s-n {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.04em; padding-top: 2px;
}
.steps h3 { font-size: 22px; margin: 0; color: var(--ink); }
.steps p { font-size: 15.5px; line-height: 1.62; color: var(--muted); margin: 0; }
@media (max-width: 800px) { .steps > div { grid-template-columns: 1fr; gap: 8px; } }

/* ---------------- check columns ---------------- */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .check-cols { grid-template-columns: 1fr; } }
.check-cols > div { background: #fff; padding: 32px 30px; border: 1px solid var(--line); min-width: 0; }
.check-cols > div:first-child { border-top: 3px solid var(--gold); }
.check-cols > div:last-child { border-top: 3px solid var(--line-2); }
.check-cols h3 { font-size: 20px; margin-bottom: 18px; color: var(--ink); }
.check-cols ul { list-style: none; margin: 0; padding: 0; }
.check-cols li {
  font-size: 15.5px; line-height: 1.55; color: var(--text); padding: 11px 0 11px 28px;
  position: relative; border-bottom: 1px solid var(--paper-2);
}
.check-cols li:last-child { border-bottom: none; }
.check-cols li::before {
  position: absolute; left: 0; top: 11px; font-family: var(--font-heading);
  font-weight: 700; font-size: 18px;
}
.check-cols .yes li::before { content: "+"; color: var(--gold); }
.check-cols .no li::before { content: "\2013"; color: var(--muted-2); }

/* ---------------- comparison table ---------------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 660px; }
table.cmp th, table.cmp td { padding: 17px 22px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cmp thead th {
  font-family: var(--font-heading); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-2); font-weight: 600;
}
table.cmp thead th.hi { color: var(--ink); background: var(--gold); }
table.cmp tbody th { font-weight: 500; color: var(--muted); width: 27%; }
table.cmp td.hi { background: var(--gold-tint); color: var(--text); font-weight: 500; }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: none; }

/* ---------------- quote band ---------------- */
.quote-band { background: var(--ink); border-bottom: none; }
.quote-band .container { padding-top: 76px; padding-bottom: 76px; }
.quote-band p {
  font-family: var(--font-heading); font-size: clamp(26px, 3.4vw, 42px); line-height: 1.2;
  max-width: 24ch; color: var(--on-dark); margin: 0; font-weight: 600;
}
.quote-band .attrib { font-family: var(--font-body); font-size: 15px; color: var(--gold-lt); margin-top: 22px; letter-spacing: 0.04em; }

/* ---------------- two col ---------------- */
.two-col { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; }
.two-col.even { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) { .two-col, .two-col.even { grid-template-columns: 1fr; gap: 34px; } }

.pull-quote {
  margin: 18px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--ink);
  border-left: 3px solid var(--gold); padding-left: 22px;
}

/* ---------------- portrait ---------------- */
.portrait { width: 100%; max-width: 320px; overflow: hidden; border: 1px solid var(--line); }
.portrait img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; }

/* ---------------- faq ---------------- */
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 21px; color: var(--ink); margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 16px; max-width: 74ch; margin: 0; }

/* ---------------- cta band ---------------- */
.cta-band { background: var(--ink); color: var(--on-dark); border-bottom: none; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 90% at 18% 75%, rgba(201,138,62,0.16), transparent 70%); pointer-events: none;
}
.cta-band .container {
  padding-top: 96px; padding-bottom: 96px; display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 50px); max-width: 22ch; color: #fff; }
.cta-band .sub { color: var(--on-dark-mut); font-size: 17px; margin-top: 16px; max-width: 46ch; }
.cta-band .links { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-band a.text-link {
  font-size: 16px; color: var(--on-dark); text-decoration: none;
  border-bottom: 1px solid rgba(201,138,62,0.55); padding-bottom: 3px; transition: color .15s;
}
.cta-band a.text-link:hover { color: var(--gold-lt); }
@media (max-width: 880px) { .cta-band .container { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------- footer ---------------- */
footer.site-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 26px 44px 40px; font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted-2); background: var(--ink);
}
@media (max-width: 640px) { footer.site-footer { flex-direction: column; text-align: center; padding: 26px 22px 36px; } }

/* ---------------- page intro ---------------- */
.page-intro { padding: 78px 0 26px; }
.page-intro .kicker { margin-bottom: 14px; }
.page-intro p { font-size: 19px; color: var(--muted); }

/* — sector chips (range, not specialisation) — */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips span {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold);
  padding: 13px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 17.5px;
  color: var(--ink); letter-spacing: 0.01em;
}
@media (max-width: 560px) { .chips span { font-size: 16px; padding: 11px 16px; } }
