/* one39.co — custom rebuild by Tentmakers */

/* ============================================================
   ACCESSIBILITY — skip link, sr-only, focus states, drawer
   ============================================================ */

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  color: #0e0807;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 200;
  transform: translateY(-140%);
  transition: transform .18s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #c6ac74;
  outline-offset: 2px;
}

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

/* Restore visible focus rings everywhere — many rebuild elements had none */
:focus-visible {
  outline: 2px solid #c6ac74;
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c6ac74;
  outline-offset: 2px;
}

/* Mobile drawer — overlay from right, backdrop dim */
.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
  transition: opacity .24s ease;
}
.mobile-drawer-backdrop.is-open { opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(320px, 88vw);
  background: #0e0807;
  color: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: 28px 28px 32px;
  box-shadow: -12px 0 40px -12px rgba(0,0,0,0.4);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-drawer-logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
}
.mobile-drawer-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  padding: 0 6px;
  cursor: pointer;
  transition: color .15s;
}
.mobile-drawer-close:hover { color: #c6ac74; }

.mobile-drawer-nav { flex: 1; }
.mobile-drawer-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-drawer-nav li a {
  display: block;
  padding: 14px 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .15s, padding-left .15s;
}
.mobile-drawer-nav li a:hover,
.mobile-drawer-nav li a:focus-visible { color: #c6ac74; padding-left: 6px; }

.mobile-drawer-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 20px;
  background: #c6ac74;
  color: #0e0807;
  text-align: center;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .18s;
}
.mobile-drawer-cta:hover { background: #b39759; }

/* Prevent body scroll while drawer open */
html.drawer-open { overflow: hidden; }

:root {
  --ink: #0e0807;
  --paper: #ffffff;
  --cream: #f4efe8;
  --gold: #c6ac74;
  /* --gold-dark = accessible gold for eyebrow/meta text ON LIGHT backgrounds
     (WCAG AA 4.5:1 at 14px on #fff and #f4efe8). Use --gold on dark bg only. */
  --gold-dark: #8a6f38;
  --mute: #9a9187;
  --line: rgba(14,8,7,0.12);
  --max: 1440px;
}

*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Type weights bumped 2026-08-10 (Will feedback: prior 300/500 read too thin — coaching page = reference) */
h1,h2,h3,h4,h5 { margin: 0; font-family: Helvetica, "Helvetica Neue", Arial, sans-serif; font-weight: 600; letter-spacing: -0.035em; }
h1 { font-weight: 600; letter-spacing: -0.04em; }
h2 { font-size: 55px; line-height: 55px; text-transform: uppercase; letter-spacing: -0.045em; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
p  { margin: 0 0 1rem; font-size: 20px; line-height: 1.6; font-weight: 400; }
strong, b { font-weight: 600; }

/* GOLD HERO DIVIDER — reusable ~10px full-width bar between hero and next section */
.hero-divider {
  display: block;
  width: 100%;
  height: 10px;
  background: var(--gold);
  border: 0;
  padding: 0;
  margin: 0;
}

/* NAV — transparent overlay at top, solid black on scroll (matches live) */
.site-nav {
  position: fixed; top:0; left:0; right:0; z-index: 50;
  background: transparent;
  color: #fff;
  /* Subtle top-to-transparent scrim so white nav text stays legible over ANY
     hero (dark or light) before the .scrolled class kicks in. */
  background-image: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0) 100%);
  transition: background .3s, color .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: #000;
  background-image: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
/* Belt-and-suspenders: text-shadow on nav text keeps it readable if a hero
   image somewhere is unusually bright. Invisible against the black bg once
   scrolled. */
.site-nav .nav-links a,
.site-nav .nav-logo,
.site-nav .nav-cta { text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.site-nav.scrolled .nav-links a,
.site-nav.scrolled .nav-logo,
.site-nav.scrolled .nav-cta { text-shadow: none; }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 21px 40px;
  height: 88px;
}
.nav-logo img { width: auto; height: 40px; filter: brightness(0) invert(1); display: block; }
.nav-links {
  display: flex; gap: 0; justify-content: center;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; font-weight: 400; letter-spacing: normal; text-transform: uppercase;
  line-height: 20px;
}
.nav-links a {
  color: #fff; opacity: 0.95;
  padding: 13px 20px;
  position: relative;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }
/* Active-page underline — set body class per page (e.g. body.page-coaching) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; bottom: 6px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s;
}
.nav-links a.is-active::after,
.site-nav.scrolled .nav-links a.is-active::after { opacity: 1; }
body.page-who-we-are .nav-links a[href="/who-we-are"]::after,
body.page-coaching   .nav-links a[href="/coaching"]::after,
body.page-hire-talent .nav-links a[href="/hire-talent"]::after,
body.page-find-a-job .nav-links a[href="/find-a-job"]::after,
body.page-open-positions .nav-links a[href="/find-a-job"]::after,
body.page-resources .nav-links a[href="/resources"]::after { opacity: 1; }
.nav-cta {
  border: 1px solid #fff;
  padding: 12px 24px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px; font-weight: 400; letter-spacing: normal; text-transform: uppercase;
  line-height: 14px;
  color: #fff; border-radius: 3px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: #fff; color: var(--ink); }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 26px; }

/* HERO — 2 photo panels side by side */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 100vh; min-height: 720px; max-height: 1080px;
  color: #fff;
}
.hero-panel {
  position: relative;
  background-size: cover; background-position: center;
  /* Will 7/31: logos should sit at vertical center of each hero block */
  display: flex; align-items: center; justify-content: center;
  padding-top: 0;
  overflow: hidden;
  transition: filter .4s;
}
.hero-panel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,8,7,0.35) 0%, rgba(14,8,7,0.15) 40%, rgba(14,8,7,0.5) 100%);
}
.hero-panel:hover { filter: brightness(1.05); }
/* image-set: WebP-first, JPG fallback; 1024w for mobile, 1600w for desktop.
   Plain background-image fallback first for browsers w/o image-set support. */
