:root {
  --navy: #001b43;
  --navy-2: #062955;
  --gold: #c18f32;
  --warm-gold: #d3a34d;
  --stone: #eeedea;
  --ivory: #f8f6f1;
  --white: #ffffff;
  --ink: #10213a;
  --muted: #5e6672;
  --line: rgba(193, 143, 50, .28);
  --shadow: 0 18px 55px rgba(0, 27, 67, .10);
  --radius: 2px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
  position: fixed;
  left: 20px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 9999;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,27,67,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,27,67,.08); }
.nav-wrap { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { min-width: 260px; height: 70px; display: flex; align-items: center; gap: 13px; }
.brand-shield { width: 48px; height: 54px; object-fit: contain; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark strong { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); font-size: 24px; letter-spacing: .22em; font-weight: 500; }
.brand-wordmark small { margin-top: 8px; color: var(--gold); font-size: 8px; letter-spacing: .28em; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav > a { font-size: 13px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta { background: var(--navy); color: #fff; padding: 13px 18px; border: 1px solid var(--navy); }
.nav-cta:hover { background: transparent; color: var(--navy); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s; }

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 164px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #fff 0%, #fbfaf7 55%, #f1eee7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -240px;
  background: var(--navy);
  transform: rotate(45deg);
  opacity: .98;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 6%, var(--gold) 25%, var(--gold) 75%, transparent 94%);
}
.hero-watermark { position: absolute; right: 7vw; bottom: 1vh; opacity: .035; width: 520px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 800; }
.eyebrow span { color: var(--navy); padding-inline: 5px; font-size: 8px; }
.eyebrow.light { color: var(--warm-gold); }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; color: var(--navy); margin-top: 0; }
h1 { font-size: clamp(48px, 5.4vw, 78px); line-height: 1.02; letter-spacing: -.025em; max-width: 700px; margin-bottom: 26px; }
h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.08; margin-bottom: 22px; }
h3 { font-size: 27px; line-height: 1.2; margin-bottom: 12px; }
.hero-lead { max-width: 690px; color: #4e5865; font-size: 18px; line-height: 1.8; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; transition: .25s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,27,67,.15); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(0,27,67,.35); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); white-space: nowrap; }
.btn-gold:hover { background: var(--warm-gold); transform: translateY(-2px); }
.hero-signature { display: flex; align-items: center; gap: 16px; margin-top: 42px; color: var(--navy); }
.hero-signature span { width: 72px; height: 1px; background: var(--gold); position: relative; }
.hero-signature span::after { content: ""; width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); position: absolute; right: -4px; top: -4px; background: #fff; }
.hero-signature strong { font-size: 12px; text-transform: uppercase; letter-spacing: .24em; }
.hero-art { position: relative; padding: 18px; }
.hero-art img { width: 100%; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--shadow); position: relative; z-index: 2; }
.hero-art::before { content: ""; position: absolute; top: -16px; right: -16px; width: 110px; height: 110px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-art::after { content: ""; position: absolute; bottom: -16px; left: -16px; width: 110px; height: 110px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-art-frame { position: absolute; inset: 0; border: 1px solid rgba(193,143,50,.18); z-index: 1; transform: translate(9px,9px); }

.split-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.section-heading { position: sticky; top: 145px; }
.gold-rule { display: flex; align-items: center; width: 190px; height: 16px; margin-top: 28px; }
.gold-rule::before, .gold-rule::after { content: ""; height: 1px; background: var(--gold); flex: 1; }
.gold-rule i { width: 10px; height: 10px; border: 1px solid var(--gold); transform: rotate(45deg); margin: 0 10px; }
.statement { font-family: Georgia, 'Times New Roman', serif; font-size: 27px; line-height: 1.55; color: var(--navy); margin-top: 0; }
.about-copy > p:not(.statement) { color: var(--muted); font-size: 17px; }
.about-quote { margin-top: 34px; padding: 22px 28px; background: var(--navy); border-left: 4px solid var(--gold); }
.about-quote p { color: white; font-family: Georgia, serif; font-style: italic; font-size: 21px; margin: 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 82px; }
.pillar-card { background: var(--ivory); border: 1px solid rgba(0,27,67,.08); padding: 38px 34px; position: relative; overflow: hidden; min-height: 306px; }
.pillar-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; bottom: -80px; border: 1px solid rgba(193,143,50,.2); transform: rotate(45deg); }
.pillar-number { color: var(--gold); font-family: Georgia, serif; font-size: 24px; margin-bottom: 24px; }
.pillar-card h3 { font-size: 30px; }
.pillar-card p { color: var(--muted); min-height: 74px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tags span { background: #fff; border: 1px solid rgba(0,27,67,.08); color: var(--navy); padding: 7px 9px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }

.services { background: var(--navy); color: white; position: relative; overflow: hidden; }
.services::before { content:""; position:absolute; width:530px; height:530px; right:-160px; top:-180px; border:1px solid rgba(211,163,77,.17); transform:rotate(45deg); }
.services::after { content:""; position:absolute; width:360px; height:360px; right:-60px; top:-80px; border:1px solid rgba(211,163,77,.12); transform:rotate(45deg); }
.services-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--gold), var(--warm-gold)); }
.services .container { position: relative; z-index: 2; }
.services-intro { display: grid; grid-template-columns: .8fr 1.1fr 1fr; gap: 44px; align-items: end; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.13); }
.services-intro h2 { color: #fff; margin-bottom: 0; }
.services-intro > p:last-child { color: rgba(255,255,255,.7); margin-bottom: 6px; }
.service-list { border-bottom: 1px solid rgba(255,255,255,.13); }
.service-item { display: grid; grid-template-columns: 90px 1fr 28px; gap: 32px; align-items: start; padding: 39px 0; border-top: 1px solid rgba(255,255,255,.13); transition: background .25s ease, padding .25s ease; }
.service-item:first-child { border-top: 0; }
.service-item:hover { background: rgba(255,255,255,.035); padding-left: 18px; padding-right: 18px; }
.service-index { color: var(--warm-gold); font-family: Georgia, serif; font-size: 25px; }
.service-item h3 { color: white; font-size: 31px; margin-bottom: 7px; }
.service-item p { color: rgba(255,255,255,.68); margin: 0; max-width: 820px; }
.diamond { width: 10px; height: 10px; border: 1px solid var(--gold); transform: rotate(45deg); margin-top: 12px; }

.approach { background: #fff; }
.center-heading { max-width: 760px; text-align: center; margin: 0 auto 60px; }
.center-heading p:last-child { color: var(--muted); font-size: 17px; }
.standard-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(0,27,67,.09); }
.standard-card { padding: 38px 28px; min-height: 240px; background: #fff; position: relative; border-right: 1px solid rgba(0,27,67,.09); transition: transform .2s ease, box-shadow .2s ease; }
.standard-card:last-child { border-right: 0; }
.standard-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); z-index: 2; }
.standard-card span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.standard-card h3 { margin-top: 40px; font-size: 27px; }
.standard-card p { color: var(--muted); margin-bottom: 0; }
.standard-card::after { content: ""; position: absolute; right: 20px; top: 22px; width: 8px; height: 8px; background: var(--navy); transform: rotate(45deg); }

