:root {
  --navy: #0a1f3a;
  --navy-2: #122d52;
  --navy-3: #1b3d6e;
  --gold: #c69a36;
  --gold-deep: #a07a18;
  --gold-soft: #e9d49a;
  --ink: #11161d;
  --ink-2: #4b5663;
  --ink-3: #6b7785;
  --bg: #f9f7f2;
  --bg-2: #f1ecdf;
  --line: #e2dccc;
  --white: #ffffff;
  --max: 1180px;
  --radius: 12px;
  --shadow-sm: 0 2px 12px rgba(10, 31, 58, .06);
  --shadow: 0 12px 40px rgba(10, 31, 58, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 .4em;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-2); }
a { color: var(--gold-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ----- Top utility bar ----- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  letter-spacing: .03em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; gap: 24px; }
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: #fff; }
.topbar-meta { display: flex; gap: 24px; align-items: center; }
@media (max-width: 720px) {
  .topbar-meta .hide-mobile { display: none; }
}

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 247, 242, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 1.5rem; color: var(--navy);
  line-height: 1;
}
.brand:hover { color: var(--navy); }
.brand-mark { width: 44px; height: 44px; flex: none; object-fit: contain; display: block; }
.brand-mark-light { filter: invert(1) brightness(1.1); }
.brand-text { display: flex; flex-direction: column; }
.brand-text .name { font-size: 1.35rem; letter-spacing: .01em; }
.brand-text .tag { font-family: 'Inter', sans-serif; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; font-weight: 600; }

.site-header nav { display: flex; gap: 4px; align-items: center; }
.site-header nav a {
  color: var(--ink); padding: 10px 16px; border-radius: 6px;
  font-weight: 500; font-size: .95rem;
}
.site-header nav a:hover { background: var(--bg-2); color: var(--navy); }
.site-header nav a.cta {
  background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 4px;
  margin-left: 8px; letter-spacing: .03em;
}
.site-header nav a.cta:hover { background: var(--navy-3); color: #fff; }

@media (max-width: 860px) {
  .site-header nav a:not(.cta) { display: none; }
  .nav { height: 70px; }
}

/* ----- Hero ----- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: #f4ecd6;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg svg { width: 100%; height: 100%; display: block; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(198, 154, 54, .18), transparent 60%),
              linear-gradient(180deg, rgba(10, 31, 58, .35), rgba(10, 31, 58, .85));
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 140px 28px 160px;
  max-width: 980px;
}
.hero h1 {
  color: #fff;
  max-width: 18ch;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.lede {
  color: rgba(244, 236, 214, .88); font-size: 1.22rem; max-width: 56ch;
  margin-top: .5em; line-height: 1.6;
}
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); color: var(--navy); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); color: #fff; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

/* ----- Stat strip ----- */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 0; padding-bottom: 0;
}
.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.stat .num small { font-size: .55em; color: var(--gold-deep); margin-left: 2px; }
.stat .label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
@media (max-width: 720px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ----- Sections ----- */
.section { padding: 110px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); color: rgba(244,236,214,.88); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(244,236,214,.78); }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin: 0 0 18px;
}
.section-label::before {
  content: ""; width: 32px; height: 1px; background: var(--gold-deep);
}
.section-dark .section-label { color: var(--gold-soft); }
.section-dark .section-label::before { background: var(--gold); }

.two-col {
  display: grid; gap: 72px;
  grid-template-columns: .9fr 1.3fr;
  align-items: start;
}
.two-col h2 { max-width: 14ch; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { margin-top: 6px; }
.section-sub { color: var(--ink-2); font-size: 1.1rem; max-width: 56ch; margin: 0 auto; }
.section-dark .section-sub { color: rgba(244,236,214,.78); }

.prose p:last-child { margin-bottom: 0; }
.prose .pullquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

/* ----- Sectors grid ----- */
.sectors-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
}
.sector {
  background: var(--white);
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .15s ease;
}
.sector:hover { background: var(--bg); }
.sector-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--gold-deep);
  flex: none;
}
.sector-icon svg { width: 20px; height: 20px; }
.sector h4 { margin: 4px 0 0; font-size: .98rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
@media (max-width: 980px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ----- Services cards ----- */
.services-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; color: var(--gold-deep);
  display: block; margin-bottom: 10px; line-height: 1;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0; font-size: .98rem; }
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

/* ----- Team ----- */
.team-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-portrait {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 4 / 5;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-portrait img { transform: scale(1.015); }
.team-body {
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.team-body h3 { margin-bottom: 2px; }
.team-role {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  margin-bottom: 18px;
}
.team-bio { font-size: .96rem; margin-bottom: 18px; flex: 1; }
.team-contact {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: .92rem;
}
.team-contact a {
  color: var(--navy);
  font-weight: 500;
  word-break: break-all;
}
.team-contact a:hover { color: var(--gold-deep); }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ----- Approach numbered list ----- */
.approach-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 28px;
}
.approach-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}
.approach-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
  border-right: 1px solid rgba(244,236,214,.2);
  padding-right: 22px;
  font-weight: 500;
}
.approach-list h4 { color: #fff; margin-bottom: 4px; }
.approach-list p { margin: 0; color: rgba(244,236,214,.75); font-size: .98rem; }

/* ----- Contact section ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { margin-bottom: 8px; }
.contact-line {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.contact-line:last-child { border-bottom: none; }
.contact-line strong { color: var(--navy); font-weight: 600; min-width: 90px; }
.contact-line span, .contact-line a { color: var(--ink-2); }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ----- CTA banner ----- */
.cta-banner {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(198,154,54,.20), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #f4ecd6;
  text-align: center;
  padding: 96px 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(244,236,214,.8); margin: 0 auto 32px; max-width: 56ch; font-size: 1.1rem; }
.cta-inner { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ----- Footer ----- */
.site-footer {
  background: #060f1f; color: rgba(244,236,214,.7);
  padding: 64px 0 32px;
  font-size: .92rem;
}
.site-footer .brand { color: #fff; }
.site-footer .brand .tag { color: var(--gold-soft); }
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin: 14px 0 16px;
}
.footer-col a { color: rgba(244,236,214,.78); display: block; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: rgba(244,236,214,.6); max-width: 42ch; margin-top: 14px; }
.footer-meta {
  border-top: 1px solid rgba(244,236,214,.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
  color: rgba(244,236,214,.55);
}
.footer-meta a { color: rgba(244,236,214,.7); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}
