/* ═══════════════════════════════════════════════
   Mitten Talent Solutions — styles.css
   Brand palette: Navy / Gold / Bronze / White
   Clean consolidated version - founder fixed / process restored
   ═══════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --navy:       #00274C;
  --navy-mid:   #003361;
  --navy-dk:    #001830;
  --gold:       #FDC36E;
  --gold-lt:    #FCDCA0;
  --gold-md:    #F0AD4B;
  --bronze:     #975622;
  --bronze-dk:  #612F0B;
  --white:      #FFFFFF;
  --off:        #F7F6F3;
  --lgray:      #ECEEF1;
  --txt:        #0C1A27;
  --txt2:       #3A4F63;
  --txt3:       #6B7D8F;
  --bdr:        #D4DAE0;
  --r:          6px;
  --r-sm:       4px;
  --max:        1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--txt);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  width: auto;
  height: auto;
}

/* ── LAYOUT HELPERS ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.wrap-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

.sec {
  padding: 84px 28px;
}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.eyebrow-c {
  display: block;
  text-align: center;
}

.ttl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

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

.dek {
  font-size: 15.5px;
  color: var(--txt2);
  line-height: 1.72;
  margin-bottom: 44px;
  max-width: 560px;
}

.dek-c {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ heading bottom spacing */
.faq-heading-spacer {
  margin-bottom: 38px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(253, 195, 110, 0.35);
  outline: none;
}

.btn-gold-lg {
  font-size: 15px;
  padding: 14px 34px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.btn-navy-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(0, 39, 76, 0.3);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-navy-outline:hover,
.btn-navy-outline:focus-visible {
  background: var(--navy);
  color: var(--white);
  outline: none;
}

/* ── NAVIGATION ── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
}

#site-nav::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze-dk), var(--gold), var(--bronze-dk));
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Header logo badge */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  background: #F8F6F1;
  border: 1px solid rgba(253, 195, 110, 0.45);
  border-radius: 9px;
  padding: 5px 11px;
  min-width: 145px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.nav-logo:hover,
.nav-logo:focus-visible {
  border-color: rgba(253, 195, 110, 0.75);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.nav-logo img {
  height: 46px;
  width: auto;
  max-width: 158px;
  object-fit: contain;
  display: block;
}

/* Hidden by default; revealed by script.js on image error */
.nav-logo-fallback {
  display: none;
  flex-direction: column;
}

.nav-logo-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  color: var(--bronze);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
  outline: none;
}

.nav-cta-btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 19px;
  border-radius: var(--r-sm);
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
  background: var(--gold-lt);
  transform: translateY(-1px);
  outline: 2px solid var(--gold-lt);
  outline-offset: 2px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 3px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

/* Mobile drawer */
#mob-drawer {
  display: none;
  background: var(--navy-dk);
  padding: 4px 0 20px;
}

#mob-drawer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  padding: 11px 28px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

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

.mob-cta-wrap {
  padding: 16px 28px 0;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 100px 28px 90px;
  position: relative;
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(253, 195, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(253, 195, 110, 0.3), transparent);
}

.hero-in {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 195, 110, 0.1);
  border: 1px solid rgba(253, 195, 110, 0.22);
  color: rgba(252, 220, 160, 0.9);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.74;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CREDIBILITY STRIP ── */
.strip {
  background: #001E3A;
  border-bottom: 1px solid rgba(253, 195, 110, 0.12);
}

.strip-in {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  justify-content: center;
  align-items: center;
}

.s-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}

.s-item + .s-item {
  border-left: none;
}

.s-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-md);
  flex-shrink: 0;
}

/* ── WHO WE HELP ── */
#who-we-help .eyebrow {
  display: block;
  text-align: center;
}

#who-we-help .ttl {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#who-we-help .dek {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.hcard {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px 20px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.hcard:hover {
  border-color: var(--gold-md);
  transform: translateY(-3px);
}

.hcard-ico {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}

.hcard-ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hcard h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  text-align: center;
}

.hcard p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.62;
  text-align: left;
}

/* Secondary candidate card — visually understated, icon consistent */
.hcard-sec {
  border-style: dashed;
  background: var(--off);
}

.hcard-sec .hcard-ico {
  background: var(--navy);
  border: none;
}

.hcard-sec .hcard-ico svg {
  stroke: var(--gold);
}

.hcard-sec h3 {
  color: var(--navy);
  font-weight: 600;
}

.hcard-sec p {
  font-size: 12.5px;
  color: var(--txt2);
}

