/* ==========================================================================
   Frontline Readiness Training Group (FRTG)
   Brand: navy #1B2A41 · slate #3D5A73 · gold #C9A227 · off-white #F5F3EE
   ========================================================================== */

:root {
  --navy: #1B2A41;
  --navy-deep: #0F1A28;
  --slate: #3D5A73;
  --slate-light: #5A7A94;
  --gold: #C9A227;
  --gold-hover: #D4B03A;
  --gold-muted: rgba(201, 162, 39, 0.15);
  --off-white: #F5F3EE;
  --white: #FFFFFF;
  --text: #1B2A41;
  --text-muted: #4A5568;
  --border: rgba(27, 42, 65, 0.12);
  --shadow: 0 4px 24px rgba(15, 26, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 26, 40, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
  --header-h: 76px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--slate);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--off-white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section--navy .eyebrow {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section--navy .lead {
  color: rgba(245, 243, 238, 0.85);
}

p + p {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy-deep);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(245, 243, 238, 0.4);
}

.btn--ghost:hover {
  background: rgba(245, 243, 238, 0.1);
  border-color: var(--off-white);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--off-white);
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-h);
  gap: 1.5rem;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--navy);
  text-decoration: none;
}

.logo-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

/* Absolute only in the header — do not apply to footer logo (was floating over hero) */
.header-inner > .logo-link {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-text span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
  max-width: 160px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  /* Keep centered links clear of absolute logo (left) and Contact (right) */
  padding-inline: clamp(7.5rem, 18vw, 14rem);
  box-sizing: border-box;
}

.nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--gold-muted);
  color: var(--navy);
  text-decoration: none;
}

/* Contact sits on the right; main links stay optically centered */
.nav .btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
  z-index: 2;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--slate) 100%);
  color: var(--off-white);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(201, 162, 39, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(61, 90, 115, 0.4), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero .lead {
  color: rgba(245, 243, 238, 0.88);
  max-width: 34rem;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 243, 238, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245, 243, 238, 0.9);
}

.hero-card li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   Cards / Grids
   -------------------------------------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card--flat {
  box-shadow: none;
  background: var(--off-white);
}

.card--navy {
  background: var(--navy);
  border-color: transparent;
  color: var(--off-white);
}

.card--navy h3 {
  color: var(--white);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: 10px;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

.card--navy p {
  color: rgba(245, 243, 238, 0.8);
}

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
}

.card a.card-link:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Stats / Proof bar
   -------------------------------------------------------------------------- */

.proof-bar {
  background: var(--off-white);
  border-block: 1px solid var(--border);
  padding: 2rem 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.proof-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Split / Feature
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.split-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.split-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  margin-top: 0.15rem;
}

/* Home page T1–T4 service path list */
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.tier-list li a {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.tier-list li a:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

.tier-list__code {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.4rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 8px;
  line-height: 1;
}

.tier-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-top: 0.15rem;
}

.tier-list__body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.tier-list__body span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.feature-panel {
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.feature-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
  pointer-events: none;
}

.feature-panel h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-panel p {
  color: rgba(245, 243, 238, 0.85);
  position: relative;
  z-index: 1;
}

.feature-panel .tagline-quote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 243, 238, 0.15);
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Service detail
   -------------------------------------------------------------------------- */

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-block h3 {
  margin-bottom: 0.5rem;
}

.service-block p {
  color: var(--text-muted);
  max-width: 56rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  background: var(--gold-muted);
  color: var(--navy);
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Verticals
   -------------------------------------------------------------------------- */

.vertical-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vertical-card .card-icon {
  font-size: 1.1rem;
}

.vertical-card h3 {
  margin-bottom: 0.65rem;
}

.vertical-card .hook {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Timeline / Process
   -------------------------------------------------------------------------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   About credentials
   -------------------------------------------------------------------------- */

.cred-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cred-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cred-item .mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.cred-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.cred-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #243B55);
  color: var(--off-white);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: rgba(245, 243, 238, 0.85);
}

.cta-band .btn-group {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

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

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info .lead {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.25rem;
}

.contact-detail dd {
  font-weight: 600;
  color: var(--navy);
}

.contact-detail a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--gold);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(61, 90, 115, 0.15);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: 6px;
  color: #1b5e20;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(183, 28, 28, 0.08);
  border: 1px solid rgba(183, 28, 28, 0.28);
  border-radius: 6px;
  color: #7f1d1d;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-error.is-visible {
  display: block;
}

.form-error a {
  color: #7f1d1d;
}

/* Honeypot field — hidden from users, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-portrait {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--navy);
}

.about-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-intro-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.about-narrative {
  max-width: 46rem;
}

.about-prose {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-prose p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.about-prose strong {
  color: var(--navy);
}

@media (max-width: 960px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-portrait {
    max-width: 360px;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%, var(--slate) 100%);
  color: var(--off-white);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 36rem;
  color: rgba(245, 243, 238, 0.88);
}

.breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: rgba(245, 243, 238, 0.55);
}

.breadcrumb a {
  color: rgba(245, 243, 238, 0.75);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 243, 238, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo-link {
  position: static;
  transform: none;
  color: var(--white);
}

.footer-brand .logo-link img {
  width: 44px;
  height: 44px;
}

.footer-brand .logo-link:hover {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: rgba(245, 243, 238, 0.55);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .tagline {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(245, 243, 238, 0.7);
  text-decoration: none;
  font-size: 0.925rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 243, 238, 0.1);
  font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   Service areas (local SEO pages)
   -------------------------------------------------------------------------- */

.area-card,
.tier-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.area-card .btn,
.tier-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.area-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.25rem 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.area-highlights li {
  padding-left: 1.15rem;
  position: relative;
}

.area-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.city-tags li {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.muted-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 48rem;
}

.area-link-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.area-link-card:hover {
  color: inherit;
  border-color: rgba(201, 162, 39, 0.45);
}

.area-link-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.area-link-card p {
  color: var(--text-muted);
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 48rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.section--alt .faq-item {
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-right: 2.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .logo-text span {
    display: none;
  }

  .nav a {
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
  }

  .nav .btn {
    padding: 0.55rem 0.9rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .process,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Keep hero copy first on mobile; "What we train" follows under the readiness text */
  .hero-grid > :first-child {
    order: 0;
  }

  .hero-card {
    order: 1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .header-inner > .logo-link {
    position: static;
    transform: none;
  }

  .nav-toggle {
    display: flex;
    position: static;
    transform: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding: 1rem;
    padding-inline: 1rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: var(--shadow-lg);
  }

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

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav .btn {
    position: static;
    transform: none;
    margin: 0.5rem 0 0;
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  .logo-text span {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .process,
  .proof-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
