:root {
  /* Light, paper-led palette — ocean kept only as punctuation */
  --paper:      #f0ebdd;   /* warm ivory — matte, low-glare stock */
  --paper-alt:  #e8e1ce;   /* warm half-tone */
  --ink:        #15242e;   /* deep ocean-ink — cool, authoritative, on-brand */
  --ink-2:      rgba(21, 36, 46, .72);
  --ink-3:      rgba(21, 36, 46, .64);
  --line:       rgba(21, 36, 46, .15);
  --sand:       #c4b294;

  --ocean:      #0b2638;   /* deep band */
  --ocean-2:    #0e3144;
  --cream:      #f6f1e7;
  --cream-2:    rgba(246, 241, 231, .70);
  --line-light: rgba(246, 241, 231, .18);

  --serif: "Newsreader", "Lora", "Utopia", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", "TeX Gyre Heros", "Liberation Sans", "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --measure: 660px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; transform: translateY(10px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy h1 { animation-delay: .08s; }
  .hero-copy p  { animation-delay: .26s; }
  .hero-copy .hero-meta { animation-delay: .40s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(24px, 5vw, 84px);
  background: rgba(240, 235, 221, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .005em;
}

.brand-mark { width: clamp(56px, 6vw, 78px); height: auto; }

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-2);
}
.desktop-nav a { padding-bottom: 2px; border-bottom: 1px solid transparent; transition: border-color .18s ease, color .18s ease; }
.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--ink); border-color: var(--ink); }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.desktop-nav a:focus-visible { outline: none; }

.menu-toggle {
  display: none;
  border: 0; background: transparent;
  color: var(--ink); font: inherit; font-size: 14px; letter-spacing: .04em;
  cursor: pointer;
}

.mobile-menu {
  position: fixed; inset: 84px 0 0; z-index: 15;
  display: grid; align-content: start; gap: 22px;
  padding: 40px 26px;
  background: var(--paper);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; }
.mobile-email { margin-top: 18px; font-family: var(--sans) !important; font-size: 15px !important; color: var(--ink-2); }

/* ---------- Hero (Foundation: light, contained image) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 4.5vw, 60px);
  min-height: calc(70svh - 84px);
  background: var(--paper);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 5vw, 72px);
}
.hero-copy { max-width: 540px; }
.hero-copy h1 {
  display: grid; gap: .02em; margin: 0 0 20px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 3.8vw, 46px); line-height: 1.06;
  letter-spacing: -.008em; color: var(--ink);
}
.hero-copy h1 span { display: block; }
.hero-copy p {
  max-width: 400px; margin: 0;
  color: var(--ink-2); font-size: 15px; line-height: 1.6;
}
.hero-image img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: 50% 40%;
  filter: saturate(.58) brightness(.97) contrast(.97);
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(64px, 8vw, 108px) clamp(22px, 5vw, 64px); }
.paper { background: var(--paper); }
.paper-alt { background: var(--paper-alt); }
.ocean { background: var(--ocean); color: var(--cream); }

.section-inner { width: min(var(--max), 100%); margin: 0 auto; }

.eyebrow {
  margin: 0 0 24px;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-right: 14px; vertical-align: middle;
  background: var(--ink-3);
}
.eyebrow-light { color: var(--cream-2); }
.eyebrow-light::before { background: var(--cream-2); }

.measure { width: min(var(--measure), 100%); }
.measure p { margin: 0 0 16px; color: var(--ink-2); font-size: 15px; line-height: 1.62; }
.measure .lead {
  margin: 0 0 20px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.2vw, 29px); line-height: 1.26;
  color: var(--ink); letter-spacing: -.005em;
}
#reciprocity .lead { font-size: clamp(24px, 2.6vw, 34px); }
.lead-light { color: var(--cream) !important; }
.on-ocean { color: var(--cream-2) !important; }

/* ---------- Image band ---------- */
.image-band { background: var(--paper); padding: clamp(8px, 2vw, 20px) clamp(22px, 5vw, 64px) clamp(56px, 7vw, 92px); }
.image-band figure { width: min(1040px, 100%); margin: 0 auto; }
.image-band img {
  width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; object-position: 50% 32%;
  filter: saturate(.82) contrast(.98);
}
.image-band figcaption {
  margin-top: 14px;
  font-size: 12px; letter-spacing: .04em; color: var(--ink-3);
}