.hero-panel--left  {
  background-image: url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1600.jpg");
  background-image: -webkit-image-set(
    url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1600.webp") type("image/webp"),
    url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1600.jpg")
  );
  background-image: image-set(
    url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1600.webp") type("image/webp"),
    url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1600.jpg")
  );
}
.hero-panel--right {
  background-image: url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1600.jpg");
  background-image: -webkit-image-set(
    url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1600.webp") type("image/webp"),
    url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1600.jpg")
  );
  background-image: image-set(
    url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1600.webp") type("image/webp"),
    url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1600.jpg")
  );
}
@media (max-width: 768px) {
  .hero-panel--left  {
    background-image: url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1024.jpg");
    background-image: -webkit-image-set(
      url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1024.webp") type("image/webp"),
      url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1024.jpg")
    );
    background-image: image-set(
      url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1024.webp") type("image/webp"),
      url("/assets/images/opt/jed-villejo-pumko2FFxY0-unsplash-1-4-scaled-1024.jpg")
    );
  }
  .hero-panel--right {
    background-image: url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1024.jpg");
    background-image: -webkit-image-set(
      url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1024.webp") type("image/webp"),
      url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1024.jpg")
    );
    background-image: image-set(
      url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1024.webp") type("image/webp"),
      url("/assets/images/opt/a71e2ede7dcc03ebce2f4fedcc1c1c65849d358f-scaled-1024.jpg")
    );
  }
}
.hero-panel-logo {
  position: relative; z-index: 2;
  width: min(300px, 50%);
}
.hero-panel-logo img { width: 100%; filter: brightness(0) invert(1); opacity: 0.95; }

