:root {
  --ink: #0E2439;
  --ink-900: #14304d;
  --ink-700: #253a55;
  --body: #3a4a63;
  --mute: #6b7a94;
  --hair: rgba(14, 36, 57, 0.12);
  --hair-strong: rgba(14, 36, 57, 0.22);
  --accent: #b08a3e;
  --accent-soft: #d7b775;
  --bg: #ffffff;
  --bg-alt: #f4f1ea;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* ----- Container ----- */

.container {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
}

/* ----- Header ----- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--ink);
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: var(--hair-strong);
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.nav-toggle {
  display: none;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--hair-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.site-nav a {
  position: relative;
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
}

/* ----- Hero (home) ----- */

.hero {
  padding: 7rem 0 5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding-left: 2.8rem;
  position: relative;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-lede {
  max-width: 42rem;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-700);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ----- Page hero (interior pages) ----- */

.page-hero {
  padding: 5rem 0 4.5rem;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.page-hero-lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 38rem;
  margin: 0;
}

.side-panel {
  border-top: 1px solid var(--accent);
  padding-top: 1.4rem;
  margin-top: 3.4rem;
}

.side-panel-title {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.side-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-panel li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hair);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.side-panel li:last-child {
  border-bottom: 0;
}

.side-panel p {
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* ----- Buttons ----- */

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  background: var(--ink-900);
  border-color: var(--ink-900);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: #fff;
}

.button-secondary-light {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.button-secondary-light:hover,
.button-secondary-light:focus-visible {
  background: #fff;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link::after {
  content: "\2192";
  font-weight: 400;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

/* ----- Metric strip ----- */

.metric-strip {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-strip > div {
  padding: 2.4rem 1.8rem;
  border-right: 1px solid var(--hair);
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.metric-value {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ----- Section scaffolding ----- */

.section {
  padding: 6.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--accent-soft);
}

.section-dark .eyebrow::before {
  background: var(--accent-soft);
}

.section-alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 1.2rem;
}

.section-heading p {
  color: var(--body);
  font-size: 1.05rem;
}

.section-actions {
  margin-top: 3rem;
}

/* ----- Value pillars (3-col numbered) ----- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hair);
}

.pillar {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid var(--hair);
}

.pillar:last-child {
  border-right: 0;
}

.pillar:not(:first-child) {
  padding-left: 2rem;
}

.pillar-mark {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.pillar h3 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.pillar p {
  color: var(--body);
  margin: 0;
}

/* ----- Industry list ----- */

.industry-list {
  border-top: 1px solid var(--hair);
}

.industry-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}

.industry-row-num {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.industry-row h3 {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.industry-row p {
  color: var(--body);
  margin: 0;
}

.industry-list.industry-list-detail .industry-row {
  grid-template-columns: 60px minmax(0, 1.2fr) minmax(0, 3fr);
  padding: 2.4rem 0;
  align-items: start;
}

.industry-list.industry-list-detail .industry-row h3 {
  font-size: 1.45rem;
  line-height: 1.25;
}

.industry-list.industry-list-detail .industry-row p {
  line-height: 1.7;
}

/* ----- Profile grid (2-col hairline split) ----- */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hair);
}

.profile {
  padding: 3.2rem 2.5rem 3.2rem 0;
  border-right: 1px solid var(--hair);
}

.profile:last-child {
  border-right: 0;
  padding-left: 2.5rem;
  padding-right: 0;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.profile h3 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  max-width: 22ch;
}

.profile p {
  color: var(--body);
  margin: 0;
}

/* ----- Content split (text + sidebar) ----- */

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
  border-top: 1px solid var(--hair);
  padding-top: 3.5rem;
}

.content-body h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin-bottom: 1.5rem;
  max-width: 26ch;
}

.content-body p {
  color: var(--body);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  max-width: 44rem;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.content-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.5rem;
  border-top: 1px solid var(--hair);
  padding-top: 3.5rem;
}

.content-pair .content-body h2 {
  max-width: 22ch;
}

/* ----- 4-up numbered grid (offers / collateral / principles / inquiries) ----- */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hair);
}

.grid-4 > article {
  padding: 2.8rem 1.6rem 2.8rem 0;
  border-right: 1px solid var(--hair);
}

