/* ════════════════════════════════════════════════════════════════
   RUORI — SHARED STYLESHEET
   v1.0 · ruori.com
   ════════════════════════════════════════════════════════════════ */

:root {
  --hull: #0F1419;
  --sailcloth: #F5F2EB;
  --paper: #EDE8DD;
  --brass: #C8A96E;
  --brass-deep: #B89854;
  --deep-water: #2A4A52;
  --oxblood: #8B3A2A;
  --rule-light: rgba(245, 242, 235, 0.14);
  --rule-dark: rgba(15, 20, 25, 0.18);
  --muted-light: rgba(245, 242, 235, 0.65);
  --muted-dark: rgba(15, 20, 25, 0.62);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--sailcloth);
  color: var(--hull);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ──────── TYPOGRAPHY UTILITIES ──────── */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--brass { color: var(--brass); }
.eyebrow--muted { color: var(--muted-dark); }
.eyebrow--muted-light { color: var(--muted-light); }

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-h2 em { font-style: italic; }

/* ──────── KEEL-LINE ORNAMENT ──────── */

.keel-rule {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin: 0 auto;
}

.keel-rule span { background: var(--brass); display: block; }
.keel-rule span:nth-child(1) { width: 64px; height: 2px; }
.keel-rule span:nth-child(2) { width: 44px; height: 1.5px; opacity: 0.6; }
.keel-rule span:nth-child(3) { width: 28px; height: 1px; opacity: 0.35; }

.keel-rule--hull span { background: var(--hull); }

.section-divider {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
}

.section-divider span { height: 1px; background: var(--brass); }
.section-divider span:nth-child(1) { width: 80px; }
.section-divider span:nth-child(2) { width: 60px; opacity: 0.55; height: 0.5px; }
.section-divider span:nth-child(3) { width: 40px; opacity: 0.3; height: 0.5px; }

/* ──────── NAV ──────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hull);
  border-bottom: 0.5px solid var(--rule-light);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sailcloth);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--sailcloth);
}

.nav__brand-mark { width: 26px; height: 26px; flex-shrink: 0; }

.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { font-size: 13px; color: var(--muted-light); transition: color 0.2s; }
.nav__links a:hover { color: var(--sailcloth); }
.nav__links a.is-active { color: var(--brass); }

.nav__cta {
  font-size: 13px;
  color: var(--brass);
  border: 0.5px solid var(--brass);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav__cta:hover { background: var(--brass); color: var(--hull); }

/* ──────── BUTTONS ──────── */

.btn-primary {
  display: inline-block;
  background: var(--brass);
  color: var(--hull);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  font-size: 14px;
  color: var(--sailcloth);
  padding: 14px 0;
  border-bottom: 0.5px solid var(--brass);
  transition: opacity 0.2s;
}

.btn-secondary:hover { opacity: 0.7; }

.btn-secondary--dark { color: var(--hull); border-bottom-color: var(--hull); }

/* ──────── HERO ──────── */

.hero {
  background: var(--hull);
  color: var(--sailcloth);
  min-height: 92vh;
  padding: 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero__bg-mark {
  position: absolute;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(200, 169, 110, 0.025) 80px,
    rgba(200, 169, 110, 0.025) 81px
  );
  pointer-events: none;
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__eyebrow { margin-bottom: 32px; }

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero__headline em { font-style: italic; }

.hero__sub-display {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--brass);
  margin-bottom: 40px;
}

.hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--muted-light);
  max-width: 660px;
  margin: 0 auto 48px;
}

.hero__cta { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

.hero__three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 96px;
  padding-top: 48px;
  border-top: 0.5px solid var(--rule-light);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.hero__three-up-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}

.hero__three-up-item p { font-size: 13px; line-height: 1.65; color: var(--muted-light); }

/* ──────── PAGE HEADER (interior pages) ──────── */

.page-header {
  background: var(--hull);
  color: var(--sailcloth);
  padding: 80px 56px 96px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(200, 169, 110, 0.025) 80px,
    rgba(200, 169, 110, 0.025) 81px
  );
  pointer-events: none;
}

.page-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.page-header__eyebrow { margin-bottom: 16px; }

.page-header__title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.page-header__title em { font-style: italic; }

.page-header__intro {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted-light);
  max-width: 480px;
}

/* ──────── INTERSTITIAL ──────── */

.interstitial {
  padding: 96px 56px;
  background: var(--brass);
  color: var(--hull);
  position: relative;
  overflow: hidden;
}

.interstitial--hull { background: var(--hull); color: var(--sailcloth); }

