/* ================================================================
   Journal of Student Science — stylesheet
   Palette, typography, and component classes converted from the
   interactive design prototype's inline styles.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:ital,wght@0,400..800;1,400..600&family=Newsreader:ital,opsz,wght@0,6..72,400..600;1,6..72,400..500&display=swap');

:root {
  --teal: #3E8494;
  --sky: #5AA6B4;
  --periwinkle: #6E86B8;
  --navy: #33456A;
  --lilac: #B6A3D6;
  --sprout: #8FB86A;
  --paper: #FBF9F6;
  --ink: #2C3A54;
  --muted: #5C6B82;
  --border: #EBE4DB;
  --tint: #F3EEE8;

  /* supporting tones used throughout the prototype */
  --navy-hover: #3E5384;
  --teal-tint-bg: #E7F1F0;
  --teal-tint-border: #CFE3E2;
  --input-border: #E4DCD1;
  --input-bg: #FCFBF9;
  --footer-bg: #2C3A54;
  --footer-muted: #9AA8C0;
  --footer-label: #7C8AA8;
  --body-muted-2: #6B7890;
  --body-muted-3: #8A96A8;
}

/* ---------------- Global resets ---------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  min-height: 100vh;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #CDE3E8;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--sky) !important;
  box-shadow: 0 0 0 3px rgba(90, 166, 180, 0.18);
}

button {
  font-family: inherit;
}

/* ---------------- Layout helpers ---------------- */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 28px;
}

.section--narrow {
  max-width: 900px;
}

.section--prose {
  max-width: 820px;
}

.section--tight {
  max-width: 760px;
}

.section--hero {
  padding-top: 70px;
  padding-bottom: 20px;
  text-align: center;
}

.band-tint {
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band-navy {
  background: var(--navy);
  color: #fff;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 246, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.masthead-link {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.masthead-mark {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.masthead-mark span:nth-child(1) { color: var(--sky); }
.masthead-mark span:nth-child(2) { color: var(--periwinkle); }
.masthead-mark span:nth-child(3) { color: var(--navy); }

.masthead-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.masthead-caption span {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body-muted-3);
  font-weight: 600;
}

.masthead-caption span:last-child {
  color: var(--navy);
  font-weight: 700;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #42506A;
  padding: 10px 10px;
  border-radius: 9px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-item:hover {
  background: #F1EAE1;
}

.nav-item__underline {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.btn-apply-nav {
  margin-left: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 10px 17px;
  border-radius: 11px;
  box-shadow: 0 6px 16px -8px rgba(51, 69, 106, 0.7);
  flex: none;
  min-height: 44px;
}

.btn-apply-nav:hover {
  background: var(--navy-hover);
}

.nav-toggle {
  display: none;
}

/* ---------------- Buttons (generic) ---------------- */
.btn {
  border: none;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 13px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px -10px rgba(51, 69, 106, 0.75);
}

.btn-primary:hover {
  background: var(--navy-hover);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1.5px solid #DcD3C8;
}

.btn-secondary:hover {
  background: #F1EAE1;
}

.btn-outline-teal {
  color: var(--navy);
  background: #fff;
  border: 1.5px solid #B9D3D2;
}

.btn-outline-teal:hover {
  background: #F1EAE1;
}

.btn-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-full {
  width: 100%;
}

/* ---------------- Hero / masthead ---------------- */
.hero {
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.eyebrow--loose {
  letter-spacing: 0.22em;
}

.hero-masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 28px 0 14px;
}

.hero-masthead__letters {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 108px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
}

.hero-masthead__letters span:nth-child(1) { color: var(--sky); }
.hero-masthead__letters span:nth-child(2) { color: var(--periwinkle); }
.hero-masthead__letters span:nth-child(3) { color: var(--navy); }

.hero-masthead__rule {
  height: 2px;
  width: 220px;
  background: var(--navy);
  opacity: 0.85;
}

.hero-masthead__caption {
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #42506A;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 760px;
  margin: 24px auto 0;
  text-wrap: balance;
}

.hero p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 660px;
  margin: 20px auto 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-chips {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--body-muted-3);
  font-weight: 500;
}

/* ---------------- Page headers (non-home) ---------------- */
.page-head h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.15;
  color: var(--ink);
  margin: 18px 0 18px;
}

.page-head p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------------- Cards ---------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.card-shadow {
  box-shadow: 0 12px 30px -22px rgba(52, 40, 28, 0.5);
}

.card-shadow-lg {
  box-shadow: 0 16px 40px -30px rgba(52, 40, 28, 0.6);
}

/* ---------------- Section headings (centered eyebrow + h2) ---------------- */
.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 34px;
  color: var(--ink);
  margin: 12px 0 0;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 10px auto 0;
}

