:root {
  --navy: #071426;
  --navy-2: #0d2038;
  --navy-3: #101b2c;
  --ink: #142033;
  --muted: #5f6b7a;
  --line: #e5e7eb;
  --soft: #f7f4ee;
  --cream: #f4efe6;
  --white: #ffffff;
  --gold: #b89b5e;
  --gold-soft: #d8c48f;
  --shadow: 0 24px 60px rgba(7, 20, 38, .18);
  --max: 1120px;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin-top: 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, .96);
  border-bottom: 1px solid rgba(7, 20, 38, .08);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-text {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.02;
}

.logo-text span {
  display: block;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .30em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(20, 32, 51, .78);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--navy);
}

.nav .cta-link {
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 1px solid rgba(7, 20, 38, .18);
  background: transparent;
  color: var(--navy);
  padding: 10px 12px;
  font-weight: 700;
}

/* LAYOUT */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--navy);
  color: white;
}

.grid-2 {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* HERO */
.hero {
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(7,20,38,.98) 0%,
      rgba(7,20,38,.94) 42%,
      rgba(7,20,38,.46) 100%
    ),
    url("../images/backgrounds/advisory-boardroom.png")
    center right / cover no-repeat;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 82px 0;
}

.hero-content {
  max-width: 760px;
}

.kicker {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 24px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.lead {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 21px;
  line-height: 1.7;
}

/* BUTTONS */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: .18s ease;
}

.button.primary {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy);
}

.button.primary:hover {
  background: #cdb67c;
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.40);
}

.button.secondary:hover {
  background: rgba(255,255,255,.08);
}

/* CARDS */
.card {
  background: white;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(7,20,38,.04);
}

.card.feature {
  border-top: 4px solid var(--gold);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,20,38,.08);
}

/* LISTS */
.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* REPORTS */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.report {
  border: 1px solid var(--line);
  background: white;
  padding: 30px;
}

.report small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.report p {
  color: var(--muted);
}

.report-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(184,155,94,.70);
  background: white;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: .18s ease;
}

.report-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.tier4-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tier4-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

.tier4-box p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* COMPARISON */
.comparison-section {
  padding: 88px 0;
  background: var(--soft);
}

.comparison-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.comparison-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #556170;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}

.comparison-card {
  background: white;
  border: 1px solid #e2ddd1;
  padding: 36px;
}

.comparison-negative {
  border-top: 4px solid #c9c2b2;
}

.comparison-positive {
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.comparison-label {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
  color: #6d7684;
}

.highlight-label {
  color: var(--gold);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  line-height: 1.65;
  color: #233041;
}

.comparison-negative li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #9ca3af;
  font-weight: 700;
}

.comparison-positive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.comparison-bottom {
  margin-top: 34px;
  padding: 24px 28px;
  background: var(--navy);
  color: rgba(255,255,255,.88);
  border-left: 4px solid var(--gold);
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--muted);
  background: white;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* TABLET */
@media (max-width: 920px) {

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: var(--cream);
    border-bottom: 1px solid rgba(7,20,38,.10);
  }

  .nav.open {
    display: grid;
    gap: 12px;
  }

  .menu-button {
    display: block;
  }

  .grid-2,
  .grid-3,
  .report-grid,
  .comparison-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section,
  .comparison-section {
    padding: 60px 0;
  }

  .button {
    width: 100%;
  }
}

/* MOBILE */
@media screen and (max-width: 560px) {

  .header-inner {
    padding: 12px 18px;
  }

  .logo-link {
    min-width: 0;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 18px;
    line-height: 1.05;
  }

  .logo-text span {
    font-size: 9px;
  }

  .hero {
    overflow: hidden;
    background:
      linear-gradient(
        180deg,
        rgba(7,20,38,.96),
        rgba(7,20,38,.86)
      ),
      url("../images/backgrounds/advisory-boardroom.png")
      center center / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 20px 64px;
  }

  .hero-content {
    width: 100%;
    max-width: 92%;
  }

  .hero .kicker {
    font-size: 11px;
    letter-spacing: .18em;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: .98 !important;
    letter-spacing: -0.04em !important;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero .lead {
    font-size: 17px !important;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
    text-align: center;
    min-height: 50px;
    font-size: 15px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .section,
  .comparison-section {
    padding: 52px 0;
  }

  .comparison-card {
    padding: 28px;
  }

  .tier4-box p {
    font-size: 14px;
  }
}
.contact-wrap {
  max-width: 920px;
}

.contact-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 42px;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  margin-top: 8px;
  width: 100%;
  min-height: 58px;
  font-size: 17px;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    min-height: 220px;
  }
}

.report {
  padding: 24px;
}

.report h3 {
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 14px;
}

.report p {
  line-height: 1.65;
  margin-bottom: 18px;
}

.report strong {
  display: block;
  margin-top: 12px;
}

.report-buttons {
  margin-top: 18px;
  padding-top: 14px;
}

/* INSIGHTS HERO FIX */
.insights-hero .hero-inner {
  min-height: auto;
  padding: 72px 0 56px;
}

.insights-hero .hero-content {
  max-width: 820px;
}

.insights-hero h1 {
  margin-bottom: 20px;
}

@media (max-width: 560px) {
  .insights-hero .hero-inner {
    min-height: auto;
    padding: 48px 0 42px;
  }
}

/* INSIGHTS PAGE HERO SPACING FIX */
.section.dark.insights-hero {
  padding: 56px 0;
}

.section.dark.insights-hero .container {
  max-width: 900px;
}

.section.dark.insights-hero .kicker {
  margin-bottom: 18px;
}

.section.dark.insights-hero p {
  margin-top: 24px;
}

@media (max-width: 560px) {
  .section.dark.insights-hero {
    padding: 42px 0 36px;
  }
}