.interstitial__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.interstitial__quote {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.interstitial__quote em { font-style: italic; }

/* ──────── SECTIONS ──────── */

.section { padding: 120px 56px; position: relative; }
.section--dark { background: var(--hull); color: var(--sailcloth); }
.section--light { background: var(--sailcloth); color: var(--hull); }
.section--paper { background: var(--paper); color: var(--hull); }

.container { max-width: 1180px; margin: 0 auto; }
.container--narrow { max-width: 920px; margin: 0 auto; }

/* ──────── COURSE DIAGRAM ──────── */

.course-diagram {
  margin: 48px 0 80px;
  padding: 56px 32px;
  background: rgba(15, 20, 25, 0.03);
  border-radius: 4px;
  position: relative;
}

.course-diagram__svg {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  height: auto;
}

.course-diagram__caption {
  text-align: center;
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--muted-dark);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ──────── PILLARS ──────── */

.section__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.section__intro-lede {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted-dark);
}

.pillars { display: grid; grid-template-columns: 1fr; gap: 0; }

.pillar {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 48px;
  padding: 64px 0;
  border-top: 0.5px solid var(--rule-dark);
  align-items: start;
}

.pillar:last-child { border-bottom: 0.5px solid var(--rule-dark); }

.pillar__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--brass);
  padding-top: 8px;
}

.pillar__title-block h3 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar__title-block .pillar__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.pillar__body p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.pillar__body p:first-child {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--hull);
}

/* ──────── ROLES ──────── */

.roles__group { margin-bottom: 64px; }

.roles__group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--rule-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.section--light .roles__group-label { border-bottom-color: var(--rule-dark); }
.roles__group-label .roles__group-meta { font-size: 11px; color: var(--muted-light); letter-spacing: 0.08em; }
.section--light .roles__group-label .roles__group-meta { color: var(--muted-dark); }

.roles__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.role-card {
  background: rgba(245, 242, 235, 0.04);
  border: 0.5px solid var(--rule-light);
  border-radius: 4px;
  padding: 32px;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.role-card:hover {
  background: rgba(245, 242, 235, 0.06);
  border-color: rgba(200, 169, 110, 0.4);
}

.role-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.role-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.role-card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  text-transform: uppercase;
}

.role-card p { font-size: 14px; line-height: 1.7; color: var(--muted-light); margin-bottom: 20px; }

.role-card__details {
  border-top: 0.5px solid var(--rule-light);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  text-transform: uppercase;
}

.roles__footer {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 0.5px solid var(--rule-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.roles__footer p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
}

/* ──────── LANDING PAGE ──────── */

.landing__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: start;
}

.landing__intro-body p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.landing__intro-body p:first-child {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
}

.landing__stat {
  font-family: var(--serif);
  font-size: clamp(96px, 12vw, 160px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--brass);
  margin-bottom: 16px;
}

.landing__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--rule-dark);
  border-radius: 4px;
  overflow: hidden;
}

.phase { background: var(--sailcloth); padding: 40px; }

.phase__num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 24px;
}

.phase__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.phase__when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}

.phase__body { font-size: 14px; line-height: 1.7; color: var(--muted-dark); }

.landing__quote {
  margin-top: 96px;
  padding: 64px 56px;
  background: var(--hull);
  color: var(--sailcloth);
  border-radius: 4px;
  position: relative;
}

.landing__quote-rule {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.landing__quote-rule span { background: var(--brass); height: 1.5px; }
.landing__quote-rule span:nth-child(1) { width: 48px; }
.landing__quote-rule span:nth-child(2) { width: 32px; opacity: 0.6; height: 1px; }
.landing__quote-rule span:nth-child(3) { width: 16px; opacity: 0.35; height: 0.5px; }

.landing__quote-text {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.landing__quote-attr {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.landing__quote-attr strong { font-weight: 500; color: var(--sailcloth); }

/* ──────── THE WATCH ──────── */

.notes__list { display: grid; grid-template-columns: 1fr; }

.note {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 48px;
  padding: 40px 0;
  border-top: 0.5px solid var(--rule-dark);
  align-items: start;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.note:hover { background: rgba(15, 20, 25, 0.03); }
.note:last-child { border-bottom: 0.5px solid var(--rule-dark); }

.note__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-dark);
  padding-top: 8px;
}

.note__title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.note__title em { font-style: italic; }

.note__excerpt { font-size: 14px; line-height: 1.7; color: var(--muted-dark); max-width: 600px; }
.note__topic { text-align: right; padding-top: 8px; }

.note__topic-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  border: 0.5px solid var(--brass);
  padding: 4px 10px;
  border-radius: 2px;
}

.notes__cta { margin-top: 64px; text-align: center; padding: 32px 0; }
.notes__cta p { font-family: var(--serif); font-size: 22px; font-style: italic; margin-bottom: 16px; }

/* ──────── BEARINGS / ABOUT — sharpened, bio-first version ──────── */

.bearings__bio {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 56px;
  background: var(--paper);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
}

.bearings__bio-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--hull);
}

