/* ==========================================================================
   TREVOR M. GOODWILL // PERSONAL DOSSIER
   Editorial stylesheet — theme tokens are exposed as CSS custom properties
   so the admin Theme tab can override them via a per-request <style> block
   in base.html.
   ========================================================================== */

:root {
  --bone:      #f4efe6;
  --bone-2:    #eae3d5;
  --ink:       #1a2332;
  --ink-dim:   #4a5568;
  --ink-mute:  #8a94a3;
  --line:      #d4cab8;
  --accent:    #1a2332;

  --font-sans:  'Archivo', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  --max-width: 1040px;
  --base-font-size: 15px;
}

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

html, body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--base-font-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
a:hover { text-decoration-thickness: 2px; }

::selection { background: var(--ink); color: var(--bone); }

em.serif,
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--bone-2);
  padding: 1px 5px;
  font-size: 0.9em;
  border-radius: 2px;
}

/* ============== LAYOUT WRAP ============== */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px 40px 140px;
}

/* ============== TOP NAV ============== */
nav.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  flex-wrap: wrap;
}
nav.top .logo {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
}
nav.top .logo em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
}
nav.top ul { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
nav.top a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-dim);
}
nav.top a:hover { color: var(--ink); }
nav.top a.active { color: var(--ink); font-weight: 500; }

/* ============== HERO ============== */
.hero {
  padding: 120px 0 100px;
  max-width: 820px;
}
.hero.compact { padding: 80px 0 56px; }
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 48px;
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.hero.compact h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 28px;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 560px;
  font-weight: 400;
}

/* ============== SECTION ============== */
section.editorial {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.sec-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  align-items: baseline;
}
.sec-head .tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.sec-head h2 {
  font-weight: 300;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sec-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.sec-head .more {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  align-self: end;
}
.sec-head .more:hover { color: var(--ink); border-color: var(--ink); }

/* ============== BODY GRID (200 + main) ============== */
.body-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}
.body-grid .side {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.body-grid .main p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 16px;
  max-width: 620px;
}
.body-grid .main p strong { color: var(--ink); font-weight: 500; }
.body-grid .main p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.body-grid .main h3 {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
}
.body-grid .main h3 em {
  font-family: var(--font-serif);
  font-style: italic;
}
.body-grid .main ul {
  list-style: none;
  margin-bottom: 16px;
  max-width: 620px;
}
.body-grid .main ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-dim);
}
.body-grid .main ul li:last-child { border-bottom: none; }

/* ============== PROJECT / LOG ROW ============== */
.proj {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.proj:last-child { border-bottom: 1px solid var(--line); }
.proj .meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.proj .main h3 {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.proj .main h3 em {
  font-family: var(--font-serif);
  font-style: italic;
}
.proj .main h3 a { text-decoration: none; }
.proj .main h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.proj .main p { font-size: 15px; line-height: 1.55; color: var(--ink-dim); max-width: 520px; }
.proj .main .stack {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}
.proj .main .details {
  margin-top: 12px;
  list-style: none;
}
.proj .main .details li {
  font-size: 14px;
  color: var(--ink-dim);
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}
.proj .main .details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-mute);
}
.proj .year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  text-align: right;
}
.proj .year a { text-decoration: none; color: var(--ink-dim); font-style: normal; font-family: var(--font-sans); font-size: 13px; display: block; margin-top: 6px; }
.proj .year a:hover { color: var(--ink); }

/* ============== STATUS TAG (subtle, replaces military pill) ============== */
.status {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 10px;
}
.status::before {
  content: "● ";
  font-size: 8px;
  vertical-align: middle;
  margin-right: 4px;
}
.status.active::before  { color: #6b8e3d; }
.status.pending::before { color: #c89a2a; }
.status.standby::before { color: var(--ink-mute); }

/* ============== CHAPTER (autobiography) ============== */
.chap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.chap:last-child { border-bottom: 1px solid var(--line); }
.chap .cm {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.chap .cm strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 4px; }
.chap h3 {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 620px;
}
.chap h3 em {
  font-family: var(--font-serif);
  font-style: italic;
}
.chap p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 14px;
  max-width: 620px;
}
.chap p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}

/* ============== NOW GRID ============== */
.now {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
}
.now h4 {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.now ul { list-style: none; }
.now li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.now li:last-child { border-bottom: none; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 20px 0;
}
.contact-grid .k {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-grid .v {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1.1;
}
.contact-grid .v a { text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.contact-grid .v a:hover { border-color: var(--ink); }

/* ============== BLOG POST ARTICLE ============== */
.article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding-top: 40px;
}
.article .meta-side {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.article .meta-side strong { color: var(--ink); display: block; font-weight: 500; }
.article .body h1 {
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.article .body h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.article .body .excerpt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 620px;
}
.article .body .post-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 620px;
  word-wrap: break-word;
}
.article .body .post-body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}

/* Blog index — view/comment count line */
.proj .meta .post-stats {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Blog post — meta views */
.meta-side .meta-views {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Comments */
.comments {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.comments h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.comments h2 em { font-style: italic; color: var(--ink-mute); margin: 0 4px; }
.comments h2 .count { color: var(--ink-mute); font-style: italic; }
.me-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
}
.me-row .avatar {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line);
}
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--ink); }

