:root {
  --navy: #0b2038;
  --navy-2: #132f4f;
  --gold: #c8a45d;
  --gold-light: #e4c987;
  --cream: #f6f2e9;
  --white: #ffffff;
  --ink: #1f2a35;
  --muted: #66717d;
  --line: #dfe4e8;
  --shadow: 0 24px 60px rgba(7, 24, 43, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,32,56,.08);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: var(--navy); }
.brand-text small { color: var(--muted); font-size: .72rem; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; font-size: .9rem; font-weight: 600; }
.nav-button {
  background: var(--navy);
  color: var(--white);
  padding: 11px 17px;
  border-radius: 7px;
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,25,44,.97) 0%, rgba(11,32,56,.90) 56%, rgba(11,32,56,.72) 100%),
    radial-gradient(circle at 84% 20%, rgba(200,164,93,.23), transparent 30%),
    var(--navy);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(228,201,135,.18);
  border-radius: 50%;
  right: -130px;
  top: -190px;
  z-index: -1;
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: 70px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.eyebrow, .section-label, .card-kicker {
  display: inline-block;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold-light);
}
.section-label { color: #9a7534; }
.section-label.light { color: var(--gold-light); }
.hero h1, .section h2, .intro-strip h2, .final-cta h2, .modal h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.18;
  margin: 0;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -.035em;
}
.hero-intro {
  max-width: 760px;
  font-size: 1.16rem;
  margin: 28px 0 12px;
  color: #f4f6f8;
}
.hero-support { max-width: 710px; color: #cbd5df; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  border: 0;
  border-radius: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 21px;
  font-weight: 700;
  font-size: .91rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #142131; box-shadow: 0 12px 30px rgba(200,164,93,.20); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { background: var(--white); color: var(--navy); }
.button-secondary.dark { border: 1px solid var(--line); }
.button-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.45); }
.button-gold { background: var(--gold-light); color: var(--navy); }
.button-full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: #d9e1e8; font-size: .79rem; }
.trust-row span::before { content: "✓"; color: var(--gold-light); margin-right: 7px; font-weight: 700; }

