*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #18160f;
  --ink-soft:   #2f2c22;
  --cream:      #f4efe3;
  --warm-white: #faf8f3;
  --gold:       #9e7c2e;
  --gold-light: #c4a050;
  --gold-glow:  rgba(158,124,46,0.15);
  --stone:      #7a7265;
  --stone-lt:   #b0a898;
  --rule:       rgba(24,22,15,0.13);
  --rule-gold:  rgba(158,124,46,0.3);
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── SHIELD SVG (reused inline) ─── */
/* used via <svg> tags throughout */

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(250,248,243,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.nav-brand svg { width: 24px; height: 28px; }
.nav-brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
  margin-left: 4px;
}

.nav-right {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--ink); }

.nav-join {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm-white);
  background: var(--ink);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.25s;
}
.nav-join:hover { background: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 52px 80px;
  position: relative;
  overflow: hidden;
}

/* Fine crosshatch texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(158,124,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158,124,46,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Giant background shield watermark */
.hero-shield-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 790px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero-kicker {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-kicker-line {
  width: 32px; height: 1px; background: var(--gold-light);
}
.hero-kicker-text {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.92;
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-h1-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(244,239,227,0.38);
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244,239,227,0.62);
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 24px;
  opacity: 0; animation: fadeUp 0.7s ease 0.85s forwards;
}

.btn-primary {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold-light);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #d4b060; transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244,239,227,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,239,227,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(244,239,227,0.5); }

/* Team size callout */
.hero-team-badge {
  position: absolute;
  right: 52px; bottom: 72px;
  text-align: right;
  opacity: 0; animation: fadeUp 0.7s ease 1s forwards;
}
.hero-team-num {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(158,124,46,0.18);
  line-height: 1;
}
.hero-team-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* ─── DIVIDER BAND ─── */
.band {
  background: var(--gold);
  padding: 0 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.band-items {
  display: flex; align-items: center; gap: 0;
  width: 100%;
}
.band-item {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding: 0 28px;
  border-right: 1px solid rgba(24,22,15,0.2);
  white-space: nowrap;
}
.band-item:first-child { padding-left: 0; }
.band-item:last-child { border-right: none; }

/* ─── MISSION SECTION ─── */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.mission-left {
  background: var(--cream);
  padding: 90px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-right {
  background: var(--ink-soft);
  padding: 90px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mission-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(158,124,46,0.08), transparent);
  pointer-events: none;
}

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.63rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  display: block; width: 22px; height: 1px;
  background: var(--gold);
}

.mission-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 24px;
}

.mission-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 32px;
}

.mission-h2-light {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 24px;
}

.mission-body-light {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone-lt);
  font-weight: 300;
  margin-bottom: 32px;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.mstat {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.mstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.mstat-l {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.mission-quote {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-top: 4px;
}
.mission-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--stone-lt);
  line-height: 1.75;
}

/* ─── WHO WE SERVE ─── */
.serve-section {
  background: var(--warm-white);
  padding: 100px 52px;
}
.serve-header {
  text-align: center;
  margin-bottom: 72px;
}
.serve-header .eyebrow { justify-content: center; }
.serve-header .eyebrow::before { display: none; }
.serve-header .eyebrow::after {
  content: '';
  display: block; width: 22px; height: 1px;
  background: var(--gold);
}
.serve-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.serve-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

.serve-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 1200px;
  margin: 0 auto;
}

.serve-card {
  background: var(--warm-white);
  padding: 52px 44px;
  position: relative;
  transition: background 0.3s;
}
.serve-card:hover { background: var(--cream); }

.serve-icon {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: var(--gold);
}

.serve-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.serve-card-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.serve-rule {
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.serve-card-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 28px;
}
.serve-list {
  list-style: none;
}
.serve-list li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  line-height: 1.4;
}
.serve-list li:last-child { border-bottom: none; }
.serve-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

/* ─── 4 ELEMENTS ─── */
.elements-section {
  background: var(--ink);
  padding: 100px 52px;
  position: relative;
  overflow: hidden;
}
.elements-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(158,124,46,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158,124,46,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.elements-header {
  text-align: center;
  margin-bottom: 72px;
}
.elements-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.63rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.elements-eyebrow::before, .elements-eyebrow::after {
  content: ''; display: block;
  width: 22px; height: 1px;
  background: var(--gold-light);
}
.elements-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.elements-sub {
  font-size: 1rem;
  color: var(--stone-lt);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.el-card {
  background: rgba(24,22,15,0.95);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.el-card:hover { background: rgba(40,36,24,0.95); }

/* Gold top border on hover */
.el-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.el-card:hover::before { transform: scaleX(1); }

.el-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute; top: 28px; right: 36px;
  transition: color 0.35s;
  user-select: none;
}
.el-card:hover .el-num { color: rgba(158,124,46,0.12); }

.el-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  border: 1px solid rgba(158,124,46,0.3);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.el-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 6px;
}

.el-hours {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--stone-lt);
  font-weight: 300;
  margin-bottom: 22px;
}

.el-rule {
  width: 36px; height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}