.comment-signin {
  border: 1px solid var(--line);
  background: var(--bone-2);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.comment-signin .muted { font-size: 13px; margin: 0 0 10px 0; }

.comment-form {
  margin-bottom: 28px;
}
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bone);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  resize: vertical;
  color: var(--ink);
}
.comment-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.comment-form-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.comment-form .btn-primary {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.comment-form .btn-primary:hover { background: var(--ink-dim); border-color: var(--ink-dim); }

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.comment {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
}
.comment-meta .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
}
.comment-author { color: var(--ink); font-weight: 500; }
.comment-when { font-size: 12px; }
.comment-body {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  white-space: pre-wrap;
  word-wrap: break-word;
}
.comment-actions { margin-top: 8px; }
.vote-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-mute);
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vote-btn:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); }
.vote-btn.voted { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.vote-btn:disabled { cursor: not-allowed; opacity: 0.6; }
.vote-btn .arrow { font-size: 10px; }

/* Blog post attachments */
.post-attachments {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.post-attachments-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.attachment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.attachment-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bone-2);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.attachment-list a:hover {
  border-color: var(--ink);
  background: var(--bone);
  text-decoration: none;
}
.attachment-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bone);
  background: var(--ink);
}
.attachment-name {
  flex: 1;
  font-size: 14px;
  word-break: break-all;
  line-height: 1.4;
}

/* Chapter body */
.chap .chap-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 620px;
  word-wrap: break-word;
}
.chap .chap-body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}

/* Custom page body */
.body-grid .main .custom-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 620px;
  word-wrap: break-word;
}
.body-grid .main .custom-body em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}

/* ============== SUPPORT / FUNDING CARDS ============== */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.funding-card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: transparent;
}
.funding-card .icon {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
  color: var(--ink-mute);
}
.funding-card h3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.funding-card p {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}
.funding-card a {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ============== ADVISORY BOX (kept, restyled) ============== */
.advisory {
  border-left: 2px solid var(--ink);
  padding: 14px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 620px;
}
.advisory strong {
  color: var(--ink);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============== FOOTER ============== */
footer.site {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-mute);
  gap: 12px;
  flex-wrap: wrap;
}

/* ============== FLASH MESSAGES ============== */
.flash {
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 13px;
  border-left: 2px solid var(--ink);
  background: var(--bone-2);
}
.flash-error { border-left-color: #b94a3a; }
.flash-ok    { border-left-color: #6b8e3d; }

/* ============== 404 ============== */
.notfound {
  padding: 120px 0;
  text-align: left;
  max-width: 620px;
}
.notfound h1 {
  font-weight: 300;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.notfound h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.notfound p { font-size: 18px; color: var(--ink-dim); margin-bottom: 24px; }

/* ============== HOME — ABOUT ============== */
.home-about {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.home-about em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.home-about strong { color: var(--ink); font-weight: 500; }

/* ============== HOME — PHOTO WALL ============== */
.photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 36px 28px;
  padding: 8px 0;
}
.photo-wall .polaroid {
  background: #fff;
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(26, 35, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.photo-wall .polaroid:nth-child(3n+1) { transform: rotate(-1.2deg); }
.photo-wall .polaroid:nth-child(3n+2) { transform: rotate(0.8deg); }
.photo-wall .polaroid:nth-child(3n+3) { transform: rotate(-0.4deg); }
.photo-wall .polaroid:nth-child(5n+4) { transform: rotate(1.4deg); }
.photo-wall .polaroid:hover {
  transform: rotate(0) scale(1.03);
  box-shadow: 0 10px 22px rgba(26, 35, 50, 0.14);
  z-index: 2;
}
.photo-wall .polaroid img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bone-2);
}
.photo-wall .polaroid figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 2px 0;
  font-family: var(--font-serif);
  font-style: italic;
}
.photo-wall .polaroid figcaption .cap {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}
.photo-wall .polaroid figcaption .date {
  color: var(--ink-mute);
  font-size: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ============== HOME — VIDEO WALL ============== */
.video-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 8px 0;
}
.video-wall .video-card {
  background: var(--bone-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.video-wall .video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.video-wall .video-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px 14px;
  font-family: var(--font-serif);
  font-style: italic;
}
.video-wall .video-card figcaption .cap {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}
.video-wall .video-card figcaption .date {
  color: var(--ink-mute);
  font-size: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============== HOME — MEET / CALENDAR ============== */
.meet-pitch {
  max-width: 560px;
  color: var(--ink-dim);
  font-size: 16px;
  margin-bottom: 28px;
}
.cal-embed {
  position: relative;
  width: 100%;
  height: 720px;
  border: 1px solid var(--line);
  background: var(--bone-2);
  overflow: hidden;
}
.cal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.meet-fallback {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}
.meet-fallback a { color: var(--ink-dim); }

/* ============== HOME — SOCIALS ============== */
.social-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.social-grid li {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.social-grid li:nth-child(-n+1) { /* no-op placeholder */ }
.social-grid a {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  padding: 20px 18px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}
.social-grid a:hover { background: var(--bone-2); }
.social-grid .icon {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 22px;
  color: var(--ink-dim);
  text-align: center;
}
.social-grid .name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.social-grid .handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 720px) {
  .wrap { padding: 28px 22px 80px; }
  nav.top ul { gap: 16px; }
  .hero { padding: 64px 0 48px; }
  .hero .eyebrow { margin-bottom: 28px; }
  .hero h1 { margin-bottom: 28px; }
  section.editorial { padding: 56px 0; }
  .sec-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .body-grid { grid-template-columns: 1fr; gap: 20px; }
  .proj { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .proj .year { text-align: left; }
  .chap { grid-template-columns: 1fr; gap: 14px; }
  .now { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .article { grid-template-columns: 1fr; gap: 16px; }
  .article .body .excerpt { font-size: 20px; }
  .photo-wall { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 18px; }
  .photo-wall .polaroid img { height: 140px; }
  .cal-embed { height: 640px; }
  .social-grid { grid-template-columns: 1fr; }
}