/* ---------------- Grids ---------------- */
.grid {
  display: grid;
  gap: 20px;
}

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

/* ---------------- Three-steps cards (home) ---------------- */
.step-card {
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px -24px rgba(52, 40, 28, 0.6);
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: block;
  width: 100%;
}

.step-card:hover {
  border-color: #B9D3D2;
  transform: translateY(-2px);
}

.step-card--accent {
  background: var(--teal-tint-bg);
  border-color: var(--teal-tint-border);
}

.step-card--accent:hover {
  border-color: #9EC9C8;
}

.step-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-card__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}

.step-card__tag {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--body-muted-3);
}

.step-card--accent .step-card__tag { color: var(--teal); }

.step-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 8px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0;
}

.step-card--accent p { color: #4E6273; }

.step-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.step-card--accent .step-card__cta { color: var(--navy); }

/* ---------------- Pillars ---------------- */
.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 12px 30px -22px rgba(52, 40, 28, 0.5);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
}

.pillar-card p {
  font-size: 16px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0;
}

/* ---------------- Discipline chips band ---------------- */
.discipline-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--input-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #3A4763;
}

.chip__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex: none;
}

/* ---------------- Journey (5 step columns) ---------------- */
.journey-step {
  text-align: center;
}

.journey-step__num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 15px;
  background: #fff;
  border: 1.5px solid var(--input-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
}

.journey-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.journey-step p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body-muted-2);
  margin: 0;
}

/* ---------------- Why it matters (navy band) ---------------- */
.why-band .wrap {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-band .eyebrow {
  color: #9FD0D6;
}

.why-band h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.15;
  margin: 16px 0 18px;
  color: #fff;
}

.why-band p {
  font-size: 17px;
  line-height: 1.62;
  color: #C9D2E0;
  margin: 0 0 16px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
}

.stat-tile__big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #9FD0D6;
  line-height: 1;
}

.stat-tile__label {
  font-size: 14.5px;
  color: #C9D2E0;
  margin-top: 8px;
  line-height: 1.4;
}

/* spec stat cards (guidelines) reuse similar shape but light */
.spec-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
}

.spec-tile__big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--teal);
  line-height: 1.05;
}

.spec-tile__label {
  font-size: 14px;
  color: var(--body-muted-3);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---------------- Featured / archive paper cards ---------------- */
.paper-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px -24px rgba(52, 40, 28, 0.6);
  display: flex;
  flex-direction: column;
}

.paper-card__rail {
  height: 5px;
}

.paper-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.paper-card__discipline {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.paper-card__title {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.28;
  color: var(--ink);
  margin: 12px 0 12px;
}

.paper-card__abstract {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0 0 18px;
  flex: 1;
}

.paper-card__author {
  font-size: 13.5px;
  color: var(--body-muted-3);
  border-top: 1px solid #F0EAE1;
  padding-top: 14px;
}

/* archive variant: horizontal side rail */
.paper-card--archive {
  flex-direction: row;
}

.paper-card--archive .paper-card__rail {
  width: 6px;
  height: auto;
  flex: none;
}

.paper-card--archive .paper-card__body {
  padding: 26px 28px;
}

.paper-card--archive .paper-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.paper-card--archive .paper-card__issue {
  font-size: 12.5px;
  color: var(--body-muted-3);
  font-weight: 600;
}

.paper-card--archive .paper-card__title {
  font-size: 21px;
}

.paper-card--archive .paper-card__abstract {
  flex: none;
}

.paper-card--archive .paper-card__author strong {
  color: var(--navy);
}

/* ---------------- Apply band (above footer) ---------------- */
.apply-band {
  padding: 20px 28px 60px;
}

.apply-band__panel {
  background: var(--teal-tint-bg);
  border: 1px solid var(--teal-tint-border);
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.apply-band__text {
  flex: 1;
  min-width: 280px;
}

.apply-band__text h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--ink);
  margin: 0 0 6px;
}

