*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #fafaf9;
  color: #18181b;
  font-family: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #ea580c;
  text-decoration: none;
}

a:hover {
  color: #c2410c;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: #ffedd5;
  color: #18181b;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 8px;
  border: 3px solid #fafaf9;
}

.page {
  max-width: 100%;
  overflow-x: hidden;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid #eae7e3;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #18181b;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea580c;
  display: inline-block;
  transform: translateY(-2px);
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8a29e;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #78716c;
  background: transparent;
  transition: color 0.16s ease, background 0.16s ease;
}

.nav-link:hover {
  color: #18181b;
}

.nav-link.is-active {
  color: #18181b;
  background: #f0eeec;
}

.nav-cta {
  margin-left: 14px;
  padding: 11px 20px;
  background: #18181b;
  color: #fafaf9;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-cta:hover {
  background: #ea580c;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #18181b;
  border-radius: 2px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 249, 0.98);
    border-bottom: 1px solid #eae7e3;
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

/* ——— Shared ——— */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ea580c;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
}

.muted {
  font-size: 15.5px;
  line-height: 1.55;
  color: #57534e;
  margin: 0;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  background: #fff4ed;
  border: 1px solid #fed7aa;
  border-radius: 100px;
}

.pill-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea580c;
}

.pill-tag-text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9a3412;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  padding: 15px 28px;
  background: #ea580c;
  color: #fff;
  font-size: 16px;
}

.btn-primary:hover {
  background: #c2410c;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 15px 28px;
  background: transparent;
  color: #18181b;
  border: 1px solid #d6d3d1;
  font-size: 16px;
}

.btn-secondary:hover {
  border-color: #18181b;
  color: #18181b;
}

.btn-dark {
  padding: 14px 26px;
  background: #18181b;
  color: #fafaf9;
  font-size: 15px;
}

.btn-dark:hover {
  background: #ea580c;
  color: #fff;
}

.rise {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.rise.is-in {
  opacity: 1;
  transform: translateY(0);
}

.rise-1 {
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0ms,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0ms;
}

.rise-2 {
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 90ms,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 90ms;
}

.rise-3 {
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 190ms,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 190ms;
}

.rise-4 {
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 290ms,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 290ms;
}

@media (prefers-reduced-motion: reduce) {
  .rise,
  .rise.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Home hero ——— */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px 40px;
}

.hero .pill-tag {
  margin-bottom: 32px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 16ch;
}

.hero h1 .accent {
  color: #ea580c;
}

.hero-lead {
  margin: 36px 0 0;
  max-width: 64ch;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: #44403c;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

/* ——— Mandate ——— */
.mandate {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.mandate .section-head {
  margin-bottom: 28px;
}

.mandate .section-title {
  max-width: 22ch;
}

.mandate-note {
  max-width: 34ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: #57534e;
  margin: 0;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.mandate-tile {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 210px;
  background: #fffefa;
  border: 1px solid #fde3cb;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  width: 100%;
}

.mandate-tile:hover {
  border-color: #fb923c;
}

.mandate-tile.is-open {
  background: #fff4ed;
  border-color: #fdba74;
}

.mandate-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mandate-n {
  font-size: 13px;
  font-weight: 600;
  color: #ea580c;
  letter-spacing: 0.04em;
}

.mandate-sign {
  font-size: 26px;
  line-height: 1;
  color: #ea580c;
  font-weight: 400;
  width: 24px;
  text-align: center;
}

.mandate-label {
  display: block;
  margin-top: auto;
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  padding-top: 44px;
}

.mandate-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}

.mandate-tile.is-open .mandate-panel {
  max-height: 220px;
  opacity: 1;
}

.mandate-panel p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #7c2d12;
}

/* ——— Capabilities ——— */
.capabilities {
  background: #f5f4f2;
  border-top: 1px solid #eae7e3;
  border-bottom: 1px solid #eae7e3;
}

.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.capabilities .section-title {
  margin: 12px 0 44px;
  max-width: 20ch;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 1px;
  background: #e7e5e4;
  border: 1px solid #e7e5e4;
}

.cap-card {
  background: #fafaf9;
  padding: 28px 24px 32px;
  border-top: 3px solid #ea580c;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -18px rgba(24, 24, 27, 0.35);
  background: #ffffff;
}

.cap-n {
  font-size: 12px;
  font-weight: 600;
  color: #a8a29e;
  letter-spacing: 0.04em;
}

.cap-card h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cap-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #57534e;
}

/* ——— Discipline ——— */
.discipline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.discipline-card {
  background: #18181b;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

.discipline-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, rgba(234, 88, 12, 0.22), transparent 55%);
  pointer-events: none;
}

.discipline .eyebrow {
  position: relative;
  color: #fb923c;
}

