/* ================================================================
   CORE TOKENS (inherited from main site)
   ================================================================ */
:root {
  --ink:            #0B0F0C;
  --ink-2:          #141A15;
  --ink-3:          #1E2720;
  --cream:          #F4EEDE;
  --cream-2:        #EBE2CB;
  --cream-3:        #D9CDAE;
  --solar:          #E89A3C;
  --solar-bright:   #F4BE6B;
  --solar-deep:     #A86320;
  --jungle:         #2F5C40;
  --jungle-deep:    #18331F;
  --clay:           #B95C3A;
  --line-d:         rgba(244,238,222,0.14);
  --line-l:         rgba(11,15,12,0.12);

  --display:  "Fraunces", Georgia, serif;
  --body:     "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --mono:     "JetBrains Mono", "SF Mono", Consolas, monospace;

  --max:   1440px;
  --gutter: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

/* ================================================================
   TOP RECRUITMENT BAR
   ================================================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-d);
  text-align: center;
}
.topbar b { color: var(--solar-bright); font-weight: 600; }
.topbar a {
  color: var(--solar);
  margin-left: 12px;
  border-bottom: 1px solid rgba(232,154,60,0.4);
  padding-bottom: 1px;
}
.topbar a:hover { color: var(--cream); }

/* ================================================================
   NAV (simplified — no language switcher, partner-page anchors)
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,238,222,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-l);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--solar-bright), var(--solar-deep) 80%);
  box-shadow: 0 0 18px rgba(232,154,60,0.45);
}
.brand-text b { font-weight: 700; letter-spacing: 0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links .return {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .25s;
}
.nav-cta:hover { background: var(--solar-deep); }
.nav-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--solar);
}

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

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,154,60,0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar);
  margin-bottom: 30px;
  padding: 8px 14px;
  border: 1px solid rgba(232,154,60,0.35);
  border-radius: 999px;
}
.hero-label .pulse {
  width: 8px;
  height: 8px;
  background: var(--solar);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,154,60,0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(232,154,60,0); }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  color: var(--solar);
  font-weight: 400;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream-3);
  max-width: 56ch;
  margin-bottom: 44px;
}
.hero-lede b { color: var(--cream); font-weight: 500; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 70px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .2s, background .25s, border-color .25s;
}
.btn-primary {
  background: var(--solar);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--solar-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid var(--line-d);
}
.btn-ghost:hover { border-color: var(--solar); color: var(--solar-bright); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 44px;
  border-top: 1px solid var(--line-d);
}
.stat-v {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-v em { color: var(--solar); font-style: normal; }
.stat-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section {
  padding: 120px 0;
  max-width: var(--max);
  margin: 0 auto;
}
.section-inner { padding: 0 var(--gutter); }
.section-head { max-width: 920px; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar-deep);
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--solar-deep);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-head h2 em { font-style: italic; color: var(--solar-deep); font-weight: 400; }
.section-head .sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(11,15,12,0.68);
  max-width: 56ch;
  margin-top: 18px;
}

/* ================================================================
   OPPORTUNITY CARDS
   ================================================================ */
.opportunity {
  background: var(--cream-2);
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.opp-card {
  background: var(--cream);
  border: 1px solid var(--line-l);
  padding: 36px 30px;
  border-radius: 4px;
  position: relative;
}
.opp-card-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar-deep);
  margin-bottom: 22px;
}
.opp-card-v {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
}
.opp-card-v em { color: var(--solar-deep); font-style: normal; }
.opp-card-t {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.opp-card-d {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,15,12,0.68);
}
.opp-quote {
  padding: 40px 60px;
  border-left: 3px solid var(--solar);
  background: var(--cream);
  margin-top: 40px;
}
.opp-quote p {
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
}
.opp-quote cite {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,15,12,0.55);
  font-style: normal;
}
@media (max-width: 800px) {
  .opp-grid { grid-template-columns: 1fr; }
  .opp-quote { padding: 30px; }
}