.apply-band__text p {
  font-size: 16.5px;
  color: #4E6273;
  margin: 0;
}

.apply-band__btn {
  flex: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 16px 32px;
  border-radius: 13px;
  box-shadow: 0 10px 24px -12px rgba(51, 69, 106, 0.8);
  min-height: 44px;
}

.apply-band__btn:hover {
  background: var(--navy-hover);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--footer-bg);
  color: #C9D2E0;
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 28px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-mark {
  font-family: 'Newsreader', serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.footer-mark span:nth-child(1) { color: #7FC2CC; }
.footer-mark span:nth-child(2) { color: #9FB2DC; }
.footer-mark span:nth-child(3) { color: #E6EBF3; }

.footer-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: var(--footer-muted);
  margin: 16px 0 0;
  max-width: 300px;
}

.footer-col-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-label);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link {
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #C9D2E0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  padding: 0;
  min-height: 32px;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--footer-label);
}

/* ---------------- About page ---------------- */
.callout-teal {
  background: var(--teal-tint-bg);
  border: 1px solid var(--teal-tint-border);
  border-radius: 22px;
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.callout-teal__icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-teal h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 23px;
  color: var(--ink);
  margin: 0 0 6px;
}

.callout-teal p {
  font-size: 16.5px;
  line-height: 1.58;
  color: #4E6273;
  margin: 0;
}

.principle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 18px;
}

.principle-card__glyph {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 20px;
}

.principle-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0 6px;
}

.principle-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 16px 40px -30px rgba(52, 40, 28, 0.6);
}

.mission-card h2 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 14px;
}

.mission-card p {
  font-size: 17.5px;
  line-height: 1.66;
  color: #4E5B72;
  margin: 0 0 16px;
}

.mission-card p:last-child {
  margin-bottom: 0;
}

/* ---------------- Guidelines: framework list ---------------- */
.framework-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.framework-row__tile {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.framework-row h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 6px;
}

.framework-row p {
  font-size: 15.5px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0;
}

.stack-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------------- MLA / navy citation block ---------------- */
.navy-block {
  background: var(--navy);
  border-radius: 22px;
  padding: 40px;
  color: #fff;
}

.navy-block .eyebrow {
  color: #9FD0D6;
}

.navy-block h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin: 12px 0 10px;
}

.navy-block p.desc {
  font-size: 16px;
  line-height: 1.6;
  color: #C9D2E0;
  margin: 0 0 22px;
  max-width: 640px;
}

.citation-skeleton {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px;
  font-family: 'Newsreader', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #EAF0F6;
}

