:root {
  --navy: #0A2345;
  --navy-deep: #071a34;
  --teal: #4E7772;
  --gold: #B58A3A;
  --silver: #A7A5A5;
  --paper: #FCFBF8;
  --white: #ffffff;
  --ink: #18324f;
  --muted: #607080;
  --line: rgba(10, 35, 69, .12);
  --shadow: 0 24px 65px rgba(10,35,69,.10);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

::selection { background: rgba(181,138,58,.22); color: var(--navy); }

.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; overflow: hidden; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 2000;
  padding: 10px 14px; background: var(--navy); color: #fff;
  transform: translateY(-160%); transition: transform .2s; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(252,251,248,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,35,69,.08);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(10,35,69,.08); background: rgba(252,251,248,.97); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 194px; height: 64px; overflow: hidden; text-decoration: none; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative; text-decoration: none; text-transform: uppercase;
  letter-spacing: .15em; font-size: 11px; font-weight: 700; padding: 14px 0;
}
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 8px; height: 1px;
  background: var(--gold); transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-nav .nav-cta { padding: 11px 18px; border: 1px solid var(--gold); color: var(--navy); }
.site-nav .nav-cta:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--navy); margin: 6px 0; transition: .2s; }

.hero {
  min-height: 100svh; padding: 150px 0 90px; display: grid; align-items: center;
  position: relative; overflow: hidden; background:
  radial-gradient(circle at 82% 28%, rgba(78,119,114,.08), transparent 25%),
  radial-gradient(circle at 20% 82%, rgba(181,138,58,.06), transparent 27%), var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.hero-copy { max-width: 640px; }
.eyebrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 28px; text-transform: uppercase; letter-spacing: .17em; font-size: 10px; font-weight: 700; color: var(--teal); }
.eyebrow span:first-child, .eyebrow span:last-child { color: var(--navy); }
.eyebrow b { width: 2px; height: 16px; background: var(--gold); display: inline-block; font-weight: normal; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(50px, 5.3vw, 78px); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; color: var(--navy); }
.hero h1 em { display: block; color: var(--teal); font-style: normal; }
.hero-lead { max-width: 590px; margin: 28px 0 34px; color: #526679; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 700; cursor: pointer; transition: transform .25s, background .25s, color .25s, border-color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--teal); border-color: var(--teal); }
.btn-secondary { color: var(--navy); border-color: rgba(10,35,69,.22); background: rgba(255,255,255,.55); }
.btn-secondary:hover { border-color: var(--gold); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #9d752e; border-color: #9d752e; }

.hero-brand { position: relative; }
.logo-stage { position: relative; background: rgba(255,255,255,.74); border: 1px solid rgba(10,35,69,.08); box-shadow: var(--shadow); padding: 44px; min-height: 410px; display: grid; place-items: center; }
.logo-stage::before, .logo-stage::after { content: ''; position: absolute; width: 90px; height: 90px; border: 1px solid rgba(181,138,58,.33); transform: rotate(45deg); pointer-events: none; }
.logo-stage::before { top: -45px; right: -45px; }
.logo-stage::after { bottom: -60px; left: -58px; border-color: rgba(78,119,114,.26); }
.logo-stage img { width: min(100%, 520px); filter: drop-shadow(0 4px 12px rgba(10,35,69,.03)); }
.promise-card { position: absolute; width: min(430px, 88%); right: -28px; bottom: -60px; background: var(--navy); color: #fff; display: flex; gap: 18px; padding: 24px 26px; box-shadow: 0 24px 50px rgba(10,35,69,.18); }
.promise-number { color: var(--gold); font-size: 12px; letter-spacing: .15em; padding-top: 5px; }
.promise-card p { margin: 0 0 4px; color: #aac3c0; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
.promise-card strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 500; margin-bottom: 5px; }
.promise-card div > span { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; align-items: center; gap: 11px; text-decoration: none; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; color: var(--muted); }
.scroll-cue span { width: 34px; height: 1px; background: var(--gold); }

.hero-lines { position: absolute; width: 420px; height: 420px; opacity: .42; pointer-events: none; background: repeating-radial-gradient(ellipse at center, transparent 0 9px, rgba(10,35,69,.10) 10px 11px, transparent 12px 18px); border-radius: 50%; }
.hero-lines-one { left: -250px; top: -170px; }
.hero-lines-two { right: -270px; bottom: -190px; }
.corner-squares { position: absolute; width: 180px; height: 180px; pointer-events: none; opacity: .45; }
.corner-squares i { position: absolute; width: 115px; height: 115px; border: 1px solid var(--gold); transform: rotate(45deg); }
.corner-squares i + i { border-color: var(--teal); transform: translate(64px,42px) rotate(45deg); }
.corner-squares-top { right: -70px; top: 120px; }
.corner-squares-bottom { left: -70px; bottom: 70px; }

.section-heading { max-width: 840px; margin-bottom: 52px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: end; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.kicker { margin: 0 0 15px; color: var(--teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; }
.kicker::before { content: ''; display: inline-block; width: 24px; height: 1px; margin-right: 10px; vertical-align: middle; background: var(--gold); }
.kicker.light { color: #b8d1ce; }
.section-heading h2, .contact h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); line-height: 1.08; font-weight: 500; letter-spacing: -.025em; }
.section-intro { margin: 20px 0 0; color: var(--muted); font-size: 17px; max-width: 720px; }
.centered .section-intro { margin-inline: auto; }
.heading-copy p { margin: 0; color: var(--muted); font-size: 16px; }
.heading-copy .gold-note { margin-top: 20px; color: var(--navy); padding-left: 18px; border-left: 2px solid var(--gold); }

.about { background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { position: relative; padding: 30px 25px 34px; min-height: 220px; background: var(--paper); border: 1px solid rgba(10,35,69,.09); overflow: hidden; }
.value-card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--navy); }
.value-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; margin-bottom: 28px; }
.value-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }
.value-teal::after, .value-teal span { background: var(--teal); }
.value-gold::after, .value-gold span { background: var(--gold); }

.services { background: var(--navy); color: #fff; }
.services::after { content: ''; position: absolute; width: 620px; height: 620px; right: -280px; top: -280px; border: 1px solid rgba(181,138,58,.18); transform: rotate(45deg); }
.services .section-heading h2 { max-width: 860px; }
.services .section-intro { color: rgba(255,255,255,.62); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position: relative; z-index: 1; }
.service-card { position: relative; min-height: 330px; padding: 38px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); transition: transform .3s, border-color .3s, background .3s; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(181,138,58,.55); background: rgba(255,255,255,.055); }
.service-card::before { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--gold); transition: width .35s; }
.service-card:hover::before { width: 100%; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--gold); margin-bottom: 34px; }
.service-icon svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service-no { position: absolute; top: 34px; right: 34px; color: rgba(255,255,255,.32); font-size: 10px; letter-spacing: .2em; }
.service-card h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 30px; line-height: 1.2; font-weight: 500; }
.service-card p { margin: 0; color: rgba(255,255,255,.64); max-width: 520px; font-size: 14px; }