.grid-4 > article:last-child {
  border-right: 0;
}

.grid-4 > article:not(:first-child) {
  padding-left: 1.6rem;
}

.grid-4 > article h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.grid-4 > article p {
  font-size: 0.96rem;
  color: var(--body);
  margin: 0;
  line-height: 1.6;
}

.grid-4 .card-label {
  margin-bottom: 1.3rem;
}

/* ----- Contact ----- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 4rem;
  border-top: 1px solid var(--hair);
  padding-top: 3.5rem;
  align-items: start;
}

.contact-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.contact-body p {
  color: var(--body);
  font-size: 1.02rem;
  max-width: 34rem;
  margin: 0;
}

.mailto-block {
  display: block;
  margin-top: 2rem;
  padding: 2.2rem 2.2rem 2rem;
  background: var(--ink);
  color: #fff;
  transition: background 180ms ease;
}

.mailto-block:hover,
.mailto-block:focus-visible {
  background: var(--ink-900);
}

.mailto-block .mailto-label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mailto-block .mailto-address {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  word-break: break-word;
  line-height: 1.35;
}

.mailto-block .mailto-hint {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.55;
}

.info-stack {
  border-top: 1px solid var(--accent);
  padding-top: 1.5rem;
}

.info-stack-title {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.info-block {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--hair);
}

.info-block:first-of-type {
  padding-top: 0;
}

.info-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  display: block;
  color: var(--mute);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-block a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 180ms ease;
  word-break: break-word;
}

.info-block a:hover,
.info-block a:focus-visible {
  color: var(--accent);
}

.info-block p {
  margin: 0;
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ----- Legal (privacy / terms) ----- */

.legal-article {
  max-width: 720px;
  border-top: 1px solid var(--hair);
  padding-top: 3rem;
}

.legal-section + .legal-section {
  margin-top: 3rem;
}

.legal-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.legal-section h2 {
  font-size: 1.55rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.legal-section p {
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-list {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 0.75rem;
}

.review-note {
  margin-top: 3rem;
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--accent);
  background: var(--bg-alt);
  color: var(--ink-700);
  font-size: 0.95rem;
}

/* ----- CTA band ----- */

.cta-band {
  padding: 5.5rem 0;
  background: var(--ink);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  max-width: 28ch;
  margin: 0;
}

.cta-band .eyebrow {
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.cta-band .eyebrow::before {
  background: var(--accent-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ----- Footer ----- */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--hair);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hair);
}

.footer-logo {
  display: block;
  height: 54px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-copy {
  margin: 0;
  max-width: 30rem;
  color: var(--body);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  justify-content: flex-end;
  align-self: flex-start;
}

.footer-nav a {
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--mute);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ----- Responsive ----- */

@media (max-width: 1080px) {
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metric-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .metric-strip > div:nth-child(odd) {
    border-right: 1px solid var(--hair);
  }
  .metric-strip > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar,
  .pillar:not(:first-child) {
    padding: 2.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .pillar:last-child {
    border-bottom: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile,
  .profile:last-child {
    padding: 2.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .profile:last-child {
    border-bottom: 0;
  }

  .industry-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.6rem 1.5rem;
  }
  .industry-row p {
    grid-column: 2;
  }
  .industry-list.industry-list-detail .industry-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .side-panel {
    margin-top: 0;
  }

  .content-split,
  .content-pair {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-4 > article {
    padding: 2.2rem 1.3rem 2.2rem 0;
    border-right: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
  }
  .grid-4 > article:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
  .grid-4 > article:not(:first-child) {
    padding-left: 0;
  }
  .grid-4 > article:nth-child(2n) {
    padding-left: 1.3rem;
  }
  .grid-4 > article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--content));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-divider {
    height: 26px;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hair);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
    display: none;
  }

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

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hair);
    font-size: 1rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .page-hero {
    padding: 3rem 0 2.5rem;
  }
  .page-hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2.2rem;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }
  .metric-strip > div,
  .metric-strip > div:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .metric-strip > div:last-child {
    border-bottom: 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-4 > article,
  .grid-4 > article:nth-child(2n),
  .grid-4 > article:nth-child(2n+1) {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .grid-4 > article:last-child {
    border-bottom: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav {
    justify-content: flex-start;
  }
}