/* ── SERVICES ── */
.bg-off {
  background: var(--off);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.scard {
  grid-column: span 2;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.svc-grid .scard:nth-child(4) {
  grid-column: 2 / span 2;
}

.svc-grid .scard:nth-child(5) {
  grid-column: 4 / span 2;
}

.scard:hover {
  border-color: var(--gold-md);
  box-shadow: 0 6px 24px rgba(0, 39, 76, 0.08);
}

.scard h3.scard-num {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 8px 14px;
  background: var(--navy);
  color: var(--gold-md);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.scard:hover h3.scard-num {
  color: var(--gold);
}

.scard p {
  font-size: 13.5px;
  color: var(--txt2);
  line-height: 1.67;
  margin-bottom: auto;
  padding-bottom: 14px;
  text-align: left;
}

.scard-foot {
  font-size: 12.5px;
  color: var(--txt3);
  border-top: 1px solid var(--bdr);
  padding-top: 12px;
  margin-top: auto;
  line-height: 1.55;
  text-align: left;
}

.scard-foot strong {
  color: var(--bronze);
  font-weight: 600;
}

/* ── WHY MITTEN ── */
#why-mitten .eyebrow {
  display: block;
  text-align: center;
}

#why-mitten .ttl {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#why-mitten .dek {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

.why-grid {
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.witem {
  padding: 28px 26px;
  border-bottom: 1px solid var(--bdr);
  border-right: 1px solid var(--bdr);
  text-align: left;
  transition: background 0.2s;
}

.witem:hover {
  background: var(--off);
}

.witem:nth-child(even) {
  border-right: none;
}

.witem:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-grid .witem h3.witem-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 8px 14px;
  background: var(--navy);
  color: var(--gold-md);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.why-grid .witem:hover h3.witem-badge {
  color: var(--gold);
}

.witem p {
  font-size: 13.5px;
  color: var(--txt2);
  line-height: 1.62;
  text-align: left;
}

/* Hide old number styling if an old .wnum element remains */
.witem .wnum {
  display: none;
}

/* ── FOUNDER SECTION ── */
.founder-sec {
  background: var(--white);
  border-top: 1px solid var(--bdr);
}

.founder-panel {
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--white), var(--off));
  padding: 44px 34px;
}

.founder-intro {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 38px;
  align-items: center;
}

.founder-photo-wrap {
  background: var(--navy);
  border: 1.5px solid rgba(253, 195, 110, 0.38);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 12px 28px rgba(0, 39, 76, 0.14);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
}

.founder-copy .eyebrow {
  display: inline-block;
}

.founder-copy .ttl {
  max-width: 650px;
}

.founder-copy .dek {
  max-width: 620px;
  margin-bottom: 0;
}

.founder-copy-extra {
  margin-top: 14px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.founder-item {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 22px 20px;
}

.founder-item h3 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 7px 12px;
  background: var(--navy);
  color: var(--gold-md);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.founder-item p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.65;
  text-align: left;
}

/* ── PROCESS ── */
.bg-navy {
  background: var(--navy);
}

.bg-navy .eyebrow {
  color: rgba(253, 195, 110, 0.8);
}

.bg-navy .ttl {
  color: var(--white);
}

.bg-navy .dek {
  color: rgba(255, 255, 255, 0.58);
}

#process .eyebrow {
  display: block;
  text-align: center;
}

#process .ttl {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#process .dek {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(253, 195, 110, 0.12);
}

.pstep {
  padding: 32px 24px 28px;
  border-right: 1px solid rgba(253, 195, 110, 0.12);
  text-align: left;
}

.pstep:last-child {
  border-right: none;
}

.pstep .pn {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  color: rgba(253, 195, 110, 0.32);
  border-radius: 0;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-shadow: 0 0 18px rgba(253, 195, 110, 0.08);
}

.pstep:hover .pn {
  color: rgba(253, 195, 110, 0.48);
}

.pstep .plbl {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  background: transparent;
  color: var(--gold);
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
}

.pstep h3 {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  background: transparent;
  color: var(--white);
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.28;
  text-align: left;
}

.pstep:hover h3 {
  color: var(--white);
}

.pstep p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.62;
  text-align: left;
}

/* ── PUBLIC SECTOR ── */
.ps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ps-body {
  font-size: 15px;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.ps-tag {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  line-height: 1;
}

.ps-panel {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: var(--navy);
  border-radius: var(--r);
  padding: 30px 28px;
}

.ps-panel-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ps-panel p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
  margin-bottom: 12px;
}

.ps-panel p:last-child {
  margin-bottom: 0;
}

.ps-panel strong {
  color: rgba(252, 220, 160, 0.88);
  font-weight: 500;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 72px 28px;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze-dk), var(--gold), var(--bronze-dk));
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 490px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── CANDIDATE SECTION ── */
.cand-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  padding: 52px 28px;
}