/* MARQUEE — dark scrolling text + body (Learn More removed per Will 7/31) */
.marquee-section {
  background: var(--ink); color: #fff;
  padding: 110px 0 130px;
  overflow: hidden;
  text-align: center;
}
.marquee {
  overflow: hidden;
  /* smaller + thinner per Will 7/31 */
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 60px;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  /* half speed per Will 7/31 */
  animation: marquee 44s linear infinite;
  will-change: transform;
}
.marquee-track span { display: inline-block; padding-right: 0.35em; }
.marquee-track span em {
  font-style: normal; color: var(--gold);
  padding: 0 0.3em;
  font-weight: 400;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translateX(0); }
  .value-card:hover { transform: none; }
  .hero-panel:hover { filter: none; }
  * { scroll-behavior: auto !important; }
}
.marquee-body {
  max-width: 720px; margin: 0 auto;
  font-size: 20px; line-height: 1.55;
  color: var(--gold);
  padding: 0 24px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
}

/* WHO WE ARE — clean rounded-square ribbon (redesigned per Will 7/31) */
.whoweare {
  background: var(--paper); color: var(--ink);
  padding: 120px 0 140px;
  text-align: center;
  overflow: hidden;
}
.whoweare-title {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 72px;
  padding-left: 16px;
}
.whoweare-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.value-card {
  position: relative;
  aspect-ratio: 1 / 1;      /* Will: "rounded squares, not rectangles" */
  overflow: hidden;
  border-radius: 22px;
  transition: transform .35s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.value-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.value-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,8,7,0.15) 0%, rgba(14,8,7,0.5) 60%, rgba(14,8,7,0.78) 100%);
  z-index: 1; pointer-events: none;
}
.value-card-label {
  position: absolute; left: 0; right: 0; bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
  padding: 0 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  overflow-wrap: break-word;
  hyphens: auto;
}