/* ---------- Stewards ---------- */
.stewards { display: grid; gap: clamp(40px, 5vw, 60px); }
.steward {
  display: grid;
  grid-template-columns: 150px minmax(0, var(--measure));
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.steward > img {
  width: 150px; aspect-ratio: 4 / 5; object-fit: cover;
  filter: grayscale(.18) saturate(.82) contrast(.98) brightness(1.01);
}
.steward:first-child > img { object-position: 50% 22%; }
.steward:last-child > img { object-position: 50% 28%; }
.steward h3 {
  margin: 0 0 14px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(25px, 2.7vw, 34px); line-height: 1.06; letter-spacing: -.01em;
}
.role {
  margin: 0 0 10px !important;
  font-size: 12px !important; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3) !important;
}

/* ---------- Council ---------- */
.council-names {
  list-style: none; margin: clamp(40px, 5vw, 64px) 0 0; padding: 0;
  width: min(var(--measure), 100%);
  border-top: 1px solid var(--line);
}
.council-names li {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid var(--line);
}
.cn-name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.3vw, 28px); line-height: 1.1; letter-spacing: -.005em;
}
.cn-role {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Contact (ocean over water) ---------- */
.contact {
  position: relative; min-height: 52svh;
  display: grid; place-items: center;
  padding: clamp(72px, 11vw, 120px) 22px clamp(92px, 13vw, 140px);
  background:
    linear-gradient(180deg, rgba(8,27,38,.42), rgba(8,27,38,.92)),
    url("assets/water-horizon.jpg") center / cover;
  color: var(--cream); overflow: hidden;
}
.contact div { position: relative; z-index: 2; width: min(580px, 100%); text-align: center; }
.contact p {
  margin: 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px); line-height: 1.26;
}
.contact a {
  display: inline-block; margin-top: 20px;
  font-size: 15px; letter-spacing: .02em; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.contact-watermark {
  position: absolute; right: clamp(20px, 6vw, 84px); top: clamp(40px, 8vw, 96px);
  width: clamp(130px, 20vw, 250px); opacity: .08; pointer-events: none;
}
.contact p.contact-colophon {
  position: absolute; z-index: 2;
  left: 50%; transform: translateX(-50%);
  bottom: clamp(26px, 5vw, 48px);
  width: min(560px, 84%); margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 12.5px; line-height: 1.5; text-align: center;
  color: rgba(246, 241, 231, .62);
}

/* ---------- Footer ---------- */
.site-footer {
  display: grid; justify-items: center; gap: 16px;
  padding: 36px 22px 42px; background: var(--paper);
  border-top: 1px solid var(--line); text-align: center;
}
.footer-note { max-width: 600px; margin: 0; font-size: 14px; line-height: 1.7; color: var(--ink-2); }
.footer-meta { margin: 0; font-size: 12px; letter-spacing: .08em; color: var(--ink-3); }
.footer-meta a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; gap: 28px; min-height: auto; }
  .hero-image { order: 2; }
  .hero-copy { order: 1; }
  .steward { grid-template-columns: 140px 1fr; }
  .steward > img { width: 140px; }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; padding: 12px 22px; }
  .brand { gap: 12px; font-size: 23px; }
  .brand-mark { width: 52px; }
  .mobile-menu { inset-top: 76px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { font-size: clamp(33px, 9vw, 42px); margin-bottom: 18px; }
  .hero-image img { aspect-ratio: 5 / 6; }
  .section { padding: 60px 24px; }
  .eyebrow { margin-bottom: 22px; }
  .image-band img { aspect-ratio: 4 / 5; }
  .steward { grid-template-columns: 1fr; gap: 26px; }
  .steward > img { width: 132px; }
  .council-names li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cn-role { text-align: left; }

  .contact p.contact-colophon {
    position: static; left: auto; transform: none; bottom: auto; width: auto;
    margin: 34px auto 0; padding: 0 4px;
  }
  .contact-watermark { width: clamp(110px, 26vw, 160px); top: 80px; }
}
