
:root {
  --navy: #0b1f33;
  --navy-2: #102b47;
  --ink: #17202a;
  --muted: #5b6570;
  --gold: #b78b43;
  --gold-light: #d5b574;
  --cream: #f5f2eb;
  --paper: #ffffff;
  --line: #d9dde2;
  --success: #1f6b4f;
  --danger: #9b2c2c;
  --shadow: 0 18px 50px rgba(10, 27, 44, .12);
  --radius: 10px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
a:hover { color: var(--gold); }
.container { width: min(calc(100% - 38px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 38px), 820px); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 10px 14px; }

.topbar { background: #071726; color: #e8edf2; font-size: .9rem; }
.topbar-inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar-meta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.site-header { background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 50px; height: 56px; position: relative; display: grid; place-items: center; color: #fff; font-family: Georgia, serif; font-weight: 700; font-size: .92rem; letter-spacing: .02em; }
.brand-mark::before { content: ""; position: absolute; inset: 0; background: var(--navy); clip-path: polygon(50% 0, 94% 15%, 89% 68%, 50% 100%, 11% 68%, 6% 15%); }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 2px solid var(--gold-light); clip-path: polygon(50% 0, 94% 15%, 89% 68%, 50% 100%, 11% 68%, 6% 15%); }
.brand-mark span { position: relative; z-index: 1; }
.brand-text strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 1.23rem; line-height: 1.1; }
.brand-text small { display: block; color: var(--muted); font-size: .77rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 22px; height: 2px; background: var(--navy); position: relative; margin: auto; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 12px 10px; text-decoration: none; font-size: .89rem; color: #243444; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); }
.site-nav .nav-cta { color: #fff; background: var(--navy); border-radius: 5px; padding-inline: 18px; margin-left: 7px; }
.site-nav .nav-cta:hover { color: #fff; background: var(--gold); }

.hero { color: #fff; position: relative; overflow: hidden; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 74% 35%, rgba(213,181,116,.22), transparent 26%),
  linear-gradient(115deg, rgba(6,22,38,.98) 0%, rgba(11,31,51,.92) 48%, rgba(16,43,71,.75) 100%),
  url('../images/aerial.webp') center/cover no-repeat; transform: scale(1.03); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to left, #000, transparent 70%); }
.hero-inner { position: relative; z-index: 1; min-height: 590px; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 70px; align-items: center; padding-block: 76px; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; margin: 0 0 17px; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); line-height: 1.18; }
.hero h1 { color: #fff; font-size: 4rem; font-size: clamp(2.5rem, 5vw, 4.65rem); max-width: 880px; margin: 0 0 24px; letter-spacing: -.025em; }
.hero-lead { font-size: 1.22rem; max-width: 770px; color: #e5ebf1; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 11px 22px; border-radius: 5px; border: 2px solid transparent; text-decoration: none; font-weight: 800; font-size: .95rem; cursor: pointer; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--gold); color: #fff; }
.hero-panel { border: 1px solid rgba(255,255,255,.19); background: rgba(5,19,31,.64); backdrop-filter: blur(5px); box-shadow: 0 18px 60px rgba(0,0,0,.25); padding: 30px; border-radius: 8px; }
.hero-panel h2 { color: #fff; margin: 0 0 18px; font-size: 1.35rem; }
.credential-list { list-style: none; margin: 0; padding: 0; }
.credential-list li { padding: 13px 0 13px 31px; border-top: 1px solid rgba(255,255,255,.13); position: relative; color: #e5ebf1; }
.credential-list li:first-child { border-top: 0; }
.credential-list li::before { content: "✓"; position: absolute; left: 1px; color: var(--gold-light); font-weight: 900; }

.cred-strip { background: var(--cream); border-bottom: 1px solid #e5dfd2; }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cred-item { padding: 22px 20px; text-align: center; border-left: 1px solid #ded6c7; }
.cred-item:first-child { border-left: 0; }
.cred-item strong { display: block; font-family: Georgia, serif; color: var(--navy); font-size: 1.04rem; }
.cred-item span { display: block; color: var(--muted); font-size: .82rem; margin-top: 3px; }

.section { padding-block: 88px; }
.section-alt { background: #f7f8fa; }
.section-dark { background: var(--navy); color: #eaf0f5; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 { font-size: 2.7rem; font-size: clamp(2rem, 3.4vw, 3.2rem); margin: 0 0 15px; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.06rem; }
.section-dark .section-head p { color: #c8d2dd; }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; margin-bottom: 11px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 68px; }
.copy h2 { font-size: 2.8rem; font-size: clamp(2rem, 3.6vw, 3.25rem); margin: 0 0 19px; }
.copy p { color: var(--muted); }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; width: 72%; height: 68%; right: -18px; bottom: -18px; background: var(--gold); opacity: .17; border-radius: var(--radius); }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); position: relative; box-shadow: var(--shadow); }
.rule-list { list-style: none; padding: 0; margin: 26px 0 0; }
.rule-list li { padding: 12px 0 12px 29px; border-top: 1px solid var(--line); position: relative; }
.rule-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 34px rgba(15,33,50,.06); }
.card-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
.card-body { padding: 27px; }
.card h3 { margin: 0 0 11px; font-size: 1.34rem; }
.card p { color: var(--muted); margin: 0; }
.card-link { display: inline-block; margin-top: 17px; font-weight: 800; text-decoration: none; }
.icon-card { padding: 30px; border-top: 4px solid var(--gold); }
.icon-number { font-family: Georgia, serif; color: var(--gold); font-weight: 700; font-size: .95rem; letter-spacing: .08em; }

.callout { display: grid; grid-template-columns: 1.5fr auto; gap: 30px; align-items: center; padding: 40px 44px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); border-radius: var(--radius); }
.callout h2 { margin: 0 0 8px; font-size: 2rem; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.callout p { margin: 0; color: #cbd5df; }

.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 28%, rgba(183,139,67,.25), transparent 25%), linear-gradient(130deg, #071726, #102b47); }
.page-hero::after { content: ""; position: absolute; right: -110px; top: -120px; width: 450px; height: 450px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.022); }
.page-hero-inner { position: relative; z-index: 1; padding-block: 80px; max-width: 850px; }
.page-hero h1 { color: #fff; margin: 0 0 18px; font-size: 3.5rem; font-size: clamp(2.45rem, 5vw, 4rem); }
.page-hero p { color: #d9e2ea; font-size: 1.16rem; max-width: 780px; margin: 0; }
.breadcrumbs { margin-bottom: 18px; font-size: .83rem; color: #bcc9d5; }
.breadcrumbs a { color: #fff; text-decoration: none; }

.service-row { display: grid; grid-template-columns: 290px 1fr; gap: 45px; padding: 42px 0; border-top: 1px solid var(--line); }
.service-row:first-child { border-top: 0; padding-top: 0; }
.service-row h2 { font-size: 1.7rem; margin: 0; }
.service-row p:first-child { margin-top: 0; }
.service-row p { color: var(--muted); }
.service-row ul { margin-bottom: 0; }
.notice { padding: 22px 24px; background: var(--cream); border-left: 4px solid var(--gold); }
.notice p { margin: 0; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.stat { background: #fff; border: 1px solid var(--line); padding: 24px; border-radius: 8px; }
.stat strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.45rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-full { grid-column: 1 / -1; }
label { display: block; font-weight: 800; font-size: .91rem; color: var(--navy); margin-bottom: 6px; }
input, select, textarea { width: 100%; border: 1px solid #bfc7d0; border-radius: 5px; padding: 13px 14px; font: inherit; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(183,139,67,.2); border-color: var(--gold); }
textarea { min-height: 165px; resize: vertical; }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 7px; }
.checkbox-row label { font-weight: 400; color: var(--muted); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-note { font-size: .88rem; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); gap: 55px; }
.contact-card { background: var(--navy); color: #fff; padding: 34px; border-radius: var(--radius); align-self: start; }
.contact-card h2 { color: #fff; margin-top: 0; font-size: 1.55rem; }
.contact-card a { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list li:first-child { border-top: 0; }
.contact-list span { display: block; color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; margin-bottom: 4px; }
.alert { padding: 18px 20px; border-radius: 6px; margin-bottom: 24px; }
.alert-success { background: #e8f5ef; border: 1px solid #acd4c1; color: var(--success); }
.alert-error { background: #f9e9e9; border: 1px solid #e4b4b4; color: var(--danger); }

.site-footer { background: #071726; color: #c7d1db; }
.footer-main { padding-block: 58px; display: grid; grid-template-columns: 1.3fr .75fr .85fr; gap: 60px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-text small { color: #9eacb9; }
.footer-brand p { max-width: 470px; }
.site-footer h2 { color: #fff; font-size: 1.05rem; margin: 0 0 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: #c7d1db; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; font-size: .84rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: #c7d1db; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; inset: 88px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.08); display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { display: block; width: min(calc(100% - 38px), var(--max)); margin: auto; padding: 10px 0 20px; }
  .site-nav a { padding: 12px 5px; border-top: 1px solid #edf0f2; }
  .site-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 35px; }
  .hero-panel { max-width: 610px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 42px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar-inner { justify-content: center; }
  .topbar-meta span:first-child { display: none; }
  .header-inner { min-height: 78px; }
  .site-nav { top: 78px; }
  .brand-text strong { font-size: 1.04rem; }
  .brand-text small { font-size: .66rem; }
  .brand-mark { width: 43px; height: 49px; font-size: .8rem; }
  .hero-inner { min-height: auto; padding-block: 62px; }
  .hero h1 { font-size: 2.55rem; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .cred-item:nth-child(3) { border-left: 0; border-top: 1px solid #ded6c7; }
  .cred-item:nth-child(4) { border-top: 1px solid #ded6c7; }
  .section { padding-block: 65px; }
  .two-col, .card-grid, .stats, .service-row, .footer-main { grid-template-columns: 1fr; }
  .image-frame { order: -1; }
  .service-row { gap: 15px; }
  .callout { grid-template-columns: 1fr; padding: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .page-hero-inner { padding-block: 58px; }
}
@media (max-width: 470px) {
  .brand-text small { display: none; }
  .topbar-meta { gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-item { border-left: 0; border-top: 1px solid #ded6c7; }
  .cred-item:first-child { border-top: 0; }
}

.dark-notice { margin-top: 28px; background: rgba(255,255,255,.08); border-left-color: var(--gold-light); color: #eaf0f5; }
.dark-notice p { color: #eaf0f5; }
.card ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }

/* Strategy-and-consulting emphasis */
.strategy-banner { background: #eadfc9; border-top: 1px solid #d9c69e; border-bottom: 1px solid #d9c69e; }
.strategy-banner .container { padding-block: 38px; text-align: center; max-width: 1000px; }
.strategy-banner .kicker { margin: 0 0 8px; color: #7d5a20; }
.strategy-banner h2 { margin: 0 0 10px; font-size: clamp(1.75rem, 3.2vw, 2.7rem); }
.strategy-banner p:last-child { margin: 0 auto; max-width: 860px; color: #39434d; font-size: 1.05rem; }
.contact-hero-inner { max-width: 1160px; }
.contact-title { white-space: nowrap; font-size: clamp(1.05rem, 4.8vw, 4rem) !important; letter-spacing: -.035em; }
.site-nav a { white-space: nowrap; }
@media (max-width: 1180px) and (min-width: 981px) {
  .brand-text small { font-size: .64rem; letter-spacing: .08em; }
  .brand-text strong { font-size: 1.08rem; }
  .site-nav a { font-size: .80rem; padding-inline: 7px; }
  .header-inner { gap: 12px; }
}
@media (max-width: 720px) {
  .strategy-banner .container { padding-block: 30px; }
  .contact-title { font-size: clamp(1rem, 5.2vw, 2.4rem) !important; }
}
@media (max-width: 390px) {
  .contact-title { font-size: .95rem !important; letter-spacing: -.05em; }
}