/* ================================================================
   ADVANTAGE / COMPARISON TABLE
   ================================================================ */
.advantage { background: var(--cream); }
.compare-wrap {
  border: 1px solid var(--line-l);
  border-radius: 4px;
  overflow-x: auto;
  background: #fdfaf1;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.compare th, .compare td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line-l);
  vertical-align: top;
}
.compare thead th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: none;
  padding: 20px 24px;
}
.compare thead th.us {
  background: var(--solar);
  color: var(--ink);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: rgba(235,226,203,0.3); }
.compare th.row-label {
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  width: 220px;
}
.compare td.us-col {
  background: rgba(232,154,60,0.06);
  font-weight: 500;
  color: var(--ink);
}
.compare td em {
  font-style: normal;
  color: var(--solar-deep);
  font-weight: 600;
}

.compare-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 50px;
}
.compare-note {
  padding-left: 18px;
  border-left: 2px solid var(--solar);
}
.compare-note h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.compare-note p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11,15,12,0.68);
}
@media (max-width: 700px) {
  .compare-notes { grid-template-columns: 1fr; }
}

/* ================================================================
   PARTNERSHIP PROGRAM — 3 TIERS
   ================================================================ */
.program { background: var(--ink); color: var(--cream); }
.program .section-label { color: var(--solar); border-color: var(--solar); }
.program .section-head h2 { color: var(--cream); }
.program .section-head h2 em { color: var(--solar); }
.program .section-head .sub { color: var(--cream-3); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s;
}
.tier.featured {
  background: var(--ink-3);
  border-color: var(--solar);
  position: relative;
}
.tier.featured::before {
  content: "MOST STRATEGIC";
  position: absolute;
  top: -11px;
  left: 32px;
  background: var(--solar);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 999px;
}
.tier-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--solar);
  margin-bottom: 14px;
}
.tier-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.tier-sub {
  font-size: 13px;
  color: var(--cream-3);
  margin-bottom: 30px;
}
.tier-margin {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  margin-bottom: 28px;
}
.tier-margin-v {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  color: var(--solar-bright);
  letter-spacing: -0.02em;
}
.tier-margin-l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.tier ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.tier ul li {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-2);
  border-bottom: 1px solid rgba(244,238,222,0.06);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--solar);
  font-weight: 500;
  padding-top: 3px;
}
.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  transition: background .25s, color .25s, border-color .25s;
}
.tier-cta:hover { background: var(--solar); color: var(--ink); border-color: var(--solar); }
.tier.featured .tier-cta { background: var(--solar); color: var(--ink); border-color: var(--solar); }
.tier.featured .tier-cta:hover { background: var(--solar-bright); border-color: var(--solar-bright); }

@media (max-width: 960px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier.featured::before { left: 24px; }
}

/* ================================================================
   SUPPORT GRID
   ================================================================ */
.support { background: var(--cream); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border: 1px solid var(--line-l);
}
.support-item {
  background: var(--cream);
  padding: 34px 28px;
  transition: background .25s;
}
.support-item:hover { background: #fdfaf1; }
.support-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--solar-deep);
}
.support-item h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.support-item p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11,15,12,0.65);
}
@media (max-width: 1000px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   IDEAL PROFILE (2-COLUMN)
   ================================================================ */
.profile { background: var(--cream-2); }
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.profile-col h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar-deep);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-l);
}
.profile-list {
  list-style: none;
}
.profile-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-l);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.profile-list li::before {
  content: "◆";
  color: var(--solar);
  font-size: 10px;
  padding-top: 6px;
}
.profile-list li b {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.profile-list li span {
  color: rgba(11,15,12,0.65);
  font-size: 13px;
}
@media (max-width: 820px) {
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.process { background: var(--cream); }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--solar-deep) 0, var(--solar-deep) 6px, transparent 6px, transparent 12px);
}
.step {
  position: relative;
}
.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--solar);
  position: relative;
  z-index: 2;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--solar);
  border-radius: 50%;
}
.step-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar-deep);
  text-align: center;
  margin-bottom: 10px;
}
.step-t {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
.step-d {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(11,15,12,0.65);
  text-align: center;
}
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { display: none; }
}

