:root {
  --ink: #061426;
  --ink-2: #0a1d33;
  --steel: #5c6778;
  --smoke: #e9eef5;
  --paper: #f6f8fb;
  --white: #ffffff;
  --brass: #c99135;
  --brass-2: #f0d277;
  --blue: #12385f;
  --green: #aeb9c7;
  --silver: #dce3ee;
  --line: rgba(7, 20, 38, 0.14);
  --dark-line: rgba(220, 227, 238, 0.18);
  --shadow: 0 28px 70px rgba(5, 12, 24, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--ink);
  background: var(--brass-2);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 8px clamp(20px, 5vw, 72px);
  background: #061426;
  border-bottom: 1px solid rgba(220, 227, 238, 0.16);
  box-shadow: 0 16px 44px rgba(5, 12, 24, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: clamp(68px, 7vw, 86px);
  min-width: 68px;
  height: 72px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(245, 247, 251, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 6px;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(201, 145, 53, 0.16);
}

.site-nav .nav-client {
  color: var(--brass-2);
  border: 1px solid rgba(241, 212, 123, 0.34);
  background: rgba(201, 145, 53, 0.1);
}

.site-nav .nav-client:hover {
  color: var(--ink);
  background: var(--brass-2);
}

.site-nav .nav-action {
  color: var(--ink);
  background: linear-gradient(135deg, #f6dc87, var(--brass));
}

.site-nav .nav-action:hover {
  color: var(--ink);
  background: var(--brass-2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brass-2);
  background: rgba(201, 145, 53, 0.24);
  border: 1px solid rgba(241, 212, 123, 0.72);
  border-radius: 6px;
}

[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 5.25vw, 5.55rem);
  line-height: 0.98;
  font-weight: 900;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f6dc87, var(--brass));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffe9a3, #d59c3c);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(220, 227, 238, 0.42);
  background: rgba(220, 227, 238, 0.08);
}

.button-ghost:hover {
  background: rgba(220, 227, 238, 0.16);
}

.hero {
  position: relative;
  min-height: min(820px, calc(88svh - 84px));
  padding: clamp(80px, 9vw, 120px) clamp(20px, 5vw, 72px) 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.98) 0%, rgba(6, 20, 38, 0.92) 44%, rgba(6, 20, 38, 0.28) 100%),
    linear-gradient(135deg, rgba(201, 145, 53, 0.16), rgba(220, 227, 238, 0) 50%),
    url("../assets/images/hero-boardroom.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.04), rgba(3, 10, 22, 0.76)),
    linear-gradient(115deg, rgba(220, 227, 238, 0.12), rgba(220, 227, 238, 0) 42%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0 13px;
  color: var(--brass-2);
  background: rgba(6, 20, 38, 0.68);
  border: 1px solid rgba(240, 210, 119, 0.32);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(245, 247, 251, 0.82);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

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

.hero-signature {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin-top: clamp(28px, 5vw, 54px);
}

.hero-signature span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(7, 20, 38, 0.66);
  border: 1px solid rgba(220, 227, 238, 0.2);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-signature [data-lucide] {
  color: var(--brass-2);
}

.statement-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}

.statement h2 {
  color: var(--paper);
}

.statement-copy {
  align-self: end;
  color: rgba(245, 247, 251, 0.74);
  font-size: 1.08rem;
}

.statement-copy p {
  margin-bottom: 0;
}

.expertise-section,
.process-section,
.deliverables-section,
.contact-section {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
}

.expertise-section,
.deliverables-section {
  background: var(--paper);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 42px;
}

.section-heading .section-kicker,
.deliverables-copy .section-kicker,
.contact-copy .section-kicker,
.impact-copy .section-kicker,
.trust-content .section-kicker {
  color: var(--brass);
}

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

.expertise-grid article {
  min-height: 300px;
  padding: 28px;
  background: linear-gradient(180deg, var(--white), var(--paper));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expertise-grid span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--brass);
  font-weight: 900;
}