.approach { background: var(--paper); }
.approach-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; margin-top: 75px; }
.track-line { position: absolute; left: 14%; right: 14%; top: 35px; height: 1px; background: rgba(78,119,114,.35); }
.step { position: relative; text-align: center; }
.step-dot { position: relative; z-index: 2; margin: 0 auto 26px; width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; box-shadow: 0 0 0 12px var(--paper); }
.step-teal .step-dot { background: var(--teal); }
.step-gold .step-dot { background: var(--gold); }
.step-label { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .22em; font-size: 9px; color: var(--teal); font-weight: 700; }
.step h3 { margin: 0 0 12px; font-family: var(--serif); font-weight: 500; font-size: 27px; }
.step > p:last-child { margin: 0 auto; color: var(--muted); max-width: 270px; font-size: 14px; }
.principles-band { margin-top: 85px; padding: 36px 34px; background: #fff; border: 1px solid rgba(10,35,69,.08); display: grid; grid-template-columns: 68px 1fr 1px 1fr 1px 1fr; align-items: center; gap: 28px; box-shadow: 0 14px 42px rgba(10,35,69,.05); }
.principles-band > div:not(.linked-mark) { display: flex; flex-direction: column; }
.principles-band small { color: var(--teal); text-transform: uppercase; letter-spacing: .16em; font-size: 8px; }
.principles-band strong { font-family: var(--serif); font-weight: 500; font-size: 19px; margin-top: 5px; }
.principles-band > i { height: 44px; width: 1px; background: var(--gold); opacity: .55; }
.linked-mark { position: relative; height: 58px; }
.linked-mark span { position: absolute; width: 32px; height: 32px; border: 2px solid var(--navy); transform: rotate(45deg); left: 7px; top: 13px; }
.linked-mark span + span { border-color: var(--gold); left: 26px; }

.contact { background: var(--navy); color: #fff; }
.contact::before { content: ''; position: absolute; inset: 0; opacity: .055; background-image: url('assets/brand-background.png'); background-size: cover; background-position: center; filter: grayscale(1); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.contact-copy { padding-top: 25px; }
.contact-copy > p:not(.kicker) { color: rgba(255,255,255,.64); font-size: 16px; max-width: 480px; margin: 23px 0 35px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin: 28px 0; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); }
.contact-icon svg { width: 22px; fill: none; stroke: #fff; stroke-width: 1.4; }
.contact-detail small { display: block; color: #aac3c0; text-transform: uppercase; letter-spacing: .18em; font-size: 8px; margin-bottom: 3px; }
.contact-detail a { text-decoration: none; font-size: 16px; }
.brand-principles { margin-top: 55px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .16em; font-size: 8px; color: rgba(255,255,255,.58); }
.brand-principles i { width: 1px; height: 15px; background: var(--gold); }
.contact-form { background: var(--paper); color: var(--navy); padding: 42px; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.form-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading span { text-transform: uppercase; letter-spacing: .18em; font-size: 9px; color: var(--teal); }
.form-heading strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; color: #617184; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(10,35,69,.15); background: #fff; color: var(--navy); padding: 14px 15px; outline: 0; border-radius: 0; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(78,119,114,.10); }
.contact-form .invalid { border-color: #a33; }
.form-footer { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
.form-footer p { margin: 0; color: #718090; font-size: 10px; line-height: 1.5; }

.site-footer { background: #fff; padding: 34px 0; border-top: 1px solid rgba(10,35,69,.08); }
.footer-main { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 24px; }
.footer-brand { width: 170px; height: 56px; display: block; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-line { height: 1px; background: var(--teal); opacity: .35; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.footer-meta p { margin: 0; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 8px; }
.footer-meta a { text-decoration: none; font-size: 12px; }
.footer-meta span { color: #7a8793; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-card.reveal:nth-child(2), .value-card.reveal:nth-child(2) { transition-delay: .08s; }
.service-card.reveal:nth-child(3), .value-card.reveal:nth-child(3) { transition-delay: .16s; }
.service-card.reveal:nth-child(4), .value-card.reveal:nth-child(4) { transition-delay: .24s; }

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

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 860px); }
  .hero { padding-top: 128px; }
  .hero-grid, .contact-grid, .section-heading.split { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 760px; }
  .hero-brand { width: min(680px, 100%); margin: 20px auto 40px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { max-width: 700px; }
  .approach-track { gap: 28px; }
  .principles-band { grid-template-columns: 60px 1fr 1px 1fr; }
  .principles-band > div:nth-of-type(4), .principles-band > i:nth-of-type(2) { display: none; }
  .footer-main { grid-template-columns: 160px 1fr; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .section { padding: 82px 0; }
  .header-inner { height: 72px; }
  .brand { width: 156px; height: 52px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 72px; right: 0; left: 0; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 20px 30px rgba(10,35,69,.08); padding: 18px 24px 28px; flex-direction: column; align-items: stretch; gap: 0; transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(10,35,69,.08); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 1px solid var(--gold); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 120px 0 96px; }
  .hero h1 { font-size: clamp(45px, 13vw, 64px); }
  .hero-lead { font-size: 16px; }
  .logo-stage { min-height: 320px; padding: 28px; }
  .promise-card { position: relative; right: auto; bottom: auto; width: 100%; margin: -12px 0 0; }
  .scroll-cue { display: none; }
  .corner-squares, .hero-lines { opacity: .25; }
  .value-grid, .service-grid, .approach-track { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .service-card { min-height: auto; padding: 30px; }
  .track-line { left: 35px; right: auto; top: 35px; bottom: 35px; width: 1px; height: auto; }
  .step { text-align: left; display: grid; grid-template-columns: 70px 1fr; column-gap: 28px; align-items: start; }
  .step-dot { grid-row: 1 / span 3; margin: 0; box-shadow: 0 0 0 9px var(--paper); }
  .step-label { margin-top: 8px; }
  .step > p:last-child { margin: 0; max-width: 100%; }
  .principles-band { grid-template-columns: 1fr; gap: 19px; }
  .linked-mark { display: none; }
  .principles-band > i { display: block !important; width: 44px; height: 1px; }
  .principles-band > div:nth-of-type(4) { display: flex; }
  .contact-form { padding: 30px 24px; }
  .form-row, .form-footer { grid-template-columns: 1fr; }
  .form-heading { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-line { width: 100%; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 440px); }
  .section { padding: 70px 0; }
  .hero h1 { font-size: 44px; }
  .eyebrow { gap: 8px; }
  .eyebrow b { display: none; }
  .hero-actions .btn { width: 100%; }
  .logo-stage { min-height: 250px; padding: 18px; }
  .promise-card { padding: 20px; }
  .section-heading h2, .contact h2 { font-size: 38px; }
  .service-card h3 { font-size: 27px; }
  .contact-form { padding: 26px 18px; }
}
