/* ==========================================================================
   Enrage Technologies — Secure AI & Managed IT
   Shared stylesheet
   ========================================================================== */

:root {
  /* Ink (dark surfaces) */
  --ink:        #0C141E;
  --ink-2:      #12202E;
  --ink-3:      #1B2C3C;
  --ink-line:   #26394B;

  /* Paper (light surfaces) */
  --paper:      #F3F5F8;
  --paper-2:    #FFFFFF;
  --line:       #DCE3EB;
  --line-2:     #E9EEF3;

  /* Text */
  --text:       #0C141E;
  --text-soft:  #4C5C6C;
  --text-mute:  #7A8A99;
  --invert:     #EAF0F6;
  --invert-soft:#98A9B9;

  /* Accent */
  --gold:       #E9A23C;
  --gold-deep:  #C6821F;
  --gold-soft:  #F6E5C4;

  /* Risk bands (status meaning only) */
  --good:       #4FA88E;
  --warn:       #E9A23C;
  --bad:        #D96A54;

  /* System */
  --radius:     6px;
  --radius-lg:  12px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-display: "Archivo", "Segoe UI", sans-serif;
  --font-body:    "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;
}

/* -------------------------------------------------------------------------- */
/* Reset                                                                      */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* -------------------------------------------------------------------------- */
/* Layout primitives                                                          */
/* -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 92px; }
.section--tight { padding-block: 64px; }
.section--dark { background: var(--ink); color: var(--invert); }
.section--ink2 { background: var(--ink-2); color: var(--invert); }
.section--paper2 { background: var(--paper-2); }

.section--dark h1, .section--dark h2, .section--dark h3,
.section--ink2 h1, .section--ink2 h2, .section--ink2 h3 { color: var(--invert); }

/* Eyebrow — a small bracketed tag, not a tracked all-caps label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.section--dark .eyebrow, .section--ink2 .eyebrow,
.hero .eyebrow, .cta-band .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.cta-band p, .cta-band .lead, .page-hero p, .page-hero .lead { color: var(--invert-soft); }
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6;
}

/* -------------------------------------------------------------------------- */
/* Typography                                                                 */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

p { color: var(--text-soft); }
.section--dark p, .section--ink2 p { color: var(--invert-soft); }
.lead { font-size: 1.18rem; line-height: 1.62; color: var(--text-soft); max-width: 60ch; }
.section--dark .lead, .section--ink2 .lead { color: var(--invert-soft); }
.muted { color: var(--text-mute); }
.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  border: 1px solid transparent; transition: background .18s var(--ease), border-color .18s, color .18s, transform .18s;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #241a06; }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.section--dark .btn--ghost, .section--ink2 .btn--ghost,
.hero .btn--ghost, .cta-band .btn--ghost, .page-hero .btn--ghost {
  border-color: var(--ink-line); color: var(--invert);
}
.section--dark .btn--ghost:hover, .section--ink2 .btn--ghost:hover,
.hero .btn--ghost:hover, .cta-band .btn--ghost:hover, .page-hero .btn--ghost:hover {
  border-color: var(--invert); background: rgba(255,255,255,.04);
}
.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn-arrow { transition: transform .2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,20,30,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-3);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--invert); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center; flex: none;
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 46%, rgba(12,20,30,.9) 47%, rgba(12,20,30,.9) 55%, transparent 56%);
}
.brand-mark span { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 17px; position: relative; z-index: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand-name b { color: var(--gold); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--invert-soft); font-size: 15px; font-weight: 500;
  padding: 8px 13px; border-radius: 5px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--invert); background: rgba(255,255,255,.05); }
.nav a.is-active { color: var(--gold); }
.header-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--invert); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-3);
    padding: 12px 16px 20px;
    transform: translateY(-140%); transition: transform .28s var(--ease);
    box-shadow: 0 24px 40px rgba(0,0,0,.4);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 12px; font-size: 16px; border-bottom: 1px solid var(--ink-3); }
  .nav .btn { margin-top: 12px; }
  .nav .header-cta { display: inline-flex; }
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero { background: var(--ink); color: var(--invert); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(680px 420px at 82% 8%, rgba(233,162,60,.10), transparent 60%),
    radial-gradient(500px 500px at 0% 100%, rgba(79,168,142,.06), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-block: 84px 96px;
}
.hero h1 { max-width: 15ch; }
.hero .lead { margin-top: 22px; color: var(--invert-soft); font-size: 1.22rem; max-width: 46ch; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-langs {
  margin-top: 34px; display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 13px; color: var(--invert-soft);
}
.hero-langs span { display: inline-flex; align-items: center; gap: 8px; }
.hero-langs span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-block: 60px 72px; }
  .hero h1 { max-width: 20ch; }
}

