/* Conversational Frequencies — monochrome, ink on paper */
:root {
  --paper: #f7f5f0;
  --paper-2: #efece5;
  --ink: #141414;
  --ink-2: #3a3a3a;
  --muted: #74716b;
  --line: rgba(20, 20, 20, 0.14);
  --max: 1100px;
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--paper); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }

/* ---------- Header ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { font-family: var(--serif); font-size: 22px; font-weight: 500; text-decoration: none; letter-spacing: .01em; white-space: nowrap; font-style: italic; }
.nav { display: flex; gap: 30px; list-style: none; }
.nav a { text-decoration: none; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] { border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* ---------- Type ---------- */
.eyebrow { font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.hero h1, .page-title { font-family: var(--serif); font-weight: 400; line-height: 1; letter-spacing: -.01em; }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 42px); line-height: 1.15; margin-bottom: 18px; }
h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 6px; }
.lede { max-width: 560px; font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--ink-2); margin-top: 26px; }
p + p { margin-top: 14px; }
.muted { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(52px, 10vw, 118px); }
.hero h1 em { font-style: italic; }
.hero .lede { margin-left: auto; margin-right: auto; }
.hero-art { margin: 56px auto 0; width: min(760px, 100%); }

/* ---------- Doodles (hand-drawn icons) ---------- */
.doodle { position: absolute; pointer-events: none; height: auto; opacity: .92; }

/* ---------- Sections ---------- */
section { padding: 90px 0; border-top: 1px solid var(--line); position: relative; }
.section-label { font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 44px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ""; width: 34px; height: 1px; background: var(--ink); }
.section-label.center { justify-content: center; }
.section-label.center::after { content: ""; width: 34px; height: 1px; background: var(--ink); }

.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { border: 1px solid var(--line); padding: 30px; text-decoration: none; display: block; transition: border-color .2s; }
a.card:hover { border-color: var(--ink); }
.card .tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: block; }
.card p { color: var(--ink-2); font-size: 15px; }

/* Credits */
.credits { list-style: none; border-top: 1px solid var(--line); }
.credits li { display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.credits .year { color: var(--muted); font-size: 13px; letter-spacing: .08em; }
.credits .title { font-family: var(--serif); font-size: 22px; font-style: italic; }
.credits .role { color: var(--muted); font-size: 13px; text-align: right; }
.placeholder { outline: 1px dashed rgba(20, 20, 20, .35); outline-offset: 4px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; text-decoration: none; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--ink); color: var(--ink); background: transparent; transition: background .2s, color .2s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: transparent; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.btn-row.center { justify-content: center; }

.contact-list { list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.contact-list .k { color: var(--muted); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; }
.contact-list a, .contact-list .v { font-family: var(--serif); font-size: 24px; text-decoration: none; }
.contact-list a { border-bottom: 1px solid var(--ink); }

.page-head { padding: 100px 0 70px; position: relative; }
.page-title { font-size: clamp(44px, 7.5vw, 84px); }

/* ---------- Team ---------- */
.team { display: grid; gap: 34px; grid-template-columns: repeat(3, 1fr); }
.member { text-decoration: none; display: block; text-align: center; }
.photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); transition: border-color .3s; }
.photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: transform .6s ease; position: relative; }
.photo .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: 72px; color: rgba(20,20,20,.18); }
.photo .view { position: absolute; left: 50%; bottom: 18px; transform: translate(-50%, 6px); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 8px 16px; background: var(--paper); border: 1px solid var(--ink); opacity: 0; transition: opacity .3s, transform .3s; white-space: nowrap; z-index: 1; }
.member:hover .photo, .member:focus-visible .photo { border-color: var(--ink); }
.member:hover .photo img { transform: scale(1.03); }
.member:hover .view, .member:focus-visible .view { opacity: 1; transform: translate(-50%, 0); }
.member .name { font-family: var(--serif); font-size: 28px; margin-top: 20px; line-height: 1.2; }
.member .role { margin-top: 6px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ---------- Person page ---------- */
.person { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; padding: 70px 0 60px; }
.person .photo { }
.back { display: inline-block; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-decoration: none; margin-bottom: 30px; }
.back:hover { color: var(--ink); }
.facts { list-style: none; margin-top: 34px; border-top: 1px solid var(--line); }
.facts li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts .k { color: var(--muted); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; }
.facts li > span:last-child { font-family: var(--serif); font-size: 19px; }
.others { display: flex; gap: 14px; flex-wrap: wrap; }
.sub { border: 0; padding: 60px 0 0; }

/* ---------- Blog ---------- */
.post-list { list-style: none; border-top: 1px solid var(--line); }
.post-list li { border-bottom: 1px solid var(--line); }
.post-list a { display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 34px 0; text-decoration: none; }
.post-list .date { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-top: 10px; }
.post-list h3 { font-size: 32px; font-weight: 400; }
.post-list a:hover h3 { font-style: italic; }
.post-list p { color: var(--ink-2); margin-top: 4px; }
.post-list .by { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

.article { max-width: 680px; margin: 0 auto; padding: 90px 0 40px; }
.article .meta { color: var(--muted); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-top: 24px; }
.article .page-title { font-size: clamp(40px, 6.5vw, 64px); line-height: 1.05; }
.prose { margin-top: 54px; font-family: var(--serif); font-size: 22px; line-height: 1.65; color: var(--ink-2); }
.prose p + p { margin-top: 22px; }
.prose h2 { margin-top: 48px; font-size: 32px; color: var(--ink); }
.prose blockquote { margin: 40px 0; padding: 6px 0 6px 26px; border-left: 1px solid var(--ink); font-style: italic; font-size: 27px; color: var(--ink); }
.prose img { margin: 36px 0; }
.post-nav { max-width: 680px; margin: 0 auto 50px; padding-top: 30px; border-top: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .team { grid-template-columns: 1fr 1fr; }
  .person { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .person .photo { max-width: 340px; }
  .person > div[style] { position: static !important; }
  .doodle { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .site-header { position: static; }
  .site-header .wrap { height: auto; padding-top: 16px; padding-bottom: 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .nav { gap: 20px; flex-wrap: wrap; }
  .hero { padding: 60px 0 30px; }
  section { padding: 64px 0; }
  .team { grid-template-columns: 1fr; }
  .photo .view { opacity: 1; transform: translate(-50%, 0); }
  .credits li { grid-template-columns: 1fr; gap: 2px; }
  .credits .role { text-align: left; }
  .post-list a { grid-template-columns: 1fr; gap: 6px; }
  .prose { font-size: 20px; }
}
