/* PDX Career Coach — visual match of the Squarespace Brine original.
   Original type: Brandon Grotesque (Adobe Fonts). Nunito Sans is the public stand-in. */

@import url("https://fonts.googleapis.com/css2?family=Lora:ital@1&family=Nunito+Sans:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --teal: #48bea9;
  --teal-hover: #3aa390;
  --gray: #939597;
  --gray-dark: #7e8183;
  --ink: #131516;
  --page: #ffffff;
  --footer: #f9f9f9;
  --font: "Nunito Sans", "brandon-grotesque", Helvetica, Arial, sans-serif;
  --quote: "Lora", "ff-tisa-web-pro", Georgia, serif;
  --header-h: 112px;
  --content: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
em { font-style: italic; }
strong { font-weight: 700; }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; color: var(--gray); margin: 0; }

h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  pointer-events: none;
}

.site-header > * { pointer-events: auto; }

.site-header.solid {
  position: relative;
  background: #fff;
}

.logo {
  display: block;
  width: 72px;
  flex-shrink: 0;
  line-height: 0;
}

.logo img { width: 72px; height: 72px; object-fit: cover; }

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

.nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1;
}

.nav a:hover,
.nav a.is-active { color: var(--teal); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ---------- Banner ---------- */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 140px 32px 80px;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.banner--home-intro::before {
  background: rgba(255, 255, 255, 0.42);
}

.banner--story::before {
  background: rgba(255, 255, 255, 0.4);
}

.banner > * {
  position: relative;
  z-index: 1;
}

.banner h1 {
  max-width: 820px;
  margin: 0 auto;
}

.banner--page {
  min-height: 78vh;
}

.banner--story { background-image: url("../images/MARBLE_17.jpg"); }
.banner--testimonials { background-image: url("../images/MARBLE_18.jpg"); }
.banner--signup { background-image: url("../images/MARBLE_38_signup.jpg"); }
.banner--partners { background-image: url("../images/MARBLE_33.jpg"); }
.banner--about { background-image: url("../images/MARBLE_38.jpg"); filter: none; }
.banner--home-intro { background-image: url("../images/pattern_mask.jpg"); }
.banner--home-story { background-image: url("../images/MARBLE_2.jpg"); min-height: 70vh; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 0;
  line-height: 1;
  cursor: pointer;
}
.btn:hover { background: var(--teal-hover); color: #fff !important; }

/* ---------- Content ---------- */
.section {
  padding: 88px 32px;
  background: #fff;
}

.section--tight { padding: 72px 32px 96px; }

.wrap {
  max-width: var(--content);
  margin: 0 auto;
}

.wrap--narrow { max-width: 860px; }
.wrap--text { max-width: 920px; }

.center { text-align: center; }

.lede {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray);
}

.lede + .lede { margin-top: 48px; }

.kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.portrait {
  width: min(520px, 100%);
  margin: 64px auto 0;
}

.portrait img { width: 100%; }

/* ---------- Home ---------- */
.home-about .wrap { max-width: 980px; }
.home-about .lede { margin-bottom: 40px; }
.home-about .pay-it { margin-top: 72px; }
.home-about .pay-it .lede { font-size: 32px; margin-top: 8px; }

.cta-block { text-align: center; }
.cta-block h1 { margin-bottom: 28px; color: var(--gray); }

/* ---------- Story grid ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 64px;
  max-width: 1080px;
  margin: 0 auto;
}

.story-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
}

.story-item img {
  width: 72px;
  height: auto;
}

.story-item h2 { margin-bottom: 6px; }
.story-item h3 { margin-bottom: 14px; font-size: 32px; }
.story-item p { margin: 0 0 0.7em; }
.story-item a { text-decoration: underline; text-underline-offset: 3px; }

.story-cta { text-align: center; margin-top: 72px; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 36px;
  margin-top: 56px;
}

.quote img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 28px;
}

.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--quote);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--gray);
}

.quote figcaption {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-style: normal;
}

.quotes-cta { text-align: center; margin-top: 72px; }

/* ---------- Partners ---------- */
.partners-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

.person img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.person.person--small img {
  aspect-ratio: auto;
  width: 70%;
}

.person h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 4px;
}

.person h3 a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.person p {
  margin: 0;
  font-size: 16px;
  color: var(--gray);
}

.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 72px;
}

.logos img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

/* ---------- Sign up ---------- */
.signup {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.signup .lede { margin-bottom: 56px; }

.signup .note {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 18px;
}

.signup .email-link {
  display: inline-block;
  margin: 8px 0 28px;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signup h4 {
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 18px 0 16px;
  color: var(--gray);
}

.signup ul {
  list-style: disc;
  padding: 0;
  margin: 0 auto 16px;
  display: inline-block;
  text-align: left;
}

.signup li { margin: 8px 0; }

.signup .italic {
  font-style: italic;
  margin: 12px 0 20px;
}

.signup .caps {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 18px 0 10px;
}

.signup .press { margin-top: 28px; }

/* ---------- About / women copy ---------- */
.prose {
  max-width: 860px;
  margin: 0 auto;
}

.prose .lede { margin-bottom: 40px; }

.women-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 48px 12px;
  background: #fff;
}

.women-hero img {
  width: 100%;
  height: auto;
}

.women-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.women-copy h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4e4e4;
}

.women-copy h1 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.women-copy h1 a:hover { color: var(--teal); }

.women-copy p, .women-copy li { font-size: 16px; line-height: 1.7; }
.women-copy a { text-decoration: underline; text-underline-offset: 3px; }
.women-copy .group { margin: 28px 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  text-align: center;
  padding: 56px 24px 40px;
}

.koi {
  width: 66px;
  height: 64px;
  margin: 0 auto 22px;
  opacity: 0.95;
}

.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #272727;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social a:hover { background: var(--teal); }
.social svg { width: 14px; height: 14px; fill: #fff; }

.footer-links {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links a { color: var(--teal); margin: 0 12px; }
.footer-links a:hover { color: var(--teal-hover); }

.copy {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  h1 { font-size: 40px; }
  h3, .lede, .partners-intro { font-size: 24px; }
  .women-copy h1 { font-size: 32px; }

  .site-header { padding: 16px 18px; }
  .logo, .logo img { width: 56px; height: 56px; }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 24px; width: 100%; }

  .banner { min-height: 70vh; padding: 120px 20px 56px; }
  .section { padding: 56px 20px; }

  .story-grid,
  .quotes,
  .people,
  .logos { grid-template-columns: 1fr; }

  .women-hero { padding: 8px 16px; }

  .quote img { height: 240px; }
  .person img { aspect-ratio: 4 / 3; }
}