/* -------------------------------------------------------------------------- */
/* Posture panel (the signature instrument)                                    */
/* -------------------------------------------------------------------------- */
.posture {
  background: var(--ink-2); border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg); padding: 26px 28px 28px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.posture-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.posture-top .label { font-family: var(--font-mono); font-size: 12px; color: var(--invert-soft); letter-spacing: .02em; }
.posture-tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--gold);
  border: 1px solid rgba(233,162,60,.4); border-radius: 100px; padding: 3px 10px;
}
.posture-main { display: flex; gap: 26px; align-items: center; margin-bottom: 24px; }
.ring { position: relative; width: 128px; height: 128px; flex: none; }
.ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring-track { fill: none; stroke: var(--ink-3); stroke-width: 11; }
.ring-fill  { fill: none; stroke: var(--gold); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 339.29; stroke-dashoffset: 339.29; }
.ring-num {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
}
.ring-num b { font-family: var(--font-mono); font-size: 34px; font-weight: 500; color: var(--invert); line-height: 1; }
.ring-num small { font-family: var(--font-mono); font-size: 12px; color: var(--invert-soft); }
.posture-caption { color: var(--invert-soft); font-size: 14.5px; line-height: 1.5; }
.posture-caption b { color: var(--invert); font-weight: 600; }

.meters { display: grid; gap: 15px; }
.meter { display: grid; grid-template-columns: 118px 1fr 34px; align-items: center; gap: 14px; }
.meter-name { font-size: 13.5px; color: var(--invert-soft); }
.meter-bar { height: 7px; border-radius: 100px; background: var(--ink-3); overflow: hidden; }
.meter-bar i { display: block; height: 100%; width: 0; border-radius: 100px; transition: width 1.1s var(--ease); }
.meter-val { font-family: var(--font-mono); font-size: 13px; text-align: right; color: var(--invert); }
.is-good i { background: var(--good); }
.is-warn i { background: var(--warn); }
.is-bad  i { background: var(--bad); }

.posture-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--ink-3);
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--invert-soft);
}
.posture-foot b { color: var(--bad); font-weight: 600; }
.dot-bad { width: 8px; height: 8px; border-radius: 50%; background: var(--bad); flex: none; }

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                 */
/* -------------------------------------------------------------------------- */
.trust {
  border-top: 1px solid var(--ink-3); border-bottom: 1px solid var(--ink-3);
  background: var(--ink);
}
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--invert-soft); font-size: 14px; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* -------------------------------------------------------------------------- */
/* Service tiers (columns w/ hairline separation)                              */
/* -------------------------------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); }
.tier { padding: 34px 30px; border-right: 1px solid var(--line); position: relative; }
.tier:last-child { border-right: 0; }
.tier-step { font-family: var(--font-mono); font-size: 13px; color: var(--gold-deep); }
.tier h3 { margin: 14px 0 10px; }
.tier p { font-size: 15px; }
.tier-meta {
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.tier-meta .k { font-size: 13px; color: var(--text-mute); }
.tier-meta .v { font-family: var(--font-mono); font-weight: 500; color: var(--text); font-size: 15px; }
@media (max-width: 820px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--line); }
  .tier:last-child { border-bottom: 0; }
}

/* -------------------------------------------------------------------------- */
/* Capability matrix                                                           */
/* -------------------------------------------------------------------------- */
.matrix-wrap { overflow-x: auto; border: 1px solid var(--ink-3); border-radius: var(--radius-lg); }
table.matrix { width: 100%; border-collapse: collapse; min-width: 620px; }
table.matrix th, table.matrix td { padding: 16px 18px; text-align: center; font-size: 14.5px; border-bottom: 1px solid var(--ink-3); }
table.matrix thead th { font-family: var(--font-body); font-weight: 600; color: var(--invert); text-align: center; }
table.matrix tbody th { text-align: left; font-weight: 500; color: var(--invert-soft); font-family: var(--font-body); font-size: 14.5px; white-space: nowrap; }
table.matrix tbody tr:last-child td, table.matrix tbody tr:last-child th { border-bottom: 0; }
table.matrix .row-us { background: rgba(233,162,60,.07); }
table.matrix .row-us th { color: var(--gold); font-weight: 600; }
.mk { color: var(--good); font-weight: 600; }
.mk-no { color: var(--text-mute); }
.mk-part { color: var(--warn); }
.matrix-col-us { position: relative; }

