/* =========================================================
   BRIKELL BIZ SOLUTIONS LLC
   Institutional commodities / asset-management theme
   ========================================================= */

:root {
  --navy:        #0a1f3c;
  --navy-deep:   #06142a;
  --navy-mid:    #16335f;
  --gold:        #b8945f;
  --gold-light:  #d9bd8c;
  --gold-soft:   #ecdfc6;
  --gold-deep:   #9c7842;
  --ink:         #18222f;
  --slate:       #57636f;
  --slate-light: #7d8893;
  --line:        #e5e7ec;
  --line-soft:   #eef0f3;
  --paper:       #ffffff;
  --paper-alt:   #f6f5f1;
  --paper-warm:  #faf8f3;
  --maxw:        1220px;
  --ease:        cubic-bezier(.2,.7,.2,1);
  --shadow-card: 0 24px 60px -34px rgba(10,31,60,.4);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 100px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 36px; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--navy);
}
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-soft); color: var(--navy-deep); }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--navy-deep); color: #b6c2d2; font-size: 12px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.utility-tag { letter-spacing: 2px; text-transform: uppercase; font-weight: 500; font-size: 11px; color: #9fb0c4; }
.utility-links { display: flex; align-items: center; gap: 18px; }
.utility-links a { color: #cdd7e3; letter-spacing: .4px; transition: color .2s var(--ease); }
.utility-links a:hover { color: var(--gold-light); }
.utility-divider { width: 1px; height: 12px; background: rgba(255,255,255,.18); }
.utility-conf { color: var(--gold-light); letter-spacing: 1.4px; text-transform: uppercase; font-size: 10.5px; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.brand { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.brand-mark { display: inline-flex; color: var(--gold); transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-4deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; letter-spacing: 4px; color: var(--navy); }
.brand-sub  { font-size: 9.5px; letter-spacing: 3.6px; color: var(--slate); font-weight: 600; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .5px; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .2s var(--ease);
}
.main-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .28s var(--ease);
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold-deep) !important;
  padding: 9px 22px !important; border-radius: 1px; transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .25s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 560px at 82% -12%, rgba(184,148,95,.22), transparent 62%),
    linear-gradient(158deg, var(--navy-deep) 0%, var(--navy) 52%, var(--navy-mid) 110%);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(125% 105% at 50% 0%, #000 38%, transparent 86%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; right: -120px; top: 40px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(217,189,140,.18), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero-monogram {
  position: absolute; right: -4%; bottom: -22%;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: clamp(420px, 52vw, 760px); line-height: .8;
  color: rgba(255,255,255,.035); pointer-events: none; user-select: none;
}
.hero-content { position: relative; padding: 128px 36px 138px; max-width: 900px; }
.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 12px; letter-spacing: 3.4px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 30px;
}
.eyebrow-rule { display: inline-block; width: 38px; height: 1px; background: var(--gold); margin-right: 16px; }
.hero h1 {
  color: #fff; font-size: clamp(42px, 6.2vw, 76px); font-weight: 600; line-height: 1.02;
  letter-spacing: -.5px;
}
.hero-lede { margin-top: 30px; font-size: 18.5px; line-height: 1.78; color: #cfd8e5; max-width: 62ch; font-weight: 300; }
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .6px;
  padding: 16px 32px; border-radius: 1px; transition: all .25s var(--ease); cursor: pointer;
}
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%);
  color: var(--navy-deep); border: 1px solid var(--gold);
  box-shadow: 0 14px 30px -16px rgba(184,148,95,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -16px rgba(184,148,95,.8); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ticker */
.hero-ticker { position: relative; border-top: 1px solid rgba(255,255,255,.1); overflow: hidden; background: rgba(0,0,0,.22); }
.hero-ticker::before, .hero-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.hero-ticker::before { left: 0; background: linear-gradient(90deg, rgba(6,20,42,.9), transparent); }
.hero-ticker::after { right: 0; background: linear-gradient(270deg, rgba(6,20,42,.9), transparent); }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 46s linear infinite; }
.ticker-track span {
  font-size: 11px; letter-spacing: 3px; font-weight: 600; color: rgba(217,189,140,.85);
  padding: 17px 32px; position: relative;
}
.ticker-track span::after { content: '◆'; position: absolute; right: -5px; font-size: 6px; top: 50%; transform: translateY(-50%); color: rgba(184,148,95,.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--navy-deep); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 46px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); position: relative; }
.stat::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: width .5s var(--ease); }
.stat.in::before { width: 46px; }
.stat:last-child { border-right: 0; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 700; color: var(--gold-light); line-height: 1; letter-spacing: .5px; }
.stat-num small { font-size: 28px; vertical-align: top; margin-left: 2px; }
.stat-num-sm { font-size: 30px; letter-spacing: 1px; }
.stat-label { display: block; margin-top: 14px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: #9caabb; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; overflow: hidden; }
.section-dark .hero-grid { mask-image: radial-gradient(120% 120% at 50% 50%, #000 30%, transparent 80%); }
.section-dark .container { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 20px;
}
.section-eyebrow .num { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); letter-spacing: 0; }
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.light .num { color: var(--gold-light); }
.center-eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 50px); }
.section-head.center { text-align: center; max-width: 780px; margin: 0 auto 70px; }
.section-intro { margin-top: 22px; font-size: 17px; color: var(--slate); line-height: 1.78; font-weight: 300; }
.section-intro.light { color: #c4cedc; }

.about-rule { width: 56px; height: 2px; background: var(--gold); margin: 24px 0 28px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.about-head h2 { font-size: clamp(32px, 3.8vw, 46px); margin-top: 14px; }
.about-body p { color: var(--slate); font-size: 16.5px; margin-bottom: 22px; line-height: 1.82; }
.about-body .lede-para { font-size: 21px; line-height: 1.6; color: var(--ink); font-weight: 400; font-family: 'Cormorant Garamond', serif; letter-spacing: .2px; }
.about-pillars { list-style: none; margin-top: 36px; border-top: 1px solid var(--line); }
.about-pillars li { padding: 22px 0 22px 30px; border-bottom: 1px solid var(--line); position: relative; color: var(--slate); font-size: 15.5px; transition: padding-left .3s var(--ease); }
.about-pillars li:hover { padding-left: 38px; }
.about-pillars li::before { content: ''; position: absolute; left: 0; top: 28px; width: 10px; height: 10px; border: 1.5px solid var(--gold); transform: rotate(45deg); transition: background .3s var(--ease); }
.about-pillars li:hover::before { background: var(--gold); }
.about-pillars strong { color: var(--navy); font-weight: 600; }

/* ---------- Divisions ---------- */
.divisions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.division {
  background: var(--paper); border: 1px solid var(--line); padding: 40px 34px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.division::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.division:hover { transform: translateY(-7px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); }
.division:hover::before { transform: scaleX(1); }
.division-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; margin-bottom: 22px; color: var(--gold-deep);
  border: 1px solid var(--gold-soft); border-radius: 2px; background: var(--paper-warm);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.division-icon svg { width: 30px; height: 30px; }
.division:hover .division-icon { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.division h3 { font-size: 26px; margin-bottom: 10px; }
.division p { color: var(--slate); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.division ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.division li { font-size: 10.5px; letter-spacing: .9px; text-transform: uppercase; color: var(--gold-deep); background: var(--paper-warm); border: 1px solid var(--gold-soft); padding: 6px 12px; font-weight: 600; }
.division-wide { grid-column: span 3; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; }
.division-wide .division-icon { margin: 0; width: 72px; height: 72px; }
.division-wide .division-icon svg { width: 38px; height: 38px; }
.division-wide-body h3 { margin-bottom: 8px; }
.division-wide-body p { margin-bottom: 0; max-width: 64ch; }
.division-wide ul { flex-direction: column; gap: 8px; }

/* ---------- Compliance ---------- */
.compliance-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.compliance-intro h2 { font-size: clamp(32px, 3.8vw, 46px); margin: 14px 0 0; }
.compliance-intro p { color: var(--slate); font-size: 16px; line-height: 1.82; margin-bottom: 20px; }
.compliance-note { border-left: 3px solid var(--gold); color: var(--ink) !important; background: var(--paper-warm); padding: 20px 24px; font-size: 15px !important; line-height: 1.75 !important; }
.compliance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comp-card { background: var(--paper); border: 1px solid var(--line); padding: 32px 30px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.comp-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.comp-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.comp-card h4 { font-size: 20px; margin: 12px 0 10px; }
.comp-card p { color: var(--slate); font-size: 14.5px; line-height: 1.66; }

/* ---------- Approach ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.approach-grid .comp-card h4 { font-size: 21px; }

/* ---------- Corporate / Registry ---------- */
.registry { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.registry-block { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.12); padding: 40px 38px; backdrop-filter: blur(4px); }
.registry-block h3 { color: var(--gold-light); font-size: 23px; margin-bottom: 20px; letter-spacing: .4px; }
.registry-block h3.mt { margin-top: 36px; }
.registry-block dl { display: grid; }
.registry-block dl > div { display: grid; grid-template-columns: 38% 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.registry-block dl > div:last-child { border-bottom: 0; }
.registry-block dt { font-size: 11.5px; letter-spacing: .8px; text-transform: uppercase; color: #92a2b8; font-weight: 600; }
.registry-block dd { font-size: 14.5px; color: #eef2f7; font-weight: 400; }

.registry-verify { background: linear-gradient(135deg, rgba(184,148,95,.1), rgba(184,148,95,.04)); border: 1px solid rgba(184,148,95,.3); padding: 40px 38px; }
.registry-verify h3 { color: var(--gold-light); font-size: 23px; margin-bottom: 24px; }
.verify-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.verify-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #dce3ec; }
.verify-list .check {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%; background: rgba(111,207,151,.16);
  color: #7fd9a3; font-size: 10px; font-weight: 700; margin-top: 2px;
}
.verify-foot { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: #8b9aae; letter-spacing: .3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-head h2 { font-size: clamp(32px, 3.8vw, 46px); margin-top: 14px; }
.contact-head > p { color: var(--slate); font-size: 16px; line-height: 1.82; }
.contact-details { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-detail { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.contact-value { font-size: 17px; color: var(--navy); font-weight: 500; line-height: 1.45; word-break: break-word; }
a.contact-value { transition: color .2s var(--ease); }
a.contact-value:hover { color: var(--gold-deep); }

/* form */
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); padding: 44px 44px 48px; box-shadow: var(--shadow-card); position: relative; }
.contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }
.form-intro { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field label { font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: 9px; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line); background: var(--paper-warm); padding: 13px 15px; border-radius: 1px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(184,148,95,.14);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
  border-right: 1.5px solid var(--slate); border-bottom: 1.5px solid var(--slate);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field-error { font-size: 12px; color: #c0392b; margin-top: 7px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; background: #fdf3f2; }
.field.invalid .field-error { display: block; }

.consent { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 26px; font-size: 13px; color: var(--slate); line-height: 1.55; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold-deep); flex-shrink: 0; cursor: pointer; }
.consent.invalid { color: #c0392b; }

.form-submit { width: 100%; justify-content: center; border: none; }
.form-success { margin-top: 22px; padding: 16px 20px; background: rgba(111,160,109,.1); border: 1px solid rgba(111,160,109,.4); border-radius: 1px; font-size: 14px; color: #3f6b3d; line-height: 1.6; }
.form-success strong { color: #2f5a2d; }

/* ---------- Legal & Policies ---------- */
.section-legal { background: var(--paper); }
.section-legal .section-head { max-width: 760px; margin-bottom: 50px; }
.policies-wrap { border-top: 1px solid var(--line); }
.policy { border-bottom: 1px solid var(--line); }
.policy summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 4px; font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; color: var(--navy);
  transition: color .2s var(--ease);
}
.policy summary::-webkit-details-marker { display: none; }
.policy summary:hover { color: var(--gold-deep); }
.p-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.p-icon::before, .p-icon::after { content: ''; position: absolute; background: var(--gold-deep); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.p-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.p-icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.policy[open] .p-icon::after { transform: rotate(90deg); opacity: 0; }
.policy[open] summary { color: var(--gold-deep); }
.policy-body { padding: 2px 4px 32px; max-width: 88ch; }
.policy-body p { color: var(--slate); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.policy-body p:last-child { margin-bottom: 0; }
.policy-body a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); transition: border-color .2s var(--ease); }
.policy-body a:hover { border-color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c7d0dd; }
.footer-inner { display: grid; grid-template-columns: 1fr 2.6fr; gap: 56px; padding: 76px 36px 54px; }
.footer-mark { color: var(--gold-light); display: block; margin-bottom: 16px; }
.footer-brand .brand-name { color: #fff; font-size: 28px; }
.footer-brand .brand-sub { color: var(--gold-light); display: block; margin-top: 5px; }
.footer-brand p { margin-top: 18px; font-size: 13px; color: #8b9aae; letter-spacing: .5px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.footer-cols h5 { color: var(--gold-light); font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-cols a { display: block; font-size: 14px; color: #aeb9c8; padding: 5px 0; transition: color .2s var(--ease); }
.footer-cols a:hover { color: var(--gold-light); }
.footer-cols p { font-size: 13px; color: #8b9aae; line-height: 1.8; }
.footer-cols p a { display: inline; padding: 0; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 24px 36px; font-size: 12px; color: #74839a; letter-spacing: .3px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .about-grid, .compliance-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .registry { grid-template-columns: 1fr; }
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .division-wide { grid-column: span 2; grid-template-columns: auto 1fr; }
  .division-wide ul { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 760px) {
  .container { padding: 0 22px; }
  .utility-tag { display: none; }
  .utility-inner { justify-content: center; }
  .main-nav {
    position: fixed; inset: 124px 0 auto 0; background: #fff; flex-direction: column; gap: 0;
    padding: 12px 22px 22px; border-bottom: 1px solid var(--line); transform: translateY(-160%);
    transition: transform .32s var(--ease); box-shadow: 0 24px 40px -30px rgba(0,0,0,.4); align-items: stretch;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-cta { border: none !important; padding: 16px 0 !important; text-align: left; }
  .nav-cta:hover { background: none; color: var(--gold-deep) !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 76px 0; }
  .hero-content { padding: 84px 22px 92px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .divisions-grid { grid-template-columns: 1fr; }
  .division-wide { grid-column: span 1; grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .compliance-cards, .contact-cards, .verify-list, .approach-grid { grid-template-columns: 1fr; }
  .policy summary { font-size: 21px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 32px 26px 36px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; gap: 8px; }
  .registry-block dl > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
