/* =============================================
   DISPO DESK — Main Stylesheet
   Brand: Dark green (#1B5E20) + Gold (#C9A227)
   ============================================= */

/* === VARIABLES === */
:root {
  --bg: #0A0A0A;
  --surface: #101010;
  --card: #161616;
  --card-hover: #1C1C1C;
  --border: #232323;
  --border-light: #2E2E2E;
  --green-deep: #0C220C;
  --green-dark: #163A16;
  --green: #1B5E1B;
  --green-bright: #2A8A2A;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-dim: #7A6015;
  --white: #FFFFFF;
  --text: #E0E0E0;
  --muted: #777777;
  --muted-light: #AAAAAA;
  --max-width: 1200px;
  --nav-height: 72px;
  --section-pad: 5rem 1.5rem;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }
button { cursor: pointer; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 0.9375rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
}

strong { font-weight: 600; color: var(--white); }

/* === COLOR UTILITIES === */
.text-gold  { color: var(--gold); }
.text-green { color: var(--green-bright); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section-dark { background: var(--surface); }

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-label-wrap {
  justify-content: center;
}

.section-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::before { content: '★ '; }
.section-label::after  { content: ' ★'; }

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-sm   { margin-top: 1rem; }
.mt-md   { margin-top: 1.5rem; }
.mt-lg   { margin-top: 2rem; }
.mt-xl   { margin-top: 3rem; }
.mb-md   { margin-bottom: 1.5rem; }
.mb-lg   { margin-bottom: 2rem; }
.btn-block { width: 100%; justify-content: center; }
.muted-body { color: var(--muted-light); line-height: 1.8; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0A;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0A;
}

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

.btn-green:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* === MARQUEE DIVIDER === */
.marquee-bar {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #0A0A0A;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--gold-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: var(--green-dark);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}

.nav-logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-cta {
  padding: 0.625rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0A0A0A;
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 1.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
  font-size: 1.125rem;
  color: var(--text);
}

/* === HERO (HOME PAGE) === */
.hero {
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(22, 58, 22, 0.12) 100%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  width: 100%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-label-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-label-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--muted-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Hero Image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 14px;
  /* Gold corner bracket frame */
  background:
    linear-gradient(#C9A227, #C9A227) top    left  / 48px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) top    left  / 3px  48px no-repeat,
    linear-gradient(#C9A227, #C9A227) top    right / 48px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) top    right / 3px  48px no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom left  / 48px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom left  / 3px  48px no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom right / 48px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom right / 3px  48px no-repeat,
    var(--bg);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.18),
    0 0 50px rgba(201, 162, 39, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

.hero-img-frame::before {
  content: none;
}

.hero-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: #0A0A0A;
  padding: 0.875rem 1.5rem;
  z-index: 2;
  text-align: center;
}

.hero-badge-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: 0.06em;
}

.hero-badge-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--green-dark);
  padding: 2.5rem 1.5rem;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(201, 162, 39, 0.25);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.stat-sublabel {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* === SERVICES / WHAT WE DO === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}

.service-card:hover::before  { height: 100%; }
.service-card:hover { border-color: var(--border-light); background: var(--card-hover); transform: translateY(-4px); }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}

.service-icon-center {
  margin-left: auto;
  margin-right: auto;
}

.service-title {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.service-link::after { content: '→'; }
.service-link:hover  { gap: 0.8rem; }

/* === ABOUT PREVIEW SECTION === */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--bg) 100%);
}

.about-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
}

.about-quote p {
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.65;
}

.disposition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.disposition-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disposition-letter {
  font-family: 'Oswald', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 1.5rem;
}

.disposition-word {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  padding-top: 0.3rem;
}

/* === 30 FOR 30 SECTION === */
.challenge-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.challenge-section::after {
  content: '30';
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 22rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.challenge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.challenge-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.challenge-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.challenge-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}

.challenge-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.feature-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.challenge-cta-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 2.5rem 2rem;
  text-align: center;
}

