:root {
  --navy: #082148;
  --navy-2: #0A2956;
  --gold: #BB9442;
  --gold-soft: #D5B36A;
  --ivory: #F7F5F0;
  --gray: #5F6670;
  --white: #FFFFFF;
  --black: #000000;

  --line: rgba(8, 33, 72, .12);
  --line-gold: rgba(187, 148, 66, .36);
  --shadow: 0 22px 55px rgba(8, 33, 72, .08);
  --shadow-strong: 0 28px 60px rgba(8, 33, 72, .22);

  --radius: 28px;
  --radius-card: 24px;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.65;
}

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

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

p {
  color: var(--gray);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.035em;
}

h3 {
  font-size: 21px;
  letter-spacing: -.02em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 33, 72, .08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 29px;
  letter-spacing: .17em;
  line-height: .95;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:not(.btn) {
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  transition: .2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(187, 148, 66, .2);
}

.btn-small {
  padding: 14px 22px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(8, 33, 72, .18);
}

.contact-section .btn-outline,
.footer .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}

/* Hero */
.hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .22em;
  font-weight: 800;
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 32px;
  font-size: 19px;
}

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

.trust-line {
  margin-top: 26px;
  font-weight: 700;
  color: var(--navy);
}

.visual-card {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(8, 33, 72, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.circle-line {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(187, 148, 66, .25);
  border-radius: 50%;
}

.hero-mark {
  position: relative;
  width: min(72%, 430px);
  filter: drop-shadow(0 18px 30px rgba(8, 33, 72, .1));
}

.metric {
  position: absolute;
  min-width: 130px;
  background: var(--white);
  border: 1px solid rgba(8, 33, 72, .12);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 16px 34px rgba(8, 33, 72, .08);
}

.metric strong {
  display: block;
  font-size: 14px;
}

.metric span {
  display: block;
  color: var(--gray);
  font-size: 12px;
}

.metric-one {
  top: 54px;
  left: 40px;
}

.metric-two {
  right: -10px;
  top: 120px;
}

.metric-three {
  left: 70px;
  bottom: 56px;
}

/* Sections */
.section {
  padding: 92px 0;
}

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

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-copy p,
.max-copy {
  margin-top: 0;
  font-size: 18px;
}

.centered {
  text-align: center;
}

.max-copy {
  max-width: 760px;
  margin: 20px auto 0;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.card {
  background: var(--white);
  border: 1px solid rgba(8, 33, 72, .1);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(8, 33, 72, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(187, 148, 66, .4);
  border-radius: 50%;
  color: var(--gold);
}

.journey {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 42px;
}

.journey span {
  background: var(--white);
  border: 1px solid rgba(8, 33, 72, .12);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
}

.journey i {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.note {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  color: var(--gray);
}

.stack {
  display: grid;
  gap: 18px;
}

.stack article {
  border-left: 2px solid var(--gold);
  padding: 6px 0 8px 22px;
}

.stack p {
  margin: 9px 0 0;
}

.profile .role {
  margin: 10px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.package a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

/* Insight Cards on Homepage */
.insights-grid {
  grid-template-columns: repeat(5, 1fr);
}

.insight {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  padding: 24px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.insight:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border-color: rgba(187, 148, 66, .65);
  box-shadow: var(--shadow-strong);
}

.insight p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 800;
}

.insight h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
}

.insight:hover h3 {
  color: var(--gold-soft);
}

/* Article / Insight Pages */
.article-hero {
  padding: 92px 0 72px;
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
}

.article-hero h1 {
  max-width: 880px;
}

.article-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 20px;
}

.article-section {
  padding: 88px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow);
}

.article-aside-card p {
  color: rgba(255, 255, 255, .72);
}

.article-aside-card .eyebrow {
  color: var(--gold);
}

.article-body {
  max-width: 760px;
}

.article-body p {
  margin: 0 0 22px;
  font-size: 18px;
}

.article-body h2 {
  margin: 44px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.article-body h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.article-body ul {
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--gray);
  font-size: 18px;
}

.article-body li {
  margin: 10px 0;
}

.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--ivory);
  border: 1px solid rgba(8, 33, 72, .08);
  border-radius: var(--radius-card);
}

.article-cta h3 {
  margin-top: 0;
}

.article-cta p {
  margin-bottom: 24px;
}

/* Contact */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section p,
.contact-section span {
  color: rgba(255, 255, 255, .72);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
}

.contact-list strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form label:nth-last-of-type(1),
.contact-form .btn {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 33, 72, .16);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(187, 148, 66, .12);
}

/* Footer */
.footer {
  background: #061936;
  color: var(--white);
  padding: 58px 0 28px;
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 64px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white) !important;
  font-weight: 800;
  font-size: 20px;
}

.footer h2 {
  max-width: 480px;
  margin-top: 28px;
  font-size: 42px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin: 10px 0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .card,
  .btn,
  .insight {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 22px 20px 28px;
  }

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

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-aside {
    position: static;
  }

  .card-grid.four,
  .card-grid.three,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    min-width: auto;
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 21px;
    letter-spacing: .14em;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: .34em;
  }

  .main-nav {
    inset: 76px 0 auto 0;
  }

  .hero {
    padding: 58px 0 54px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-lead,
  .article-lead {
    font-size: 17px;
  }

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

  .section,
  .article-section {
    padding: 66px 0;
  }

  .article-hero {
    padding: 66px 0 54px;
  }

  .card-grid.four,
  .card-grid.three,
  .services-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 410px;
  }

  .metric {
    display: none;
  }

  .journey {
    justify-content: flex-start;
  }

  .journey i {
    width: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer h2 {
    font-size: 34px;
  }
}
/* Premium Insight Page Override */

.article-hero {
  padding: 92px 0 64px;
  background: linear-gradient(180deg, var(--ivory) 0%, #ffffff 100%);
}

.article-hero .container {
  max-width: 1180px;
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: .9;
  letter-spacing: -.045em;
}

.article-lead {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.65;
  color: var(--gray);
}

.article-section {
  padding: 78px 0 100px;
  background: #ffffff;
}

.article-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 760px);
  gap: 72px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside-card {
  background: var(--navy);
  color: #ffffff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(8, 33, 72, .16);
}

.article-aside-card .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
}

.article-aside-card h3 {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.article-aside-card p {
  color: rgba(255,255,255,.72);
  margin-bottom: 0;
}

.article-body {
  max-width: 760px;
}

.article-body > p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.78;
  color: var(--gray);
}

.article-body h2 {
  margin: 52px 0 20px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .98;
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  color: var(--navy);
}

.article-body ul {
  margin: 0 0 30px;
  padding-left: 22px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
}

.article-body li {
  margin: 8px 0;
}

.article-cta {
  margin-top: 54px;
  padding: 34px;
  background: var(--ivory);
  border: 1px solid rgba(8,33,72,.08);
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(8,33,72,.045);
}

.article-cta h3 {
  margin: 0 0 12px;
  font-size: 26px;
}

.article-cta p {
  margin: 0 0 24px;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-aside {
    position: static;
  }

  .article-aside-card {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .article-hero {
    padding: 64px 0 48px;
  }

  .article-hero h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .article-section {
    padding: 58px 0 72px;
  }

  .article-aside-card,
  .article-cta {
    padding: 24px;
  }

  .article-body h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
}