.citation-skeleton .intext {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13.5px;
  color: #9FB2DC;
  display: block;
  margin-top: 12px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------- Drafting: shared doc mock ---------------- */
.doc-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 50px -34px rgba(52, 40, 28, 0.7);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.doc-mock__header {
  background: var(--tint);
  border-bottom: 1px solid #E7DFD4;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-mock__filename {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.doc-mock__avatars {
  display: flex;
  align-items: center;
}

.avatar-chip {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.avatar-chip--you { background: var(--sky); }
.avatar-chip--ed { background: #8067B0; font-size: 11px; margin-left: -9px; }

.doc-mock__body {
  padding: 26px 26px 30px;
}

.doc-mock__title {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.doc-mock__byline {
  font-size: 12px;
  color: #A2AAB8;
  margin-bottom: 18px;
}

.doc-section-rail {
  border-left: 2px solid;
  padding: 2px 0 2px 14px;
  margin-bottom: 15px;
}

.doc-section-rail__name {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.doc-section-rail__hint {
  font-size: 13px;
  color: #98A2B2;
  line-height: 1.5;
  margin-top: 3px;
}

.editor-comment {
  margin-top: 18px;
  background: #FBF6EE;
  border: 1px solid #F0E4CE;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.editor-comment__avatar {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 999px;
  background: #8067B0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-comment__title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.editor-comment__body {
  font-size: 12.5px;
  color: var(--body-muted-2);
  line-height: 1.5;
}

.draft-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.draft-step-card__num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-tint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--teal);
}

.draft-step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0 6px;
}

.draft-step-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0;
}

.two-col-drafting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ---------------- Submission info: timeline ---------------- */
.timeline h2, .review-heading {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 26px;
}

.timeline-row {
  display: flex;
  gap: 22px;
}

.timeline-row__date {
  flex: none;
  width: 110px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  padding-top: 1px;
}

.timeline-row__rail {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-row__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--sky);
}

.timeline-row__line {
  width: 2px;
  flex: 1;
  background: #E4DCD1;
}

.timeline-row__content {
  padding-bottom: 26px;
}

.timeline-row__content h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 5px;
}

.timeline-row__content p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.process-card__num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--teal-tint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
}

.process-card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.process-card__head h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
}

.process-card__time {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-muted-3);
}

.process-card p {
  font-size: 15.5px;
  line-height: 1.56;
  color: var(--muted);
  margin: 8px 0 0;
}

.reassure-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}

.reassure-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.reassure-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
}

.reassure-card p {
  font-size: 15.5px;
  line-height: 1.56;
  color: var(--body-muted-2);
  margin: 0;
}

.navy-panel-center {
  background: var(--navy);
  border-radius: 22px;
  padding: 44px;
  text-align: center;
  color: #fff;
}

.navy-panel-center h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 10px;
  color: #fff;
}

.navy-panel-center p {
  font-size: 17px;
  color: #C9D2E0;
  max-width: 520px;
  margin: 0 auto 24px;
}

.btn-navy-panel {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  background: #9FD0D6;
  padding: 15px 30px;
  border-radius: 13px;
  min-height: 44px;
}

.btn-navy-panel:hover {
  background: #B4DBDF;
}

/* ---------------- FAQ ---------------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item__toggle {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.faq-item__q {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
}

.faq-item__sign {
  flex: none;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}

.faq-item__answer {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------------- Apply / EOI form ---------------- */
.eoi-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.eoi-grid h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.14;
  color: var(--ink);
  margin: 18px 0 18px;
}

.eoi-grid > div:first-child > p.lead {
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0 0 24px;
}

.perk-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.perk-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.perk-item__check {
  flex: none;
  margin-top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #E9F0E3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-item span.text {
  font-size: 15.5px;
  line-height: 1.5;
  color: #4E5B72;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 50px -34px rgba(52, 40, 28, 0.7);
}

.form-card h2 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 20px;
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 11px;
  padding: 12px 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--input-bg);
}

.field textarea {
  resize: vertical;
}

.field-error {
  font-size: 12.5px;
  color: #B0453F;
  margin-top: 5px;
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #D98A83;
}

.field.has-error .field-error {
  display: block;
}

.form-submit {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 15px;
  border-radius: 12px;
  margin-top: 2px;
  min-height: 44px;
}

.form-submit:hover {
  background: var(--navy-hover);
}

.form-disclaimer {
  font-size: 12.5px;
  color: #9AA4B4;
  text-align: center;
  margin: 0;
}

.form-success {
  background: var(--teal-tint-bg);
  border: 1px solid var(--teal-tint-border);
  border-radius: 16px;
  padding: 22px 24px;
  text-align: center;
  display: none;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  font-family: 'Newsreader', serif;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 6px;
}

.form-success p {
  font-size: 15px;
  color: #4E6273;
  margin: 0;
}

