:root {
  --navy: #1A2A4A;
  --navy-mid: #22345a;
  --navy-deep: #111d33;
  --gold: #C9A84C;
  --gold-hover: #a8863a;
  --off-white: #F8F5EF;
  --body-on-light: #2a3a5a;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Barlow', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-sans);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); text-decoration: underline; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout helpers */
.container { max-width: 1100px; margin: 0 auto; }
.container--medium { max-width: 1000px; }
.container--narrow { max-width: 760px; }
.container--narrow-sm { max-width: 680px; }
.center { text-align: center; }
.section { padding: 96px 40px; }
.section--light { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--navy-deep { background: var(--navy-mid); }
.section--bordered { border-top: 1px solid rgba(26,42,74,0.1); }
.section-head { margin-bottom: 60px; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--hero {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 44px;
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 36px;
}
.heading--on-navy { color: var(--off-white); }
.heading--sm { font-size: clamp(26px, 3.5vw, 40px); line-height: 1.25; margin-bottom: 28px; }

.body-copy {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--body-on-light);
  text-wrap: pretty;
}
.body-copy--wide { max-width: 780px; margin: 0 auto; }
.body-copy--stacked { margin-bottom: 32px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { text-decoration: none; }
.btn--gold { color: var(--navy); background: var(--gold); }
.btn--gold:hover { background: var(--gold-hover); color: var(--navy); }
.btn--large { font-size: 14px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { height: 42px; width: auto; }
.nav .btn { font-size: 13px; padding: 9px 22px; }

/* HERO */
.hero {
  background: var(--navy);
  padding: 100px 40px 90px;
  text-align: center;
  animation: fadeUp 0.7s ease both;
}
.hero__inner { max-width: 800px; margin: 0 auto; }
.hero__logo { width: min(440px, 90%); height: auto; margin: 0 auto 20px; }
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--off-white);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.hero__subhead {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,245,239,0.82);
  max-width: 680px;
  margin: 0 auto 48px;
  text-wrap: pretty;
}

.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 40%, var(--gold) 60%, var(--navy) 100%);
}

/* SERVICES CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(201,168,76,0.2);
}
.card {
  background: var(--navy);
  padding: 44px 36px;
  border-top: 3px solid var(--gold);
}
.card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 18px;
  line-height: 1.3;
}
.card__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248,245,239,0.75);
  text-wrap: pretty;
}

/* STATS STRIP */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 48px auto 0;
  max-width: 680px;
  border: 1px solid rgba(26,42,74,0.12);
  list-style: none;
}
.stats-strip__item {
  flex: 1 1 160px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(26,42,74,0.1);
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}
.stats-strip__number--gold { color: var(--gold); }
.stats-strip__label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a7a8a;
  margin-top: 4px;
}

/* DIFFERENTIATORS */
.differentiators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border: 1px solid rgba(26,42,74,0.15);
  margin-top: 56px;
  list-style: none;
}
.differentiators__item {
  padding: 36px 30px;
  text-align: center;
  border-right: 1px solid rgba(26,42,74,0.12);
}
.differentiators__item:last-child { border-right: none; }
.differentiators__rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.differentiators__label {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.audience-card {
  background: rgba(248,245,239,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 48px 40px;
}
.audience-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.audience-card__body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248,245,239,0.82);
  text-wrap: pretty;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 52px;
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.55);
}
.field__input {
  background: rgba(248,245,239,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--off-white);
  outline: none;
  width: 100%;
}
.field__input--textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  margin-bottom: 60px;
}
.contact-details__link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
}
.contact-details__sep { color: rgba(248,245,239,0.3); font-size: 15px; }

.closing-line {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(248,245,239,0.65);
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  padding: 48px 40px;
  text-align: center;
}
.footer__logo { height: 52px; width: auto; margin: 0 auto 24px; opacity: 0.9; }
.footer__tagline {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.5);
  margin-bottom: 10px;
}
.footer__meta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(248,245,239,0.4);
  margin-bottom: 8px;
}
.footer__meta--muted { color: rgba(248,245,239,0.35); margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { animation: none; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav .btn { font-size: 11px; padding: 8px 14px; }
  .section { padding: 64px 24px; }
  .hero { padding: 64px 24px 56px; }
  .contact-form__row { grid-template-columns: 1fr; }
}