.bearings__bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bearings__bio-avatar {
  width: 100px;
  height: 100px;
  background: var(--hull);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--sailcloth);
  letter-spacing: -0.01em;
}

.bearings__bio-info h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.bearings__bio-info .partner-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.bearings__bio-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--hull);
}

.bearings__map {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.bearings__map-svg { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }

.bearings__map-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 24px;
}

.bearings__lede {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.bearings__lede em { font-style: italic; }

.bearings__lede-stamp {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  margin-top: 32px;
  font-size: 0.85em;
}

.bearings__story {
  max-width: 720px;
  margin: 0 auto;
}

.bearings__story p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.bearings__story p.bearings__story-pull {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 48px auto;
  max-width: 600px;
  color: var(--brass);
}

.bearings__story h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 64px 0 20px;
}

.bearings__story h3 em { font-style: italic; }

.bearings__close {
  text-align: center;
  margin: 96px auto 0;
  max-width: 720px;
  padding-top: 64px;
  border-top: 0.5px solid var(--rule-dark);
}

.bearings__close-line {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--brass);
  letter-spacing: -0.01em;
}

/* ──────── LANDING PHASE ILLUSTRATIONS ──────── */

.phase__icon {
  display: block;
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
}

.phase__icon line, .phase__icon circle, .phase__icon path {
  stroke: var(--brass);
  fill: none;
}

/* ──────── START A SEARCH / INTAKE ──────── */

.intake {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 64px;
}

.intake__copy h2 { line-height: 1.05; margin-bottom: 32px; }

.intake__copy p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--muted-dark);
}

.intake__copy p:first-of-type {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--hull);
}

.intake__detail {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule-dark);
}

.intake__detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--rule-dark);
  align-items: start;
}

.intake__detail-item:last-child { border-bottom: none; }

.intake__detail-item dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  padding-top: 4px;
}

.intake__detail-item dd { font-size: 14px; line-height: 1.65; }

.intake__form {
  background: var(--sailcloth);
  border: 0.5px solid var(--rule-dark);
  border-radius: 4px;
  padding: 48px;
}

.intake__form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.intake__form-lede {
  font-size: 14px;
  color: var(--muted-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-field { margin-bottom: 24px; }

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 0.5px solid var(--rule-dark);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--hull);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

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

.form-submit {
  width: 100%;
  background: var(--hull);
  color: var(--sailcloth);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 16px;
  border: none;
  border-radius: 4px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: #1a2026; }

.form-note {
  font-size: 12px;
  color: var(--muted-dark);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* ──────── FOOTER ──────── */

.site-footer { background: var(--hull); color: var(--sailcloth); padding: 80px 56px 32px; }
.site-footer__inner { max-width: 1180px; margin: 0 auto; }

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid var(--rule-light);
}

.site-footer__brand .nav__brand { font-size: 36px; margin-bottom: 24px; }

.site-footer__brand p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--muted-light);
  max-width: 380px;
}

.site-footer__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  font-weight: 500;
}

.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a { font-size: 13px; color: var(--muted-light); transition: color 0.2s; }
.site-footer__col a:hover { color: var(--sailcloth); }

.site-footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  text-transform: uppercase;
}

/* ──────── RESPONSIVE ──────── */

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .section, .interstitial { padding: 64px 24px; }
  .hero { padding: 32px 24px; min-height: auto; }
  .hero__three-up { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  .page-header { padding: 48px 24px 64px; }
  .page-header__inner, .section__intro, .landing__intro, .intake {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pillar { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .roles__grid, .landing__phases { grid-template-columns: 1fr; }
  .note { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; margin: 0; padding-left: 0; padding-right: 0; }
  .note__topic { text-align: left; }
  .site-footer { padding: 48px 24px 32px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
  .pillar__title-block h3 { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .intake__form { padding: 32px 24px; }
  .bearings__bio { padding: 32px 24px; grid-template-columns: 1fr; gap: 24px; }
  .bearings__bio-avatar, .bearings__bio-photo { margin: 0 auto; }
}