.form-error-banner {
  background: #FBEAE8;
  border: 1px solid #E9BEB8;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #8B342C;
  display: none;
}

.form-error-banner.is-visible {
  display: block;
}

.form-card.is-submitted .form-col {
  display: none;
}

.form-card.is-submitted .form-success {
  display: block;
}

/* honeypot - visually hidden but present in DOM */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------- Archive ---------------- */
.archive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.archive-head h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 44px;
  color: var(--ink);
  margin: 0;
}

.archive-count {
  font-size: 15px;
  color: var(--body-muted-3);
  font-weight: 500;
  padding-bottom: 8px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  cursor: pointer;
  border: 1.5px solid var(--input-border);
  background: #fff;
  color: #42506A;
  border-radius: 999px;
  padding: 9px 17px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
}

.filter-chip.is-active {
  color: #fff;
}

/* ---------------- Editorial board ---------------- */
.team-group h2 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.person-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.person-card__avatar {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 22px;
}

.person-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
}

.person-card p {
  font-size: 14px;
  color: var(--body-muted-2);
  margin: 0;
  line-height: 1.4;
}

/* ---------------- Brand page ---------------- */
.mark-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px -26px rgba(52, 40, 28, 0.6);
  opacity: 0.92;
}

.mark-card--chosen {
  border: 2px solid var(--sky);
  box-shadow: 0 16px 40px -26px rgba(62, 132, 148, 0.7);
  opacity: 1;
}

.mark-card__stage {
  position: relative;
  height: 230px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.mark-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--body-muted-3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.mark-card__badge--chosen {
  background: var(--teal);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mark-card__info {
  padding: 24px;
}

.mark-card__info h3 {
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 6px;
}

.mark-card__info p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body-muted-2);
  margin: 0;
}

.mark-1a-letters {
  font-family: 'Newsreader', serif;
  font-size: 74px;
  line-height: 0.9;
  font-weight: 500;
}

.mark-1a-letters span:nth-child(1) { color: var(--sky); }
.mark-1a-letters span:nth-child(2) { color: var(--periwinkle); }
.mark-1a-letters span:nth-child(3) { color: var(--navy); }

.usage-example {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-example--dark {
  background: var(--navy);
}

.usage-example--light {
  background: #fff;
  border: 1px solid var(--border);
  gap: 34px;
}

.swatch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.swatch__block {
  width: 96px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.swatch__name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.swatch__hex {
  font-size: 11.5px;
  color: var(--body-muted-3);
  font-family: ui-monospace, monospace;
}

.type-specimen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid #F0EAE1;
  padding-top: 24px;
}

.type-specimen .name {
  font-size: 13px;
  color: var(--body-muted-3);
  margin-top: 4px;
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-grid h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.13;
  color: var(--ink);
  margin: 18px 0 18px;
}

.contact-help-box {
  background: var(--teal-tint-bg);
  border: 1px solid var(--teal-tint-border);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 26px;
}

.contact-help-box .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-help-box .body {
  font-size: 14.5px;
  color: #4E6273;
  line-height: 1.5;
}

.contact-tile {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-tile__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-tint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-tile__label {
  font-size: 13px;
  color: var(--body-muted-3);
  font-weight: 600;
}

.contact-tile__value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}

.contact-tiles {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why-band .wrap { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .eoi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col-drafting { grid-template-columns: 1fr; }
  .doc-mock { position: static; }
  .type-specimen-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-masthead__letters { font-size: 72px; }
  .hero h1, .page-head h1, .contact-grid h1, .eoi-grid h1 { font-size: 32px; }
  .site-header__inner {
    flex-wrap: wrap;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .form-row-2 { grid-template-columns: 1fr; }
  .apply-band__panel { flex-direction: column; align-items: stretch; text-align: center; }
  .apply-band__btn { width: 100%; }
  .archive-head { flex-direction: column; align-items: flex-start; }
  .navy-block, .navy-panel-center, .mission-card, .callout-teal { padding: 28px; }
  .callout-teal { flex-direction: column; text-align: center; }
  .section--hero { padding-top: 40px; }
}