/* ================================================================
   FAQ
   ================================================================ */
.partner-faq { background: var(--cream-2); border-top: 1px solid var(--line-l); }
.faq-list {
  max-width: 920px;
}
.faq-item {
  border-bottom: 1px solid var(--line-l);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 8px 0;
}
.faq-q::after {
  content: "+";
  font-family: var(--mono);
  color: var(--solar-deep);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11,15,12,0.7);
  max-width: 66ch;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding-top .4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 18px;
}

/* ================================================================
   APPLICATION FORM
   ================================================================ */
.apply { background: var(--ink); color: var(--cream); }
.apply .section-label { color: var(--solar); border-color: var(--solar); }
.apply .section-head h2 { color: var(--cream); }
.apply .section-head h2 em { color: var(--solar); }
.apply .section-head .sub { color: var(--cream-3); }
.apply-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: start;
}
.apply-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-3);
  margin-bottom: 24px;
}
.apply-intro p b { color: var(--solar-bright); font-weight: 500; }
.apply-contact {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  padding: 24px;
  border-radius: 4px;
  margin-top: 30px;
}
.apply-contact-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solar);
  margin-bottom: 12px;
}
.apply-contact a {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-d);
}
.apply-contact a:hover { color: var(--solar-bright); }
.apply-contact a:last-child { border-bottom: none; }

.pform {
  display: grid;
  gap: 20px;
}
.pform-row { display: grid; gap: 20px; }
.pform-row.two { grid-template-columns: 1fr 1fr; }
.pform-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 10px;
}
.pform-label b { color: var(--solar); }
.pform-input, .pform-select, .pform-textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  color: var(--cream);
  padding: 14px 16px;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 14px;
  transition: border-color .25s, background .25s;
}
.pform-input:focus, .pform-select:focus, .pform-textarea:focus {
  outline: none;
  border-color: var(--solar);
  background: var(--ink-3);
}
.pform-input::placeholder, .pform-textarea::placeholder { color: rgba(244,238,222,0.35); }
.pform-textarea { resize: vertical; min-height: 100px; }
.pform-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E89A3C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.pform-submit {
  background: var(--solar);
  color: var(--ink);
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 10px;
  transition: background .25s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.pform-submit:hover { background: var(--solar-bright); transform: translateY(-1px); }
.pform-note {
  font-size: 12px;
  color: var(--cream-3);
  text-align: center;
  margin-top: 6px;
}
.pform-success {
  display: none;
  padding: 50px 40px;
  background: var(--ink-3);
  border: 1px solid var(--solar);
  border-radius: 4px;
  text-align: center;
}
.pform-success h3 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 14px;
}
.pform-success p { color: var(--cream-3); font-size: 15px; line-height: 1.6; }
.pform-success.show { display: block; }
.pform.hide { display: none; }

@media (max-width: 900px) {
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .pform-row.two { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink);
  color: var(--cream-3);
  padding: 70px 0 40px;
  border-top: 1px solid var(--line-d);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-d);
}
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand .brand-text b { color: var(--cream); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-3);
  max-width: 36ch;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  color: var(--cream-3);
  transition: color .25s, border-color .25s, background .25s;
}
.footer-social a:hover {
  color: var(--ink);
  background: var(--solar);
  border-color: var(--solar);
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--solar);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--solar); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream-3);
}
.footer-bot .legal { display: flex; gap: 24px; }
.footer-bot .legal a:hover { color: var(--solar); }

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ================================================================
   GENERAL RESPONSIVE
   ================================================================ */
@media (max-width: 720px) {
  :root { --gutter: 24px; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 50px; }
}