/* -------------------------------------------------------------------------- */
/* Cards / grids                                                               */
/* -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: 14.5px; }
.card-ico {
  width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold); margin-bottom: 18px;
}
.card-ico svg { width: 21px; height: 21px; }

/* Industry chips */
.industries { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); background: var(--paper-2); border-radius: 100px;
  padding: 9px 17px; font-size: 14.5px; color: var(--text); display: inline-flex; align-items: center; gap: 9px;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.section--dark .chip { background: var(--ink-2); border-color: var(--ink-3); color: var(--invert); }

/* Check lists */
.checks { list-style: none; padding: 0; display: grid; gap: 13px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15.5px; color: var(--text-soft); }
.checks li svg { width: 20px; height: 20px; color: var(--good); margin-top: 2px; }
.section--dark .checks li { color: var(--invert-soft); }

/* Spec list (left-border technical list) */
.spec { list-style: none; padding: 0; display: grid; gap: 0; }
.spec li { padding: 16px 0 16px 20px; border-left: 2px solid var(--gold); border-bottom: 1px solid var(--line); }
.spec li:last-child { border-bottom: 0; }
.spec li b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text); margin-bottom: 3px; }
.spec li span { font-size: 14.5px; color: var(--text-soft); }
.section--dark .spec li { border-bottom-color: var(--ink-3); }
.section--dark .spec li b { color: var(--invert); }
.section--dark .spec li span { color: var(--invert-soft); }

/* -------------------------------------------------------------------------- */
/* Pricing                                                                      */
/* -------------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); position: relative; }
.plan--featured .plan-badge {
  position: absolute; top: -12px; left: 28px; background: var(--gold); color: #241a06;
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.plan-price { margin: 16px 0 4px; font-family: var(--font-mono); font-weight: 500; }
.plan-price b { font-size: 2.4rem; color: var(--text); letter-spacing: -0.02em; }
.plan-price span { font-size: 15px; color: var(--text-mute); }
.plan-note { font-size: 14px; color: var(--text-soft); min-height: 20px; }
.plan-list { list-style: none; padding: 22px 0 0; margin: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; flex: 1; }
.plan-list li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; font-size: 14.5px; color: var(--text-soft); }
.plan-list li svg { width: 18px; height: 18px; color: var(--good); margin-top: 3px; }
.plan .btn { margin-top: 24px; }

.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.price-table thead th { background: var(--ink); color: var(--invert); font-weight: 600; font-family: var(--font-body); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-family: var(--font-mono); font-weight: 500; white-space: nowrap; text-align: right; color: var(--text); }
.price-table thead th:last-child { text-align: right; }

.callout {
  border: 1px solid var(--gold); background: var(--gold-soft); border-radius: var(--radius-lg);
  padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.callout svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.callout p { color: #5a4413; font-size: 15px; }
.callout b { color: #3f2f0a; }

/* -------------------------------------------------------------------------- */
/* Steps (real sequence — numbered)                                            */
/* -------------------------------------------------------------------------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 22px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step-n {
  counter-increment: step; font-family: var(--font-mono); font-size: 15px; font-weight: 500;
  color: var(--gold-deep); border: 1px solid var(--line); border-radius: 8px;
  width: 44px; height: 44px; display: grid; place-items: center;
}
.step-n::before { content: counter(step, decimal-leading-zero); }
.step h4 { margin-bottom: 6px; }
.step p { font-size: 15px; }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                          */
/* -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; max-width: 880px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 22px; color: var(--gold-deep);
  font-weight: 400; line-height: 1; transition: transform .2s var(--ease); flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { font-size: 15.5px; }

/* Standards / compliance grid */
.standard { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.standard:last-child { border-bottom: 0; }
.standard-ico { width: 40px; height: 40px; border-radius: 9px; background: var(--ink); color: var(--gold); display: grid; place-items: center; flex: none; }
.standard-ico svg { width: 20px; height: 20px; }
.standard h4 { margin-bottom: 4px; }
.standard p { font-size: 14.5px; }
.standards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
@media (max-width: 760px) { .standards-2 { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
/* CTA band                                                                     */
/* -------------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--invert); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 78% 20%, rgba(233,162,60,.14), transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { margin-top: 14px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
@media (max-width: 820px) {
  .cta-band .wrap { grid-template-columns: 1fr; gap: 26px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* -------------------------------------------------------------------------- */
/* Page hero (interior pages)                                                   */
/* -------------------------------------------------------------------------- */
.page-hero { background: var(--ink); color: var(--invert); padding-block: 64px 72px; border-bottom: 1px solid var(--ink-3); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 20px; color: var(--invert-soft); }
.crumb { font-family: var(--font-mono); font-size: 12.5px; color: var(--invert-soft); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.crumb a { color: var(--gold); }

/* -------------------------------------------------------------------------- */
/* Contact                                                                      */
/* -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 15px; background: var(--paper-2); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(233,162,60,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.info-block { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); padding: 28px; }
.info-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item svg { width: 20px; height: 20px; color: var(--gold-deep); margin-top: 3px; }
.info-item .k { font-size: 13px; color: var(--text-mute); }
.info-item .v { font-size: 15.5px; color: var(--text); font-weight: 500; }
.info-item .v a:hover { color: var(--gold-deep); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                       */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--invert-soft); padding-block: 60px 30px; border-top: 1px solid var(--ink-3); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about p { font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-body); font-size: 13px; color: var(--invert); font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--invert-soft); transition: color .15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--ink-3);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-mute);
}
.footer-legal { max-width: 70ch; line-height: 1.5; }