.hero-card {
  background: rgba(255,255,255,.98);
  color: var(--ink);
  border-radius: 15px;
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.hero-card h2 { font-family: "Libre Baskerville", serif; font-size: 1.8rem; line-height: 1.25; color: var(--navy); margin: 0 0 14px; }
.hero-card p { color: var(--muted); }
.card-kicker { color: #9a7534 !important; }
.small-note { font-size: .77rem; margin: 15px 0 0; }

.intro-strip { background: var(--cream); padding: 58px 0; }
.intro-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-strip h2 { color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.55rem); }
.intro-strip p { margin: 0; color: #52606c; }

.section { padding: 96px 0; }
.section-heading { text-align: center; max-width: 810px; margin: 0 auto 44px; }
.section-heading h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  min-height: 265px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(11,32,56,.09); border-color: #cab889; }
.service-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-card .icon { color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .1em; }
.service-card h3 { margin: 35px 0 12px; font-family: "Libre Baskerville", serif; line-height: 1.25; color: var(--navy); }
.service-card.featured h3 { color: var(--white); }
.service-card p { margin: 0; font-size: .9rem; color: var(--muted); }
.service-card.featured p { color: #d7e0e8; }

.video-section { background: var(--navy); color: var(--white); }
.video-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.video-copy h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.video-copy p { color: #c8d3dd; max-width: 570px; }
.video-copy .button { margin: 12px 0 20px; }
.text-link { display: block; color: var(--gold-light); text-decoration: none; font-weight: 600; }
.video-preview {
  min-height: 380px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background:
    linear-gradient(rgba(8,29,50,.36), rgba(8,29,50,.78)),
    radial-gradient(circle at 45% 35%, #3f5f7c, #0c223a 70%);
  color: var(--white);
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 28px 65px rgba(0,0,0,.28);
}
.play-button { width: 86px; height: 86px; border-radius: 50%; background: var(--gold-light); color: var(--navy); display: grid; place-items: center; font-size: 1.6rem; padding-left: 5px; }
.video-caption { position: absolute; left: 25px; right: 25px; bottom: 22px; font-weight: 600; }


.contact2-section { background: #f8fafb; }
}




.contact-section { background: #f8fafb; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.35rem); }
.contact-copy p { color: var(--muted); }
.contact-details { margin-top: 34px; display: grid; gap: 18px; }
.contact-details div { border-left: 3px solid var(--gold); padding-left: 16px; }
.contact-details strong, .contact-details span { display: block; }
.contact-details span { color: var(--muted); font-size: .9rem; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 34px; box-shadow: 0 18px 45px rgba(11,32,56,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #cfd7de;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,93,.15); }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; color: var(--muted) !important; }
.consent input { width: auto; margin-top: 5px; }
.form-disclaimer { font-size: .72rem; color: var(--muted); margin-bottom: 0; }

.final-cta { padding: 72px 0; background: linear-gradient(115deg, #102b48, #071b30); color: var(--white); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.final-cta p { color: #cbd5df; max-width: 700px; margin-bottom: 0; }
.site-footer { background: #071726; color: #d7e0e8; padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: .35fr 1fr; gap: 50px; }
.footer-grid strong { color: var(--gold-light); }
.footer-grid p { margin: 7px 0 0; }
.footer-disclaimer { font-size: .7rem; color: #9eabb7; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,10,18,.82); backdrop-filter: blur(5px); }
.modal-dialog { position: relative; z-index: 1; width: min(900px, calc(100% - 30px)); max-height: calc(100vh - 40px); overflow: auto; margin: 20px auto; background: var(--white); border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.40); }
.modal-content { padding: 34px; }
.modal-close { position: absolute; right: 15px; top: 10px; border: 0; background: transparent; font-size: 2.2rem; color: var(--navy); cursor: pointer; z-index: 2; }
.modal h2 { color: var(--navy); margin-bottom: 22px; }
.video-embed { aspect-ratio: 16 / 9; background: #071726; border-radius: 9px; overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 980px) {
  .main-nav a:not(.nav-button) { display: none; }
  .hero-grid, .intro-strip-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand-text small { display: none; }
  .main-nav { gap: 8px; }
  .nav-button { padding: 9px 12px; font-size: .75rem !important; }
  .hero-grid { min-height: auto; padding-top: 64px; padding-bottom: 64px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 25px; }
  .section { padding: 72px 0; }
  .service-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .video-preview { min-height: 270px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px; }
  .modal-content { padding: 28px 20px 24px; }
}





























/* Read Bio link */
.bio-link {
  display: inline-block;
  margin-top: 10px;
  color: #b58a32;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.bio-link:hover,
.bio-link:focus {
  color: #8f6a20;
}

/* Biography modal */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bio-modal.is-open {
  display: flex;
}

.bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 35, 0.78);
  backdrop-filter: blur(3px);
}

.bio-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.bio-modal-content {
  padding: 38px;
}

.bio-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #12233f;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.bio-modal-close:hover,
.bio-modal-close:focus {
  color: #b58a32;
}

.bio-modal-content h2 {
  margin: 6px 45px 4px 0;
  color: #12233f;
  font-size: 32px;
}

.bio-title {
  margin: 0 0 22px;
  color: #687386;
  font-weight: 600;
  line-height: 1.5;
}

.bio-text p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.bio-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* Prevent page scrolling while popup is open */
body.bio-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .bio-modal {
    padding: 12px;
  }

  .bio-modal-content {
    padding: 30px 22px 24px;
  }

  .bio-modal-content h2 {
    font-size: 27px;
  }

  .bio-modal-actions .button {
    width: 100%;
    text-align: center;
  }
}