.expertise-grid h3 {
  color: var(--ink);
  font-size: 1.22rem;
}

.expertise-grid p {
  margin-bottom: 0;
  color: var(--steel);
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 680px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
}

.impact-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.1), rgba(7, 20, 38, 0.28)),
    url("../assets/images/financial-analysis.jpg") center / cover no-repeat;
}

.impact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px);
  color: rgba(245, 247, 251, 0.78);
}

.impact-copy h2 {
  color: var(--paper);
}

.impact-copy p {
  max-width: 650px;
  font-size: 1.05rem;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin-top: 24px;
}

.impact-list span {
  min-height: 50px;
  padding: 13px 14px;
  color: var(--paper);
  background: rgba(220, 227, 238, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  font-weight: 800;
}

.process-section {
  background: var(--white);
}

.section-heading.narrow {
  max-width: 780px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}

.process-steps article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(145deg, var(--ink-2), var(--ink));
  border-radius: 6px;
}

.process-steps article::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  right: 18px;
  bottom: -22px;
  color: rgba(201, 145, 53, 0.22);
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1;
}

.process-steps strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--brass-2);
  font-size: 1.22rem;
}

.process-steps p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(245, 247, 251, 0.78);
}

.deliverables-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
}

.deliverables-copy {
  max-width: 570px;
}

.deliverables-copy p {
  color: var(--steel);
}

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.deliverables-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  background: linear-gradient(180deg, var(--white), #f9fafc);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(7, 20, 38, 0.07);
}

.deliverables-list i {
  color: var(--brass);
}

.deliverables-list span {
  color: var(--ink);
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  min-height: 560px;
  background: var(--smoke);
}

.trust-image {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.1), rgba(7, 20, 38, 0.02)),
    url("../assets/images/consulting-documents.jpg") center / cover no-repeat;
}

.trust-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.trust-content p {
  max-width: 650px;
  color: var(--steel);
  font-size: 1.04rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 0.58fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}

.contact-section h2 {
  color: var(--paper);
}

.contact-copy p {
  max-width: 690px;
  color: rgba(245, 247, 251, 0.74);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(220, 227, 238, 0.06);
  border: 1px solid var(--dark-line);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(220, 227, 238, 0.28);
  border-radius: 6px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--brass-2);
  box-shadow: 0 0 0 3px rgba(201, 145, 53, 0.24);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--brass-2);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(245, 247, 251, 0.72);
  background: var(--ink);
  border-top: 1px solid var(--dark-line);
}

.site-footer img {
  width: 76px;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 1160px) {
  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-section,
  .deliverables-section,
  .trust-section,
  .contact-section,
  .statement-section {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 82px;
    padding: 8px 20px;
  }

  .brand {
    width: 64px;
    min-width: 64px;
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: rgba(7, 20, 38, 0.98);
    border-bottom: 1px solid var(--dark-line);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 58px 20px 30px;
    background:
      linear-gradient(90deg, rgba(5, 12, 24, 0.96), rgba(7, 20, 38, 0.72)),
      url("../assets/images/hero-boardroom.jpg") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.2rem, 9.6vw, 3.05rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-signature {
    display: none;
  }

  .statement-section,
  .expertise-section,
  .process-section,
  .deliverables-section,
  .contact-section {
    padding: 58px 20px;
  }

  .expertise-grid,
  .process-steps,
  .deliverables-list,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .expertise-grid article,
  .process-steps article {
    min-height: auto;
  }

  .impact-section,
  .trust-section {
    min-height: auto;
  }

  .impact-image,
  .trust-image {
    min-height: 360px;
  }

  .impact-copy,
  .trust-content {
    padding: 48px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }

  .hero-content {
    max-width: min(100%, 350px);
  }

  .hero-signature {
    margin-top: 44px;
  }

  .hero-signature span {
    width: calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }

  .contact-form {
    padding: 18px;
  }
}