.challenge-time {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.challenge-time-label {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.challenge-join-title {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.challenge-join-desc {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.challenge-dm-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === FINAL CTA SECTION === */
.cta-section {
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-title {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.cta-desc {
  color: var(--muted-light);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0A0A;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-values {
  display: flex;
  gap: 1.5rem;
}

.footer-value {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* === INTERIOR PAGE HERO === */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.page-hero-breadcrumb a {
  color: var(--gold);
  transition: color var(--transition);
}

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

.page-hero-breadcrumb span { margin: 0 0.5rem; }

/* === ABOUT PAGE — TEAM SECTION === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.team-card:hover { border-color: var(--border-light); }

.team-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(170deg, var(--green-dark) 0%, var(--surface) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-initials {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.25);
  letter-spacing: 0.1em;
  user-select: none;
}

.team-card-body {
  padding: 2rem;
}

.team-card-role {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.team-card-name {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card-aka {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
  display: block;
}

.team-card-bio {
  font-size: 0.9375rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 0.35rem 0.875rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === VALUES BAR (ABOUT PAGE) === */
.values-bar {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 3rem 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.value-icon {
  font-size: 2rem;
  color: var(--gold);
}

.value-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.value-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* === PARTNERSHIPS PAGE === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.partner-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.partner-card:hover::after  { transform: scaleX(1); }
.partner-card:hover { border-color: var(--border-light); transform: translateY(-4px); }

.partner-number {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.partner-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.partner-name {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.partner-desc {
  font-size: 0.9375rem;
  color: var(--muted-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 2rem;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.partner-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-light);
}

.partner-feature::before {
  content: '→';
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  flex-shrink: 0;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0A0A0A;
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--gold);
  transition: background var(--transition), border-color var(--transition);
  justify-content: center;
}

.partner-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0A;
}

.partner-link::after { content: '→'; }

/* Partners disclaimer */
.partners-disclaimer {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dim);
}

.partners-disclaimer p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* === JOE FEATURED (ABOUT PAGE) === */
.joe-featured {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.joe-featured-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4.5rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.joe-featured-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.joe-featured-photo {
  position: relative;
  padding: 12px;
  background:
    linear-gradient(#C9A227, #C9A227) top    left  / 44px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) top    left  / 3px  44px no-repeat,
    linear-gradient(#C9A227, #C9A227) top    right / 44px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) top    right / 3px  44px no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom left  / 44px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom left  / 3px  44px no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom right / 44px 3px  no-repeat,
    linear-gradient(#C9A227, #C9A227) bottom right / 3px  44px no-repeat,
    var(--card);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.2),
    0 0 60px rgba(201, 162, 39, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

.joe-featured-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.joe-featured-role {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.joe-featured-name {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.joe-featured-aka {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-light);
  display: block;
  margin-bottom: 2.25rem;
}

.joe-featured-bio {
  font-size: 0.9375rem;
  color: var(--muted-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.joe-quote {
  position: relative;
  margin: 2rem 0 0.5rem;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.05);
  border-radius: 0 6px 6px 0;
}

.joe-quote::before {
  content: '\201C';
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  line-height: 1;
}

.joe-quote::after {
  content: '\201D';
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  bottom: -1.75rem;
  right: 0.75rem;
  line-height: 1;
}

.joe-quote p, .joe-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.joe-expertise-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.joe-expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.joe-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .joe-cta-btns { flex-direction: column; }
  .joe-cta-btns .btn { width: 100%; justify-content: center; }
}

.joe-motto {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* === TEAM CARDS V2 (BELOW JOE) === */
.team-section-heading {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 0 var(--container-pad);
}

.team-card-v2 {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.team-card-v2::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.team-card-v2:hover { border-color: var(--border-light); transform: translateY(-3px); }
.team-card-v2:hover::after { transform: scaleX(1); }

.team-card-v2-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.team-card-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
  display: block;
}

.team-card-v2:hover .team-card-v2-photo img { transform: scale(1.04); }

.team-card-v2-body {
  padding: 1.5rem 1.375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-v2-role {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
  /* lock to 2-line height so names always align at the same level */
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
}

/* Marc's photo: face sits ~48% down the image due to building above him.
   Shift crop down so face rises to match other cards. */
.team-photo-marc {
  object-position: 15% 5%;
}

.team-photo-kevin {
  object-position: center 15%;
}

/* Center Kevin & Zach (cards 5 & 6) in the 4-col grid second row */
.team-grid-v2 .team-card-v2:nth-child(5) { grid-column: 2; }
.team-grid-v2 .team-card-v2:nth-child(6) { grid-column: 3; }

.team-card-v2-name {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.team-card-v2-bio {
  font-size: 0.875rem;
  color: var(--muted-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

.team-card-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .joe-featured-inner { grid-template-columns: 300px 1fr; gap: 3rem; }
  .joe-featured-img { height: 420px; }
  .team-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  /* Reset centering — grid-column 2/3 only works in 4-col layout */
  .team-grid-v2 .team-card-v2:nth-child(5),
  .team-grid-v2 .team-card-v2:nth-child(6) { grid-column: auto; }
}

@media (max-width: 700px) {
  .joe-featured-inner { grid-template-columns: 1fr; gap: 2rem; }
  .joe-featured-img { height: 420px; }
  .team-grid-v2 { grid-template-columns: 1fr; }
}

/* === SCALE YOUR BUSINESS PAGE === */
.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.scale-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.scale-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.scale-card:hover::after  { transform: scaleX(1); }
.scale-card:hover { border-color: var(--border-light); transform: translateY(-4px); }

.scale-card.coming-soon { opacity: 0.6; }
.scale-card.coming-soon:hover { transform: none; }
.scale-card.coming-soon::after { display: none; }

.coming-soon-badge {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: var(--border);
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
}

.scale-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scale-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.scale-avatar img.logo {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

.scale-avatar img.logo-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scale-avatar img.logo-zach {
  width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

/* Black background avatar — for logos with light/white elements */
.avatar-black {
  background: #000;
}

.scale-avatar-initials {
  font-family: 'Oswald', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  user-select: none;
}

.scale-card-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
}

.scale-card-name {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--white);
  margin-bottom: 0.625rem;
}

.scale-card-tagline {
  font-size: 0.875rem;
  color: var(--muted-light);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}

.scale-card-bio {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.scale-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0A0A0A;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gold);
  width: 100%;
  transition: background var(--transition), border-color var(--transition);
}

.scale-card-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0A;
}

.scale-card-link::after { content: '→'; }

.scale-card-link.disabled {
  background: var(--border);
  border-color: var(--border);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

.scale-card-link.disabled::after { content: ''; }

@media (max-width: 1024px) {
  .scale-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* === JV PAGE === */
.letsJV-accent {
  font-family: 'Satisfy', cursive;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--green-bright);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.jv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.jv-step {
  padding: 2.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
  text-align: center;
}

.jv-step:last-child { border-right: 1px solid var(--border); }

.jv-step::after {
  content: '→';
  position: absolute;
  right: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  color: var(--gold);
  z-index: 1;
  background: var(--surface);
  padding: 0 0.2rem;
}

.jv-step:last-child::after { display: none; }

.jv-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.55);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.jv-step-title {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.jv-step-desc {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.65;
}

/* === SPLIT CARDS === */
.splits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.split-card {
  background: var(--card);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.15), 0 0 5px rgba(201, 162, 39, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
}

.split-pct {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.split-pct span {
  color: rgba(201, 162, 39, 0.45);
  font-size: 0.75em;
  margin: 0 0.1em;
}

.split-type {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.split-desc {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* === MULTI-STEP FORM === */
.form-fieldset[data-step] { display: none; }
.form-fieldset[data-step].step-active { display: block; }

.form-progress-wrap {
  max-width: 860px;
  margin: 0 auto 1.5rem;
}

.form-progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}

.form-progress-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-progress-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-progress-bar {
  height: 3px;
  background: var(--border);
  width: 100%;
}

.form-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.35s ease;
  width: 20%;
}

.form-step-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

#form-submit { margin-left: auto; }

@media (max-width: 480px) {
  .form-step-nav { flex-direction: column; }
  .form-step-nav .btn { width: 100%; justify-content: center; }
}

/* === DEAL FORM === */
.form-card {
  background: var(--card);
  border: 2px solid var(--gold);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.18), 0 0 6px rgba(201, 162, 39, 0.1);
  padding: 3rem;
  max-width: 860px;
  margin: 0 auto;
}

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

.form-grid-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  font-size: 0.875rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.03);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23C9A227' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: var(--muted);
}

.form-select.selected { color: var(--white); }

.form-select option {
  background: #161616;
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-textarea-sm {
  min-height: 80px;
}

.form-submit-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

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

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form-success.visible { display: block; }
.hidden { display: none !important; }

.form-success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.form-success h3 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--muted-light);
  max-width: 420px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Partner inquiry form extras */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-full { grid-column: 1 / -1; }

.form-fieldset {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

.form-legend {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: block;
}

.required-star { color: var(--gold); }

.form-submit-row {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-submit-btn { min-width: 220px; }

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
  display: block;
}

.success-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.success-desc {
  color: var(--muted-light);
  max-width: 440px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* JV responsive */
@media (max-width: 768px) {
  .jv-steps { grid-template-columns: 1fr; }
  .splits-grid { grid-template-columns: 1fr; }
  .jv-step { border-right: 1px solid var(--border); border-bottom: none; }
  .jv-step:last-child { border-bottom: 1px solid var(--border); }
  .jv-step::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -0.9rem;
    transform: translateX(-50%);
    background: var(--surface);
  }
  .form-card { padding: 2rem 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-full { grid-column: 1; }
  /* Prevent iOS Safari auto-zoom on form focus (requires font-size >= 16px) */
  .form-input,
  .form-select,
  .form-textarea { font-size: 1rem; }
  /* Touch-friendly targets */
  .form-input,
  .form-select { min-height: 48px; }
  .btn { min-height: 44px; }
  /* Scale down fixed photo heights */
  .joe-featured-img { height: 360px; }
  .hero-img-main { height: 400px; }
  /* Split cards */
  .split-card { padding: 2rem 1.25rem; }
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE — 1024px === */
@media (max-width: 1024px) {
  .services-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-inner { gap: 2.5rem; }

  .challenge-section::after { display: none; }
}

/* === RESPONSIVE — 768px === */
@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem 1.25rem;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner,
  .about-preview,
  .challenge-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero-image { order: -1; }
  .hero-img-main { height: 420px; }
  .hero-badge { left: 0; bottom: 1rem; }
  .about-accent { display: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding-bottom: 1.25rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .challenge-cta-box { padding: 2rem 1.5rem; }
}

/* === RESPONSIVE — 480px === */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .btn { justify-content: center; width: 100%; }

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

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-bottom: 1px solid rgba(201, 162, 39, 0.2); }
  .stat-item:last-child { border-bottom: none; }

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

  /* Extra padding reduction on small phones */
  .form-card { padding: 1.5rem 1rem; }
  .form-fieldset { margin-bottom: 1.5rem; }

  /* Photos */
  .joe-featured-img { height: 300px; }
  .hero-img-main { height: 340px; }

  /* Scale cards */
  .scale-card { padding: 1.5rem 1rem; }

  /* Split cards */
  .split-card { padding: 1.75rem 1rem; }
  .split-pct { font-size: 3.25rem; }

  /* Team card photo — shorter on narrow screens to show bio without too much scroll */
  .team-card-v2-photo { aspect-ratio: 4 / 3; }

  /* Wider nav logo — hide sub-text on very small screens */
  .nav-logo-sub { display: none; }
}