.principles-band { padding: 78px 0; background: var(--navy); position: relative; overflow: hidden; }
.principles-band::after { content:""; position:absolute; right:-130px; top:-130px; width:360px; height:360px; background:#fff; opacity:.025; transform:rotate(45deg); }
.principles-inner { display: grid; grid-template-columns: 118px 1fr auto; gap: 44px; align-items: center; position: relative; z-index: 2; }
.principles-inner > img { width: 95px; filter: saturate(1.08); }
.principles-inner h2 { color: #fff; font-size: 40px; margin-bottom: 8px; }
.principles-inner p:last-child { color: rgba(255,255,255,.65); margin: 0; }

.contact { background: var(--ivory); position: relative; overflow: hidden; }
.contact::before { content:""; position:absolute; left:-170px; bottom:-240px; width:520px; height:520px; border:1px solid rgba(193,143,50,.12); transform:rotate(45deg); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: start; position: relative; z-index: 2; }
.contact-copy .statement { font-size: 24px; }
.contact-details { display: grid; gap: 18px; margin-top: 40px; }
.contact-details > * { display: flex; align-items: center; gap: 15px; color: var(--navy); }
.contact-details small { display: block; text-transform: uppercase; color: var(--gold); letter-spacing: .14em; font-size: 9px; font-weight: 800; margin-bottom: 1px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; }
.contact-details > *:nth-child(2) .contact-icon { background: var(--gold); color: var(--navy); }
.contact-details > *:nth-child(3) .contact-icon { background: #fff; color: var(--navy); border: 1px solid rgba(0,27,67,.1); }
.contact-form-wrap { background: #fff; border: 1px solid rgba(0,27,67,.08); padding: 42px; box-shadow: 0 20px 60px rgba(0,27,67,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 19px; }
.field label { display: block; margin-bottom: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--navy); }
.field input, .field textarea { width: 100%; border: 1px solid #d9d9d5; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; border-radius: 0; }
.field input { height: 50px; }
.field textarea { resize: vertical; min-height: 145px; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,143,50,.10); }
.field.invalid input, .field.invalid textarea { border-color: #9f2e2e; }
.submit-btn { width: 100%; justify-content: space-between; }
.submit-btn span { font-size: 20px; line-height: 1; }
.form-status { min-height: 25px; margin: 13px 0 0; color: var(--muted); font-size: 13px; }
.form-status.error { color: #8a2727; }

.site-footer { background: #fff; border-top: 1px solid rgba(0,27,67,.08); padding: 45px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 54px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1; }
.footer-brand strong { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); font-size: 21px; letter-spacing: .2em; font-weight: 500; }
.footer-brand small { margin-top: 7px; color: var(--gold); font-size: 7px; letter-spacing: .24em; font-weight: 700; }
.footer-grid > p { color: var(--navy); font-family: Georgia, serif; font-style: italic; font-size: 18px; }
.footer-links { display: flex; gap: 22px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(0,27,67,.08); font-size: 10px; color: #757b83; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom span:last-child { display: flex; align-items: center; gap: 9px; }
.footer-bottom i { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-art { max-width: 800px; }
  .hero { min-height: auto; }
  .split-layout { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { position: static; }
  .services-intro { grid-template-columns: 1fr; gap: 8px; }
  .standard-grid { grid-template-columns: 1fr 1fr; }
  .standard-card:nth-child(2) { border-right: 0; }
  .standard-card:nth-child(-n+2) { border-bottom: 1px solid rgba(0,27,67,.09); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .nav-wrap { height: 78px; }
  .brand { min-width: 215px; height: 58px; gap: 10px; }
  .brand-shield { width: 40px; height: 44px; }
  .brand-wordmark strong { font-size: 20px; }
  .brand-wordmark small { font-size: 7px; margin-top: 6px; }
  .nav-toggle { display: block; z-index: 4; }
  .main-nav { position: fixed; inset: 78px 0 auto; background: rgba(255,255,255,.98); flex-direction: column; align-items: stretch; gap: 0; padding: 15px 22px 24px; border-bottom: 1px solid rgba(0,27,67,.08); transform: translateY(-140%); transition: transform .28s ease; box-shadow: 0 20px 40px rgba(0,27,67,.08); }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 8px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { padding: 125px 0 70px; }
  .hero::before { width: 310px; height: 310px; right: -180px; top: -170px; }
  .hero-grid { gap: 38px; }
  .hero-art { padding: 10px; }
  h1 { font-size: clamp(43px, 12vw, 66px); }
  .hero-lead { font-size: 16px; }
  .pillars-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .pillar-card { min-height: auto; }
  .service-item { grid-template-columns: 58px 1fr 16px; gap: 16px; padding: 30px 0; }
  .service-item h3 { font-size: 25px; }
  .service-item:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .principles-inner { grid-template-columns: 72px 1fr; }
  .principles-inner > img { width: 65px; }
  .principles-inner .btn { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-links { margin-top: 8px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-signature strong { letter-spacing: .15em; }
  .hero-signature span { width: 40px; }
  .statement { font-size: 23px; }
  .service-item { grid-template-columns: 40px 1fr; }
  .service-item .diamond { display: none; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-card, .standard-card:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(0,27,67,.09); }
  .standard-card:last-child { border-bottom: 0; }
  .principles-inner { grid-template-columns: 1fr; text-align: left; }
  .principles-inner > img { width: 78px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-bottom span:last-child { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