.discipline-quote {
  position: relative;
  margin: 22px 0 0;
  color: #fafaf9;
  font-size: clamp(34px, 5.6vw, 74px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 15ch;
}

.discipline-copy {
  position: relative;
  margin: 28px 0 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.6;
  color: #a8a29e;
}

/* ——— Compliance Gate ——— */
.gate {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.gate .section-head {
  margin-bottom: 40px;
}

.gate .section-title {
  max-width: 24ch;
}

.gate-badge {
  font-size: 13px;
  font-weight: 600;
  color: #9a3412;
  background: #fff4ed;
  border: 1px solid #fed7aa;
  border-radius: 100px;
  padding: 8px 16px;
  white-space: nowrap;
}

.gate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gate-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 18px;
  padding: 26px 24px;
}

.gate-num {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff4ed;
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ea580c;
  font-size: 16px;
}

.gate-card h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gate-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #57534e;
}

/* ——— Markets ——— */
.markets {
  background: #f5f4f2;
  border-top: 1px solid #eae7e3;
}

.markets-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.markets .section-title {
  margin: 12px 0 10px;
  max-width: 26ch;
}

.markets-lead {
  margin: 0 0 40px;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: #57534e;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: #e7e5e4;
  border: 1px solid #e7e5e4;
  border-radius: 2px;
}

.market-card {
  background: #fafaf9;
  padding: 24px;
}

.market-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.market-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #57534e;
}

.market-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9a3412;
  background: #fff4ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  padding: 5px 10px;
}

/* ——— Services page ——— */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px 40px;
}

.page-hero.narrow {
  max-width: 900px;
}

.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.page-hero.narrow h1 {
  font-size: clamp(40px, 6vw, 80px);
  max-width: none;
}

.services-hero h1 {
  max-width: 18ch;
}

.page-hero-lead {
  margin: 32px 0 0;
  max-width: 62ch;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: #44403c;
}

.faq-hero .page-hero-lead {
  margin-top: 30px;
  max-width: 60ch;
}

.services-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 16px;
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 20px;
  padding: 34px 32px 36px;
  border-top: 4px solid #ea580c;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 24px 60px -30px rgba(24, 24, 27, 0.4);
  transform: translateY(-3px);
}

.service-card-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.service-n {
  font-size: 14px;
  font-weight: 700;
  color: #ea580c;
}

.service-card h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.service-blurb {
  margin: 16px 0 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #44403c;
}

.service-deliverables {
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.deliverables-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
}

.service-deliverables ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-deliverables li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.4;
  color: #292524;
}

.service-deliverables li .dash {
  color: #ea580c;
  font-weight: 700;
  flex: none;
  line-height: 1.4;
}

.services-note {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.services-note-card {
  background: #fff4ed;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
}

.services-note-card h2 {
  margin: 14px 0 18px;
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 700;
  max-width: 26ch;
  color: #7c2d12;
}

.services-note-card p {
  margin: 0 0 28px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.6;
  color: #9a3412;
}

/* ——— FAQ ——— */
.faq-list-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.faq-list {
  border-top: 1px solid #e7e5e4;
}

.faq-item {
  border-bottom: 1px solid #e7e5e4;
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  transition: color 0.16s ease;
}

.faq-q:hover {
  color: #ea580c;
}

.faq-q-text {
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.faq-sign {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #d6d3d1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ea580c;
  font-weight: 400;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.26s ease;
}

.faq-item.is-open .faq-a {
  max-height: 360px;
  opacity: 1;
}

.faq-a p {
  margin: 0;
  padding: 0 60px 30px 4px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #44403c;
}

/* ——— Contact + footer ——— */
.contact {
  background: #18181b;
  color: #fafaf9;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: end;
}

.contact .eyebrow {
  color: #fb923c;
}

.contact h2 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 16ch;
}

.contact-lead {
  margin: 24px 0 0;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: #a8a29e;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: #ea580c;
  color: #fff;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.18s ease, color 0.18s ease;
}

.contact-mail:hover {
  background: #c2410c;
  color: #fff;
}

.contact-mail .arrow {
  font-size: 22px;
}

.contact-office {
  padding: 22px 26px;
  border: 1px solid #3f3f46;
  border-radius: 16px;
}

.contact-office-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a29e;
}

.contact-office p {
  margin: 8px 0 0;
  font-size: 16px;
  color: #e7e5e4;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid #3f3f46;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea580c;
  transform: translateY(-2px);
}

.footer-legal {
  margin: 0;
  grid-column: span 2;
  font-size: 13px;
  line-height: 1.65;
  color: #a8a29e;
  max-width: 80ch;
}

@media (max-width: 700px) {
  .footer-legal {
    grid-column: span 1;
  }
}


.page-hero-lead.policycontent {
    margin: 32px 0 0;
     max-width: 100%; 
    font-size: 16px;
    line-height: 1.55;
    color: #44403c;
}