/* SALARY GUIDE */
.salary {
  background: var(--paper); color: var(--ink);
  padding: 90px 0 100px;
  border-top: 1px solid rgba(14,8,7,0.06);
}
.salary-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
  padding: 0 40px;
}
.salary-copy h2 {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 55px; line-height: 55px;
  font-weight: 500; letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.salary-copy p {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-size: 20px; line-height: 30px;
  margin-bottom: 24px;
  max-width: none;               /* Will 7/31: full-width, not wrap early */
  font-weight: 400;
}
.salary-copy .salary-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 18px 24px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: 8px;
  transition: background .2s, color .2s;
}
.salary-copy .salary-btn:hover { background: transparent; color: var(--ink); }
/* Coaching-page inverted variant: black bg, white text */
.salary.salary--dark { background: var(--ink); color: #fff; }
.salary.salary--dark .salary-copy h2,
.salary.salary--dark .salary-copy p { color: #fff; }
.salary.salary--dark .salary-copy .salary-btn {
  background: #fff; color: var(--ink); border-color: #fff;
}
.salary.salary--dark .salary-copy .salary-btn:hover { background: transparent; color: #fff; }
.salary-media img { width: 100%; height: auto; border-radius: 22px; aspect-ratio: 1/1; object-fit: cover; }

/* HIRE (Don't wait...) — full-width cinematic bg */
.hire {
  position: relative; color: #fff;
  padding: 140px 0;
  background: #000 url("/assets/images/opt/dont-wait-hire-great-1600.jpg") center/cover no-repeat;
  background-image: -webkit-image-set(
    url("/assets/images/opt/dont-wait-hire-great-1600.webp") type("image/webp") 1x,
    url("/assets/images/opt/dont-wait-hire-great-1600.jpg") type("image/jpeg") 1x
  );
  background-image: image-set(
    url("/assets/images/opt/dont-wait-hire-great-1600.webp") type("image/webp") 1x,
    url("/assets/images/opt/dont-wait-hire-great-1600.jpg") type("image/jpeg") 1x
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 620px;
  display: flex; align-items: center;
}
@media (max-width: 900px) {
  .hire {
    background-image: -webkit-image-set(
      url("/assets/images/opt/dont-wait-hire-great-800.webp") type("image/webp") 1x,
      url("/assets/images/opt/dont-wait-hire-great-800.jpg") type("image/jpeg") 1x
    );
    background-image: image-set(
      url("/assets/images/opt/dont-wait-hire-great-800.webp") type("image/webp") 1x,
      url("/assets/images/opt/dont-wait-hire-great-800.jpg") type("image/jpeg") 1x
    );
  }
}
.hire::before {
  content:""; position: absolute; inset:0;
  background: linear-gradient(90deg, rgba(14,8,7,0.65) 0%, rgba(14,8,7,0.3) 45%, rgba(14,8,7,0.15) 100%);
}
.hire-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hire-headline { min-width: 0; }
.hire-headline h2 {
  max-width: 520px;
  line-height: 0.95;
  font-size: clamp(2.75rem, 5.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hire-headline h2 .line { display: block; }
.hire-body { min-width: 0; padding-top: 20px; }
.hire-body p { max-width: 380px; opacity: 0.95; margin: 0 0 28px; font-size: 1.05rem; line-height: 1.65; color: #fff; font-weight: 400; }

/* COACH — full-width cinematic bg, single centered column (Will 7/31) */
.coach {
  position: relative; color: #fff;
  padding: 170px 0;
  background-color: #000;
  background-image: image-set(
    url("/assets/images/opt/you-need-a-coach-bg-scaled-1600.webp") type("image/webp"),
    url("/assets/images/opt/you-need-a-coach-bg-scaled-1600.jpg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 720px;
  display: flex; align-items: center;
  text-align: center;
}
.coach::before {
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, rgba(14,8,7,0.55) 0%, rgba(14,8,7,0.7) 100%);
}
.coach-inner {
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto; width: 100%;
  padding: 0 40px;
}
.coach-eyebrow {
  display: block;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.coach-headline h2 {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.75rem, 5.4vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 auto 28px;
  max-width: 780px;
}
.coach-body p {
  margin: 0 auto 32px;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  max-width: 620px;
}

/* BUTTONS — Helvetica 14px 400, transparent bg, 1px border (matches live) */
.btn {
  display: inline-block;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px; font-weight: 400; letter-spacing: normal;
  line-height: 14px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn.btn--light { color: #fff; background: transparent; border-color: #fff; }
.btn.btn--light:hover { background: #fff; color: var(--ink); }
.btn.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 500; }
.btn.btn--gold:hover { background: #b39759; border-color: #b39759; color: var(--ink); }
.btn.btn--filled { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.btn--filled:hover { background: #2a1e18; }
.btn.btn--big { padding: 14px 28px; font-size: 14px; }

/* FOOTER — 2-column layout (left = links, right = newsletter) per Will 7/31 */
.footer {
  background-color: var(--ink);
  background-image: image-set(
    url("/assets/images/opt/Frame-1171275206-scaled-1-1600.webp") type("image/webp"),
    url("/assets/images/opt/Frame-1171275206-scaled-1-1600.jpg")
  );
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.footer-left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-newsletter { padding-left: 20px; }
.footer-newsletter p { font-size: 15px; opacity: 0.9; margin-bottom: 16px; line-height: 1.5; color: #fff; font-weight: 400; }
.footer-col h5 {
  font-size: 14px; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255,255,255,0.55); margin-bottom: 18px; font-weight: 400;
}
.footer-col h5 a { color: inherit; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { opacity: 0.9; font-size: 14px; color: #fff; font-weight: 400; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-logo img { width: 56px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-logo p { opacity: 0.75; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .2s, color .2s;
}
.footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-social a:hover { background: var(--gold); color: #000; }
.footer-signup { display: flex; gap: 8px; margin-top: 12px; }
/* never let the button label wrap (Round B item 4, site-wide) */
.footer-signup .btn { white-space: nowrap; }
@media (max-width: 480px) {
  .footer-signup { flex-wrap: wrap; }
  .footer-signup .btn { flex: 1 1 100%; }
}
.footer-signup input {
  flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 12px 14px; font-size: 0.95rem;
  border-radius: 3px;
}
.footer-signup input::placeholder { color: rgba(255,255,255,0.5); }
.footer-contact { margin-top: 4px; }
/* Match weight of the list items above (Will 7/31: "should not be bold") */
.footer-contact a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.footer-contact a:hover { color: var(--gold); opacity: 1; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-left { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { padding-left: 0; }
}
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; opacity: 0.7;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   PRINT — restrained black-and-white output for job/article pages
   ============================================================ */
@media print {
  .site-nav,
  .footer,
  .mobile-drawer,
  .mobile-drawer-backdrop,
  .skip-link,
  .hero-divider,
  .op-controls,
  .res-controls,
  .article-related,
  .article-author,
  .job-apply-block,
  .marquee-section,
  .coach,
  .hire { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 11pt; }
  main, .job-detail, .article-body-section,
  .job-detail-hero, .article-hero { background: #fff !important; color: #000 !important; padding: 0 !important; }
  .job-detail-hero h1, .article-hero h1 { color: #000 !important; font-size: 22pt; }
  .job-detail-church, .article-cat, .article-meta { color: #333 !important; }
  a { color: #000 !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .article-body-inner, .job-detail-body { max-width: none !important; padding: 0 !important; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; }
  .whoweare-carousel { grid-template-columns: repeat(3, 1fr); }
  .salary-inner, .hire-inner, .coach-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 12px; padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .hero-split { grid-template-columns: 1fr; height: auto; }
  .hero-panel { min-height: 60vh; }
  .marquee-section { padding: 60px 0 80px; }
  .marquee { font-size: 2.75rem; margin-bottom: 32px; }
  .whoweare { padding: 80px 0; }
  .whoweare-title { letter-spacing: 0.32em; font-size: 28px; }
  .whoweare-carousel { grid-template-columns: repeat(2, 1fr); }
  .hire, .coach { padding: 80px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* salary h2 was a fixed 55px at 390 (6 viewport-wide lines) — cap it (Round B item 3, site-wide).
     Round C item 4: tightened again so the shared band holds 3 lines at 390 and
     stops shouting over the hero (applies to hire-talent too) */
  .salary-copy h2 { font-size: clamp(24px, 7.2vw, 34px); line-height: 1.08; }
}

/* "Schedule a call" side-chooser (2026-09-14). Shown on pages where the visitor
   has not already told us whether they want staffing or coaching. */
.sc-modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.sc-modal[hidden] { display: none; }
.sc-backdrop { position: absolute; inset: 0; background: rgba(14,8,7,.72); backdrop-filter: blur(3px); }
.sc-panel {
  position: relative; width: min(560px, 100%);
  background: var(--ink, #0E0807); color: #fff;
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  padding: 40px 40px 34px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.sc-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold, #c9a96e); border-radius: 8px 8px 0 0; }
.sc-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: rgba(255,255,255,.5); font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.sc-close:hover { color: #fff; }
.sc-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--gold, #c9a96e); margin: 0 0 10px; }
.sc-title { font-family: Helvetica, "Helvetica Neue", Arial, sans-serif; font-size: clamp(22px, 3vw, 29px); font-weight: 500; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 26px; color: #fff; }
.sc-options { display: grid; gap: 12px; }
.sc-option {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px; padding: 18px 20px; color: #fff; font: inherit;
  transition: border-color .15s, background .15s, transform .15s;
}
.sc-option:hover { border-color: var(--gold, #c9a96e); background: rgba(255,255,255,.08); transform: translateY(-1px); }
.sc-option:focus-visible { outline: 2px solid var(--gold, #c9a96e); outline-offset: 2px; }
.sc-option-label { display: block; font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 5px; }
.sc-option-blurb { display: block; font-size: 13.5px; line-height: 1.55; font-weight: 300; color: rgba(255,255,255,.66); }
@media (prefers-reduced-motion: reduce) { .sc-option { transition: none; } .sc-option:hover { transform: none; } }