/* -------------------------------------------------------------------------- */
/* Utilities                                                                    */
/* -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.center { text-align: center; }
.stack-lead { display: grid; gap: 8px; }

/* Reveal on load (respect reduced motion) */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .ring-fill { stroke-dashoffset: var(--ring-target, 129) !important; }
  .meter-bar i { width: var(--m, 0) !important; }
}

/* ==========================================================================
   v2 additions — logo, services dropdown, footer, case studies, studio
   ========================================================================== */

/* Brand logo (new mark) */
.brand-logo { height: 30px; width: auto; display: block; flex: none; }

/* Services dropdown */
.nav .has-dropdown { position: relative; }
.nav .drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav .drop-toggle .caret { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav .has-dropdown:hover .drop-toggle .caret,
.nav .has-dropdown:focus-within .drop-toggle .caret { transform: rotate(180deg); }
.has-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 12px; min-width: 268px;
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 12px;
  padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  box-shadow: 0 26px 50px -24px rgba(0,0,0,.75); z-index: 60;
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 7px; color: var(--invert-soft); font-size: 14.5px; }
.dropdown a:hover { background: rgba(255,255,255,.05); color: var(--invert); }
.dropdown .dd-primary a { color: var(--invert); }
.dropdown .dd-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); padding: 8px 14px 4px; letter-spacing: .04em; }
.dropdown .dd-div { height: 1px; background: var(--ink-3); margin: 6px 8px; }

@media (max-width: 900px) {
  .has-dropdown::before { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: 2px 0 6px 10px;
    margin-top: 0; min-width: 0;
  }
  .nav .drop-toggle .caret { display: none; }
  .dropdown a { padding: 12px; font-size: 15px; border-bottom: 1px solid var(--ink-3); }
  .dropdown .dd-label { padding: 10px 12px 4px; }
}

/* Footer additions */
.footer-cta-wrap { margin-top: 20px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--ink-3); display: grid; place-items: center; color: var(--invert-soft); transition: color .15s, border-color .15s; }
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.socials svg { width: 18px; height: 18px; }
.pay-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 14px; color: var(--invert-soft); }
.pay-link:hover { color: var(--gold); }
.pay-link svg { width: 18px; height: 18px; }

/* Studio services (secondary) */
.studio-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--gold-deep); margin-bottom: 8px; }

/* Case study + blog cards */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cs-grid { grid-template-columns: 1fr; } }
.cs-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper-2); display: flex; flex-direction: column; }
.cs-thumb { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--ink), var(--ink-2)); display: grid; place-items: center; position: relative; }
.cs-thumb .cs-mark { width: 46px; height: 46px; opacity: .9; }
.cs-body { padding: 20px 22px; }
.cs-cat { font-family: var(--font-mono); font-size: 11px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .05em; }
.cs-card h3 { font-size: 1.06rem; margin: 8px 0 6px; }
.cs-card p { font-size: 14px; }
.badge-soon { display: inline-block; margin-top: 12px; font-size: 11px; font-family: var(--font-mono); color: var(--text-mute); border: 1px solid var(--line); border-radius: 100px; padding: 4px 11px; }

/* Placeholder note block */
.soon-block { border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 30px; background: var(--paper-2); }

/* Fix: header CTA button was inheriting nav link colour (faded).
   Force button text colours so it matches the solid gold buttons. */
.nav a.btn--gold { color: #241a06; }
.nav a.btn--gold:hover { color: #fff; }
.nav a.btn--ghost { color: var(--invert); }