.el-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--stone-lt);
  font-weight: 300;
  margin-bottom: 28px;
}

.el-skills {
  list-style: none;
  margin-bottom: 28px;
}
.el-skills li {
  font-size: 0.84rem;
  color: rgba(244,239,227,0.75);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  line-height: 1.4;
}
.el-skills li:last-child { border-bottom: none; }
.el-skills li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
}

.el-focus {
  background: rgba(158,124,46,0.07);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
}
.el-focus-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
}
.el-focus p {
  font-size: 0.86rem;
  color: var(--stone-lt);
  font-style: italic;
  line-height: 1.65;
}

/* ─── SITUATIONAL AWARENESS SPOTLIGHT ─── */
.sa-section {
  background: var(--cream);
  padding: 100px 52px;
}

.sa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sa-left {}

.sa-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
}

.sa-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 40px;
}

.sa-contexts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.sa-ctx {
  background: var(--cream);
  padding: 0;
  transition: background 0.3s;
}
.sa-ctx:hover { background: #ede6d6; }

.sa-ctx-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.sa-ctx-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.sa-ctx-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.sa-ctx-arrow {
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}

.sa-ctx-body {
  display: none;
  padding: 0 28px 24px 28px;
}
.sa-ctx.open .sa-ctx-body { display: block; }
.sa-ctx.open { background: #ede6d6; }

.sa-ctx-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 16px;
}
.sa-ctx-list {
  list-style: none;
}
.sa-ctx-list li {
  font-size: 0.84rem;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.4;
}
.sa-ctx-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 600;
}

.sa-right {}

.sa-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-highlight {
  background: var(--ink);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.sa-highlight::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}
.sa-highlight-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.sa-highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone-lt);
  line-height: 1.75;
}
.sa-highlight-text strong {
  color: var(--cream);
  font-style: normal;
}

.sa-stat-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sa-stat {
  background: var(--warm-white);
  border: 1px solid var(--rule);
  padding: 28px;
}
.sa-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.sa-stat-l {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── RECRUIT SECTION ─── */
.recruit-section {
  background: var(--ink);
  padding: 100px 52px;
  position: relative;
  overflow: hidden;
}
.recruit-section::before {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 600px; height: 700px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 4 L93 20 L93 60 C93 90 74 110 50 117 C26 110 7 90 7 60 L7 20 Z' fill='none' stroke='%239e7c2e' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  opacity: 0.07; pointer-events: none;
}

.recruit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.recruit-left {}
.recruit-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.63rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 22px;
}
.recruit-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px;
  background: var(--gold-light);
}
.recruit-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.recruit-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone-lt);
  font-weight: 300;
  margin-bottom: 40px;
}

.qualities {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.quality {
  background: rgba(24,22,15,0.9);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.25s;
}
.quality:hover { background: rgba(40,36,24,0.9); }
.quality-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(158,124,46,0.3);
  flex-shrink: 0;
  line-height: 1.2;
}
.quality-text {}
.quality-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.quality-desc {
  font-size: 0.82rem;
  color: var(--stone-lt);
  line-height: 1.65;
  font-weight: 300;
}

.recruit-right {
  position: relative;
}

.recruit-form-card {
  background: var(--warm-white);
  padding: 52px 48px;
  border-top: 3px solid var(--gold);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.88rem;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 36px;
  font-style: italic;
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  height: 100px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-interest {
  margin-bottom: 24px;
}
.form-interest-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-item span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.form-submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold); color: var(--ink); }

/* ─── PLEDGE ─── */
.pledge {
  background: var(--cream);
  padding: 90px 52px;
  text-align: center;
}
.pledge-inner {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  padding: 64px;
  position: relative;
}
.pledge-inner::before {
  content: '';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold);
}
.pledge-logo {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.pledge-logo svg { width: 30px; height: 36px; }
.pledge-logo-name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.pledge-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  display: block;
}
.pledge-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.95;
  color: var(--stone);
}
.pledge-text strong {
  color: var(--ink);
  font-style: normal;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.footer-brand svg { width: 18px; height: 22px; }
.footer-brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.4);
}
.footer-center {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.22);
  font-weight: 500;
  text-align: center;
}
.footer-right {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.22);
  font-weight: 500;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1020px) {
  .elements-grid { grid-template-columns: 1fr; }
  .mission, .sa-inner, .recruit-inner { grid-template-columns: 1fr; }
  .serve-cards { grid-template-columns: 1fr; }
  .sa-stat-pair { grid-template-columns: 1fr 1fr; }
  .hero-team-badge { display: none; }
}
@media (max-width: 720px) {
  nav { padding: 0 24px; }
  .nav-link { display: none; }
  .hero { padding: 110px 28px 64px; }
  .mission-left, .mission-right { padding: 60px 28px; }
  .serve-section, .elements-section, .sa-section, .recruit-section, .pledge { padding: 72px 28px; }
  .sa-inner, .recruit-inner { gap: 48px; }
  .pledge-inner { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 28px 24px; justify-content: center; text-align: center; }
  .band-items { flex-wrap: wrap; gap: 8px; }
}