﻿:root {
  --ink-950: #0a1525;
  --ink-900: #101f35;
  --ink-800: #1a3151;
  --steel-700: #425a75;
  --steel-600: #5b7087;
  --steel-500: #7f8fa3;
  --surface-100: #eef3f8;
  --surface-50: #f8fbfd;
  --white: #ffffff;
  --accent: #c03935;
  --accent-strong: #a22f2c;
  --line: #d5deea;
  --shadow-lg: 0 24px 60px rgba(8, 17, 30, 0.2);
  --shadow-sm: 0 12px 28px rgba(8, 17, 30, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --header-logo-height: 96px;
  --header-veteran-logo-height: 132px;
  --header-veteran-logo-width: 124px;
  --header-logo-height-mobile: 72px;
  --header-veteran-logo-height-mobile: 98px;
  --header-veteran-logo-width-mobile: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at top left, #ffffff 0%, #f2f6fa 55%, #edf3f8 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -220px;
  z-index: 100;
  background: var(--ink-950);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 253, 0.9);
  border-bottom: 1px solid rgba(16, 31, 53, 0.1);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 152px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  justify-self: start;
}

.brand img {
  height: var(--header-veteran-logo-height);
  width: var(--header-veteran-logo-width);
  object-fit: fill;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  grid-column: 3;
  justify-self: end;
}

.header-veteran-logo {
  height: var(--header-veteran-logo-height);
  width: var(--header-veteran-logo-width);
  object-fit: fill;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  gap: 1.4rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink-800);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(16, 31, 53, 0.2);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  display: block;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(192, 57, 53, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-strong);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 74vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  background: url("Images/Conference%20Room1.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(10, 21, 37, 0.38) 0%, rgba(10, 21, 37, 0.72) 65%, rgba(10, 21, 37, 0.82) 100%),
    linear-gradient(180deg, rgba(10, 21, 37, 0.24), rgba(10, 21, 37, 0.76));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6.2rem 0 5.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  max-width: min(980px, 90vw);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--steel-500);
  margin-bottom: 0.75rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  font-size: clamp(2rem, 5.1vw, 4.2rem);
  line-height: 1.14;
  max-width: 16ch;
  padding-bottom: 0.08em;
  margin: 0 auto 1rem;
}

.lead {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  max-width: 48ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.4rem;
  padding-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.trust-card p {
  margin: 0;
  color: var(--steel-600);
}

.section {
  padding: 5.8rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.3rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  margin-bottom: 0.8rem;
}

.section-head p {
  color: var(--steel-600);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid rgba(192, 57, 53, 0.55);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.service-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--steel-600);
}

.section-light {
  background: linear-gradient(180deg, #f7fbff 0%, #eff5fa 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.result-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.result-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.result-card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--ink-800);
}

.section-dark {
  background: linear-gradient(165deg, var(--ink-950), var(--ink-900));
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.capability {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.1rem;
}

.capability h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.capability p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.veteran-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: stretch;
}

.veteran-copy p {
  color: var(--steel-600);
}

.veteran-proof {
  margin-top: 1.2rem;
  background: var(--surface-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 1.2rem;
  align-items: start;
}

.veteran-proof img {
  width: 100%;
  max-width: 220px;
}

.veteran-proof-content {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.veteran-proof-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink-900);
}

.veteran-proof-content p {
  margin: 0;
  color: var(--steel-600);
}

.veteran-proof ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-800);
}

.veteran-proof li + li {
  margin-top: 0.45rem;
}

.veteran-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.veteran-proof-chips span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.34rem 0.62rem;
}

.veteran-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.veteran-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section-accent {
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f6fb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.contact-copy p {
  color: var(--steel-600);
}

.contact-details {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

.contact-details div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

.contact-details span {
  display: block;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--steel-500);
  margin-bottom: 0.2rem;
}

.contact-details a {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.88rem;
  font-weight: 500;
}

:is(.trust-card, .service-card, .result-card, .capability, .veteran-proof, .veteran-photo, .contact-details div, .contact-form) {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
  transform: translateY(0);
}

.result-card img,
.veteran-photo img {
  transition: transform 0.38s ease;
}

@media (hover: hover) and (pointer: fine) {
  :is(.trust-card, .service-card, .result-card, .veteran-proof, .veteran-photo, .contact-details div, .contact-form):hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 36px rgba(8, 17, 30, 0.18);
    border-color: rgba(16, 31, 53, 0.22);
  }

  .capability:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 32px rgba(4, 8, 18, 0.32);
  }

  .result-card:hover img,
  .veteran-photo:hover img {
    transform: scale(1.04);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #bec9d6;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--ink-900);
  background: #fbfdff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(192, 57, 53, 0.18);
  border-color: var(--accent);
}

.form-note {
  margin: 0.82rem 0 0;
  font-size: 0.92rem;
  color: var(--steel-600);
}

.thank-you-wrap {
  min-height: max(430px, calc(100vh - 360px));
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: min(760px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid rgba(192, 57, 53, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3.2vw, 2.3rem);
}

.thank-you-card h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin-bottom: 0.85rem;
}

.thank-you-card p {
  margin: 0 0 0.8rem;
  color: var(--steel-600);
  max-width: 56ch;
}

.thank-you-card p:last-of-type {
  margin-bottom: 0;
}

.thank-you-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.thank-you-secondary {
  color: var(--ink-800);
  background: rgba(16, 31, 53, 0.04);
  border: 1px solid rgba(16, 31, 53, 0.2);
  box-shadow: none;
}

.thank-you-secondary:hover,
.thank-you-secondary:focus-visible {
  background: rgba(16, 31, 53, 0.08);
}

.site-footer {
  background: var(--ink-950);
  color: #dce5ef;
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr auto;
  gap: 1.1rem;
  padding-bottom: 1.1rem;
}

.footer-brand img,
.footer-veteran img {
  width: 185px;
  margin-bottom: 0.8rem;
}

.footer-veteran {
  justify-self: end;
  align-self: start;
}

.site-footer h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fa6bf;
  margin-bottom: 0.65rem;
}

.site-footer a,
.site-footer span,
.footer-brand p {
  display: block;
  color: #dce5ef;
  margin: 0.4rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 229, 239, 0.16);
  min-height: 68px;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: #9ab0c8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .btn:hover,
  .btn:focus-visible {
    transition: none;
    transform: none;
  }

  :is(.trust-card, .service-card, .result-card, .capability, .veteran-proof, .veteran-photo, .contact-details div, .contact-form) {
    transition: none;
    transform: none;
  }

  .result-card img,
  .veteran-photo img {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .trust-grid,
  .service-grid,
  .results-grid,
  .capabilities,
  .contact-grid,
  .footer-inner,
  .veteran-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .veteran-copy {
    grid-column: 1 / -1;
  }

  .veteran-photo img {
    min-height: 360px;
  }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding-top: 0;
  }

  .brand {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    grid-column: 2;
    justify-self: end;
    align-self: center;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(248, 251, 253, 0.98);
    border-bottom: 1px solid rgba(16, 31, 53, 0.1);
    padding: 0.8rem 4vw 1rem;
    display: grid;
    justify-items: start;
    gap: 0.78rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 6rem 0 4rem;
  }

  .trust-strip {
    margin-top: -1.2rem;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.6rem 0;
  }

  .trust-grid,
  .service-grid,
  .results-grid,
  .capabilities,
  .contact-grid,
  .footer-inner,
  .veteran-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .veteran-proof {
    grid-template-columns: 1fr;
  }

  .contact-details a {
    font-size: 1.08rem;
  }

  .footer-veteran {
    justify-self: start;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