.cand-in {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cand-in h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--txt2);
  margin-bottom: 9px;
}

.cand-in p {
  font-size: 14px;
  color: var(--txt3);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.fi {
  border-bottom: 1px solid var(--bdr);
}

.fq {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

.fq:hover {
  color: var(--bronze);
}

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

.fq-icon {
  font-size: 20px;
  color: var(--gold-md);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}

.fa {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.fa.is-open {
  max-height: 400px;
}

.fa-body {
  padding: 0 2px 16px;
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.72;
}

/* ── CONTACT ── */
.contact-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.ci h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ci p {
  font-size: 14px;
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 22px;
}

.cdetail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--txt2);
  margin-bottom: 9px;
}

.cdetail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ci-note {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--txt3);
  line-height: 1.65;
}

/* Form */

.hidden-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fg {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--txt2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  color: var(--txt3);
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--bdr);
  border-radius: 5px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--txt);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 39, 76, 0.08);
}

textarea {
  height: 106px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--navy-mid);
  transform: translateY(-1px);
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* ── FOOTER ── */
footer {
  background: #001020;
  border-top: 2px solid var(--bronze-dk);
}

.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 28px 28px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 44px;
}

/* Footer logo badge */
.foot-logo {
  box-sizing: content-box;
  height: 38px;
  width: auto;
  display: block;
  background: #F8F6F1;
  border: 1px solid rgba(253, 195, 110, 0.35);
  border-radius: 10px;
  padding: 7px 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  margin-bottom: 14px;
}

/* Hidden by default; revealed by script.js on image error */
.fb-name {
  display: none;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.fb-tagline {
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
  margin-bottom: 18px;
}

.fb a {
  display: block;
  font-size: 13px;
  color: rgba(253, 195, 110, 0.6);
  margin-bottom: 6px;
  transition: color 0.2s;
}

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

/* Footer section labels — paragraph, not heading */
.fc-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(253, 195, 110, 0.45);
  margin-bottom: 14px;
}

.fc a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.fc a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.foot-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.foot-bot p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.26);
}


/* ── THANK YOU PAGE ── */
.thank-you-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off);
}

.thank-you-panel {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 46px 34px;
  box-shadow: 0 14px 34px rgba(0, 39, 76, 0.08);
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .pstep {
    border-right: none;
    border-bottom: 1px solid rgba(253, 195, 110, 0.12);
  }

  .pstep:last-child {
    border-bottom: none;
  }

  .ps-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-grid .scard {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .founder-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-copy .eyebrow {
    display: block;
    text-align: center;
  }

  .founder-copy .ttl,
  .founder-copy .dek {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .strip-in {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s-item {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .witem {
    border-right: none;
  }

  .witem:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--bdr);
  }

  .witem:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 60px 20px;
  }

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

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

  .svc-grid .scard {
    grid-column: auto;
  }

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

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

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

  .hero {
    padding: 72px 20px 68px;
  }

  .nav-logo {
    padding: 6px 9px;
    min-width: 130px;
    border-radius: 8px;
  }

  .nav-logo img {
    height: 42px;
    max-width: 130px;
  }

  .foot-logo {
    height: 34px;
    padding: 6px 9px;
  }
}


@media (max-width: 760px) {
  .founder-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-copy .eyebrow {
    display: block;
    text-align: center;
  }

  .founder-copy .ttl,
  .founder-copy .dek {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .founder-grid,
  .cand-services {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    padding: 34px 24px;
  }
}

@media (max-width: 520px) {
  .strip-in {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }
}


/* ── PROFESSIONAL / RESUME SERVICES ── */
.cand-sec {
  background: var(--off);
  border-top: 1px solid var(--bdr);
  padding: 58px 28px;
}

.cand-in {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cand-in h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cand-in > p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 14px;
  color: var(--txt3);
  line-height: 1.7;
}

.cand-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.cand-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px 24px;
  text-align: left;
}

.cand-card h3 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 8px 14px;
  background: var(--navy);
  color: var(--gold-md);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.cand-card p {
  font-size: 13.5px;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cand-card .btn-navy-outline {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ── CONTACT FORM READINESS ── */
.cdetail a {
  color: var(--txt2);
  transition: color 0.2s;
}

.cdetail a:hover,
.cdetail a:focus-visible {
  color: var(--bronze);
  outline: none;
}

.form-privacy {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--txt3);
  line-height: 1.55;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  color: var(--txt2);
  font-size: 13px;
  line-height: 1.55;
  border-radius: var(--r-sm);
}

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

/* ═══════════════════════════════════════════════
   FUTURE OVERRIDES
   Add any new temporary edits below this line.
   Once confirmed, fold them into the main sections.
   ═══════════════════════════════════════════════ */
