:root {
  --paper: #fcfaf6;
  --paper-bright: #fffdf8;
  --paper-soft: #fffdf9;
  --sage: #e2e9de;
  --sage-light: #edf0e7;
  --ink: #202b24;
  --muted: #414d43;
  --forest: #2d5f3f;
  --forest-dark: #173825;
  --forest-ui: #435b47;
  --rust: #a04b22;
  --orange: #ff8c42;
  --orange-soft: #df8548;
  --line: rgba(67, 91, 71, 0.18);
  --serif: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --max-width: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Keep anchored reading sections clear of the fixed header. */
:where(main [id]) { scroll-margin-top: calc(var(--header-height) + 1.25rem); }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid var(--forest); outline-offset: 4px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(35, 42, 34, 0.12) 0.6px, transparent 0.8px);
  background-size: 7px 7px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { margin-bottom: 1.6rem; font-size: clamp(3.2rem, 6.2vw, 6rem); letter-spacing: -0.055em; }
h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 4.2vw, 4.3rem); letter-spacing: -0.04em; }
h3 { margin-bottom: 0.5rem; font-size: clamp(1.35rem, 2vw, 1.9rem); }
/* Short words stay intact; sentences still wrap. Preserve existing grid/flex text items. */
.type-copy { display: inline !important; white-space: normal !important; min-width: 0; }
.type-word { display: inline !important; white-space: nowrap !important; }
:is(h1, h2, h3, h4, h5, h6) { line-break: strict; text-wrap: balance; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.section-shell { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.section-block { padding-block: clamp(5rem, 10vw, 9rem); }
.section-rule { border-top: 1px solid var(--line); }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-number { color: var(--orange); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.split-heading > p { max-width: 30rem; color: var(--muted); }
.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 650;
}
.text-link:hover { color: var(--rust); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 700;
}
.button-primary { background: var(--forest); color: white; }
.button-primary:hover { background: var(--forest-dark); }
.button-secondary { border-color: var(--forest); color: var(--forest); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  padding-inline: max(24px, calc((100% - var(--max-width)) / 2));
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--serif); font-size: 1.15rem; }
.brand-mark { width: 12px; height: 16px; border-radius: 60% 40% 55% 45%; background: var(--orange); transform: rotate(10deg); }
.site-nav { display: flex; gap: clamp(1rem, 2.4vw, 2.4rem); align-items: center; }
.site-nav a { position: relative; color: var(--muted); font-size: 0.88rem; white-space: nowrap; }
.site-nav a:hover, .site-nav a.is-current { color: var(--ink); }
.site-nav a.is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--orange);
}
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(4rem, 8vw, 8rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-intro { max-width: 38rem; margin-bottom: 2.2rem; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.hero-paper {
  position: relative;
  min-height: min(65vh, 660px);
  overflow: hidden;
  background: #ded8ca;
  border: 14px solid var(--paper-bright);
  box-shadow: 0 35px 80px rgba(37, 43, 35, 0.15);
  isolation: isolate;
}
.hero-artwork { width: 100%; height: 100%; object-fit: cover; }
.paper-wash { position: absolute; border-radius: 45% 55% 50% 50%; filter: blur(2px); mix-blend-mode: multiply; }
.wash-one { inset: 8% -15% 32% 12%; background: radial-gradient(circle at 42% 48%, rgba(45,95,63,.66), rgba(45,95,63,.18) 48%, transparent 72%); transform: rotate(-12deg); }
.wash-two { inset: 45% 10% -12% -22%; background: radial-gradient(circle at 55% 45%, rgba(255,140,66,.72), rgba(255,140,66,.12) 50%, transparent 70%); transform: rotate(13deg); }
.hero-signature { position: absolute; right: 1.3rem; bottom: 1.1rem; z-index: 2; display: flex; flex-direction: column; align-items: end; padding: .55rem .7rem; background: rgba(251,248,241,.82); color: var(--forest-dark); backdrop-filter: blur(8px); }
.hero-signature span:not(:where(.type-copy, .type-word)) { font-size: 0.72rem; letter-spacing: 0.08em; }
.hero-signature strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.16em; }

.services-section { border-top: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { display: flex; min-height: 520px; padding: clamp(2rem, 4vw, 3.4rem); flex-direction: column; background: var(--paper); }
.service-card--pilot { grid-column: 1 / -1; min-height: 0; }
.service-card--pilot .service-summary,
.service-card--pilot .service-facts { max-width: 62rem; }
.service-card-head { display: flex; margin-bottom: 2.6rem; align-items: center; justify-content: space-between; gap: 1rem; }
.service-index { margin: 0; color: var(--forest); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.service-status { padding: .22rem .58rem; border: 1px solid rgba(255,140,66,.58); color: var(--orange); font-size: .7rem; font-weight: 750; letter-spacing: .08em; }
.service-kind { margin-bottom: .7rem; color: var(--forest); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 1.2rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.service-summary { margin-bottom: 2rem; color: var(--muted); }
.service-facts { margin: 0 0 2.2rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-facts li { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: 1rem; padding-block: .8rem; border-bottom: 1px solid var(--line); }
.service-facts strong { color: var(--forest); font-size: .75rem; letter-spacing: .08em; }
.service-facts span:not(:where(.type-copy, .type-word)) { color: var(--muted); font-size: .86rem; }
.service-boundary { max-width: 62rem; margin: -1rem 0 2rem; color: var(--muted); font-size: .78rem; }
.service-link { margin-top: auto; align-self: flex-start; }
.service-actions { display: flex; margin-top: auto; align-items: center; flex-wrap: wrap; gap: .9rem 1.5rem; }

.pet-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}
.pet-video-media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--forest-dark); }
.pet-video-media > img,
.pet-video-media > iframe { display: block; width: 100%; height: 100%; border: 0; object-fit: cover; }
.pet-video-media::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(20,30,23,.45)); }
.pet-video-feature.is-playing .pet-video-media::after { display: none; }
.pet-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  min-height: 48px;
  padding: .7rem 1rem;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(251,248,241,.92);
  color: var(--forest-dark);
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.pet-video-play:hover { background: #fff; }
.pet-video-play-icon { color: var(--orange); font-size: 1rem; }
.pet-video-duration { position: absolute; right: .7rem; bottom: .65rem; z-index: 2; padding: .15rem .42rem; background: rgba(20,30,23,.74); color: #fff; font-size: .7rem; letter-spacing: .06em; }
.pet-video-copy { padding: clamp(.5rem, 2vw, 1.5rem) clamp(.25rem, 2vw, 1rem); }
.pet-video-copy h3 { margin-bottom: .45rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.pet-video-copy > p:not(.eyebrow):not(.pet-video-meta):not(.pet-video-note) { color: var(--muted); }
.pet-video-meta { margin-bottom: 1.4rem; color: var(--forest); font-size: .78rem; letter-spacing: .07em; }
.pet-video-actions { display: flex; margin-top: 2rem; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem; }
.pet-video-actions .button { min-height: 46px; cursor: pointer; }
.pet-video-note { margin-top: 1rem; color: var(--muted); font-size: .72rem; }

.current-note {
  display: grid;
  grid-template-columns: 0.25fr 0.95fr 1.2fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: clamp(4rem, 7vw, 6.5rem);
  align-items: start;
}
.large-note { color: var(--muted); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.75; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.article-card { min-height: 300px; padding: 2rem; background: var(--paper); transition: background .25s ease; }
.article-card:hover { background: var(--paper-bright); }
.article-card a { display: flex; height: 100%; flex-direction: column; }
.article-card .meta, .article-row .meta { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.06em; }
.article-card h3 { margin-block: 2.3rem 1rem; }
.article-card p { color: var(--muted); }
.article-card .card-arrow { margin-top: auto; color: var(--orange); font-size: 1.4rem; }

.empty-state {
  min-height: 230px;
  padding: 2rem;
  background: color-mix(in srgb, var(--paper-bright) 55%, transparent);
  border: 1px dashed rgba(45, 95, 63, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.empty-state strong { display: block; margin-bottom: 0.5rem; font-family: var(--serif); font-size: 1.35rem; }
.empty-state p { max-width: 36rem; margin: 0; color: var(--muted); }
.article-grid > .empty-state { grid-column: 1 / -1; }

.visual-section { background: var(--forest-dark); color: #f2eee4; }
.light-heading .eyebrow { color: #e5b596; }
.light-heading p { color: rgba(242,238,228,.67); }
.visual-columns { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(3rem, 8vw, 8rem); }
.subsection-title { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.19); }
.subsection-title span:not(:where(.type-copy, .type-word)) { color: rgba(255,255,255,.55); font-size: .78rem; }
.visual-section .empty-state { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.24); }
.visual-section .empty-state p { color: rgba(255,255,255,.62); }
.art-grid, .photo-grid { display: grid; gap: 1.3rem; }
.art-grid { grid-template-columns: repeat(2, 1fr); }
.photo-grid { grid-template-columns: 1fr; }
.art-card, .photo-card { margin: 0; }
.art-card img, .photo-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.art-card figcaption, .photo-card figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .7rem; color: rgba(255,255,255,.7); font-size: .78rem; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.project-card { display: grid; grid-template-columns: 4.5rem 1fr auto; gap: 1.25rem; min-height: 190px; padding: 2rem 1rem; border-bottom: 1px solid var(--line); align-items: start; }
.project-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 2rem; }
.project-card:nth-child(even) { padding-left: 2rem; }
.project-index { color: var(--orange); font-size: .72rem; }
.project-kind { margin-bottom: .7rem; color: var(--forest); font-size: .75rem; font-weight: 700; letter-spacing: .09em; }
.project-card p { margin: 0; color: var(--muted); }
.project-status { display: inline-flex; margin: .2rem 0 .8rem; padding: .2rem .55rem; border: 1px solid rgba(45,95,63,.32); color: var(--forest); font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.project-arrow { color: var(--forest); font-size: 1.3rem; }
.project-card.is-inactive .project-arrow { color: var(--muted); font-size: .68rem; }
.project-card.has-qr .project-arrow { font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.project-qr { display: grid; grid-column: 2 / -1; grid-template-columns: 220px 1fr; gap: 1rem; margin-top: .7rem; align-items: center; }
.project-qr-link { display: block; width: 220px; }
.project-qr img { width: 220px; height: auto; object-fit: contain; background: white; border: 1px solid var(--line); }
.project-qr p { max-width: 18rem; font-size: .75rem; }

.about-band { background: var(--orange); color: #1f241f; }
.about-grid { display: grid; grid-template-columns: .18fr .9fr .62fr .72fr; gap: clamp(1.5rem, 4vw, 4.5rem); align-items: start; }
.about-band .section-number, .about-band .eyebrow { color: var(--forest-dark); }
.about-portrait { margin: 0; }
.about-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(1); border: 8px solid rgba(251,248,241,.72); }
.about-portrait figcaption { margin-top: .55rem; color: rgba(31,36,31,.72); font-size: .72rem; }
.about-copy { padding-top: 2rem; font-family: var(--serif); font-size: 1.15rem; }
.about-copy .text-link { display: inline-block; margin-top: 1rem; font-family: var(--sans); font-size: .82rem; }
.contact-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.contact-section > div:first-child > p:last-child { max-width: 40rem; color: var(--muted); }
.contact-panel, .account-panel { padding: 2rem; background: var(--paper-bright); border: 1px solid var(--line); }
.qr-image { width: 180px; aspect-ratio: 1; margin-bottom: 1rem; object-fit: cover; }
.contact-links { display: flex; flex-direction: column; gap: .8rem; }
.contact-links a { color: var(--forest); text-decoration: underline; text-underline-offset: .25rem; }
.contact-links-label { margin: .45rem 0 0; color: var(--muted); font-size: .78rem; }
.social-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 1.35rem; }
.social-link-grid--compact { margin-top: 0; }
.social-link-button,
.social-link-card {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-soft);
  color: var(--forest);
  text-decoration: none;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.social-link-button { min-height: 44px; padding: .58rem .78rem; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; }
.social-link-card { min-height: 118px; padding: 1.2rem 1.3rem; flex-direction: column; justify-content: space-between; }
.social-link-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 96px; }
.social-link-card strong { font-family: var(--sans); font-size: 1rem; }
.social-link-card span:not(:where(.type-copy, .type-word)) { color: var(--muted); font-family: var(--sans); font-size: .78rem; line-height: 1.55; }
.social-link-button:hover,
.social-link-card:hover { border-color: var(--forest); background: var(--sage-light); color: var(--forest-dark); transform: translateY(-2px); }
.social-link-button:active,
.social-link-card:active { transform: translateY(0); }
.social-link-button:focus-visible,
.social-link-card:focus-visible { outline: 3px solid color-mix(in srgb, var(--orange) 48%, transparent); outline-offset: 3px; }
.social-directory { margin-block: 4.5rem; }
.social-directory > p { color: var(--muted); font-family: var(--sans); font-size: .92rem; }
.mvp-notice { display: flex; gap: 1rem; margin-bottom: 2rem; padding: 1rem 1.2rem; border: 1px solid rgba(255,140,66,.5); color: var(--muted); font-size: .78rem; }
.mvp-notice strong { flex: 0 0 auto; color: var(--ink); }
.site-footer { display: flex; min-height: 110px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.site-footer nav { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem 1.4rem; }
.site-footer nav a { color: var(--forest); }

.page-hero { display: grid; grid-template-columns: .3fr 1.2fr .7fr; gap: clamp(2rem, 5vw, 5rem); min-height: 70vh; padding-block: clamp(5rem, 10vw, 9rem); align-items: start; }
.page-hero h1 { font-size: clamp(3.8rem, 8vw, 8rem); }
.page-hero-copy { padding-top: 3rem; color: var(--muted); font-family: var(--serif); font-size: 1.1rem; }
.page-hero--compact { min-height: auto; padding-block: clamp(4rem, 8vw, 7rem); }
.page-hero--compact h1 { font-size: clamp(3.4rem, 7vw, 7rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; padding-top: 1.4rem; color: var(--muted); font-size: .75rem; }
.breadcrumb a { color: var(--forest); }
.breadcrumb [aria-current="page"] { overflow: hidden; max-width: 40rem; text-overflow: ellipsis; white-space: nowrap; }
.archive-tools { display: flex; gap: 2rem; padding-block: 2rem; border-block: 1px solid var(--line); align-items: center; justify-content: space-between; }
.filter-list { display: flex; flex-wrap: wrap; gap: .65rem; }
.filter-button { padding: .38rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: .8rem; }
.filter-button:hover, .filter-button.is-active { border-color: var(--forest); background: var(--forest); color: white; }
.search-box { display: flex; min-width: 270px; align-items: center; gap: .7rem; font-size: .78rem; }
.search-box input { width: 100%; padding: .55rem 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; color: var(--ink); }
.search-box input:focus { border-bottom-color: var(--forest); }
.archive-section { padding-block: clamp(4rem, 8vw, 8rem); }
.archive-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 3rem; }
.archive-heading > p { color: var(--muted); }
.article-list { border-top: 1px solid var(--line); }
.archive-empty { display: none; margin: 0; padding: 3rem 0; color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }
.article-list.has-no-results .archive-empty { display: block; }
.article-row { display: grid; grid-template-columns: 9rem 1fr 2fr auto; gap: 2rem; padding-block: 2rem; border-bottom: 1px solid var(--line); align-items: start; }
.article-row[hidden] { display: none; }
.article-row h3 { margin: 0; }
.article-row > p { margin: 0; color: var(--muted); }
.article-row:hover h3 { color: var(--forest); }
.timeline-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); margin-block: 1.5rem 4rem; padding-block: clamp(2.5rem, 5vw, 4.5rem); border-block: 1px solid var(--line); }
.timeline-feature h2 { max-width: 12ch; }
.timeline-feature > div:last-child { max-width: 46rem; color: var(--muted); }
.timeline-feature .meta { margin-block: 1.2rem .8rem; font-size: .76rem; }
.journey-section { padding-bottom: clamp(5rem, 10vw, 9rem); }
.journey-timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.journey-timeline::before { position: absolute; top: 1rem; bottom: 1rem; left: 1.25rem; width: 1px; background: var(--line); content: ""; }
.journey-timeline li { position: relative; display: grid; grid-template-columns: 2.5rem 10rem 1fr; gap: 1.5rem; padding-block: 1.6rem; align-items: start; }
.journey-marker { position: relative; z-index: 1; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; background: var(--paper); border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); font-size: .7rem; font-variant-numeric: tabular-nums; }
.journey-date { padding-top: .55rem; color: var(--muted); font-size: .78rem; font-variant-numeric: tabular-nums; }
.journey-card { display: block; padding: 1.4rem 1.6rem; background: color-mix(in srgb, var(--paper-bright) 74%, transparent); border: 1px solid var(--line); }
.journey-card:hover { border-color: var(--forest); }
.journey-card h3 { margin-block: .45rem .75rem; }
.journey-card p { margin: 0 0 1rem; color: var(--muted); }
.publishing-note { background: var(--forest); color: #f5f0e6; }
.publishing-note .eyebrow { color: #f4b68e; }
.publishing-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.timeline-list { margin: 0; padding: 0; list-style: none; counter-reset: publish; }
.timeline-list li { display: grid; grid-template-columns: 2rem 8rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,.2); counter-increment: publish; }
.timeline-list li::before { content: "0" counter(publish); color: #f4b68e; font-size: .72rem; }
.timeline-list span:not(:where(.type-copy, .type-word)) { color: rgba(255,255,255,.72); }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.book-card { min-height: 220px; padding: 1.5rem; background: var(--paper-bright); border: 1px solid var(--line); }
.writing-cta { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }

.article-shell { width: min(calc(100% - 48px), 800px); margin: 0 auto; padding-block: clamp(4rem, 8vw, 8rem); }
.article-kicker, .article-taxonomy { color: var(--forest); font-size: .8rem; font-weight: 700; letter-spacing: .1em; }
.article-taxonomy { display: flex; flex-wrap: wrap; gap: .45rem; }
.article-taxonomy a { border-bottom: 1px solid transparent; }
.article-taxonomy a:hover { border-bottom-color: currentColor; }
.article-title { margin-block: 1.2rem 1.7rem; font-size: clamp(2.8rem, 6vw, 5.8rem); text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.article-cover { margin: 2.5rem 0; padding: 10px; background: var(--paper-bright); border: 1px solid var(--line); }
.article-cover img { width: 100%; max-height: 680px; object-fit: cover; }
.article-cover figcaption { padding: .65rem .2rem 0; color: var(--muted); font-family: var(--serif); font-size: .8rem; }
.article-deck { margin-block: 2.5rem; color: var(--muted); font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 1.55rem); line-height: 1.9; }
.source-callout { margin-block: 2.5rem; padding: 1.2rem 1.4rem; background: color-mix(in srgb, var(--orange) 13%, transparent); border-left: 3px solid var(--orange); }
.source-callout p { margin-bottom: .7rem; }
.article-excerpt { color: var(--muted); font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 1.55rem); line-height: 1.9; }
.article-body { font-family: var(--serif); font-size: 1.12rem; line-height: 2; }
.article-body h2, .article-body h3 { margin-top: 2.5em; }
.article-body img { margin-block: 2rem; }
.article-inline-figure { margin: 2.4rem 0; padding: 10px; background: var(--paper-bright); border: 1px solid var(--line); }
.article-inline-figure img { width: 100%; margin: 0; }
.article-inline-figure img[src$="#portrait"] { width: min(100%, 32rem); margin-inline: auto; }
.article-inline-figure figcaption { padding: .65rem .2rem 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.article-body a { color: var(--forest); text-decoration: underline; text-underline-offset: .2em; }
.article-body blockquote { margin: 2rem 0; padding: .1rem 1.3rem; border-left: 2px solid var(--forest); color: var(--muted); }
.article-body--excerpt { padding: 1.6rem; background: color-mix(in srgb, var(--paper-bright) 72%, transparent); }
.content-status-note { margin-top: 1.2rem; color: var(--muted); font-size: .76rem; }
.article-end { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.article-pagination > a { display: flex; min-height: 130px; padding: 1.2rem; flex-direction: column; background: var(--paper); }
.article-pagination > a:last-child { text-align: right; }
.article-pagination span:not(:where(.type-copy, .type-word)) { color: var(--muted); font-size: .72rem; }
.article-pagination strong { margin-top: .5rem; font-family: var(--serif); font-weight: 500; }
.article-pagination a:hover { background: var(--paper-bright); color: var(--forest); }
.not-found { min-height: 65vh; display: flex; flex-direction: column; justify-content: center; }

.water-pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,140,66,.78);
  border-radius: 58% 42% 62% 38%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotate(20deg);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .2s ease;
}
.water-pointer.is-visible { opacity: 1; }
.water-pointer.is-blooming { width: 52px; height: 52px; background: rgba(255,140,66,.09); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-paper { min-height: 58vw; }
  .current-note { grid-template-columns: .2fr 1fr; }
  .current-note .large-note { grid-column: 2; }
  .article-grid, .book-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card--pilot { grid-column: auto; }
  .pet-video-feature { grid-template-columns: 1fr; }
  .visual-columns, .contact-section, .writing-cta, .publishing-grid, .timeline-feature { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: .2fr 1fr; }
  .about-portrait, .about-copy { grid-column: 2; }
  .page-hero { grid-template-columns: .2fr 1fr; min-height: auto; }
  .page-hero-copy { grid-column: 2; padding-top: 0; }
  .archive-tools { align-items: stretch; flex-direction: column; }
  .article-row { grid-template-columns: 7rem 1fr auto; }
  .article-row > p { grid-column: 2 / -1; }
}

/* Nine navigation entries use the menu at tablet widths to avoid crowding. */
@media (max-width: 1080px) {
  .nav-toggle { display: block; cursor: pointer; }
  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem 16px 1.5rem;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper-bright);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding-block: .45rem; }
  .site-nav a.is-current::after { display: none; }
}

@media (max-width: 680px) {
  :root { --header-height: 64px; }
  .section-shell { width: min(calc(100% - 32px), var(--max-width)); }
  .section-block { padding-block: 4.5rem; }
  .site-header { padding-inline: 16px; }
  .hero { gap: 3rem; padding-block: 4rem 5rem; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); }
  .hero-paper { min-height: 112vw; border-width: 9px; }
  .service-card { padding: 1.6rem; }
  .service-card-head { margin-bottom: 2rem; }
  .service-facts li { grid-template-columns: 3.4rem minmax(0, 1fr); gap: .75rem; }
  .service-actions { align-items: flex-start; flex-direction: column; }
  .pet-video-feature { gap: 1.4rem; padding: .65rem; }
  .pet-video-copy { padding: .7rem .75rem 1rem; }
  .pet-video-actions { align-items: stretch; flex-direction: column; }
  .pet-video-actions .button { width: 100%; }
  .current-note, .about-grid, .page-hero { grid-template-columns: 1fr; gap: 1rem; }
  .current-note .large-note, .about-copy, .page-hero-copy { grid-column: 1; }
  .split-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .article-grid, .book-grid, .project-grid, .art-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:nth-child(odd), .project-card:nth-child(even) { grid-template-columns: 3rem 1fr; padding: 1.6rem 0; border-right: 0; }
  .project-arrow { grid-column: 2; }
  .project-qr { grid-column: 2; grid-template-columns: 1fr; }
  .project-qr-link, .project-qr img { width: min(220px, 100%); }
  .about-portrait { grid-column: 1; max-width: 320px; }
  .mvp-notice { flex-direction: column; }
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); }
  .search-box { min-width: 0; flex-direction: column; align-items: start; }
  .archive-heading { align-items: start; }
  .article-row { grid-template-columns: 1fr auto; gap: .7rem 1rem; }
  .article-row .meta, .article-row > p { grid-column: 1 / -1; }
  .timeline-list li { grid-template-columns: 2rem 1fr; }
  .timeline-list span:not(:where(.type-copy, .type-word)) { grid-column: 2; }
  .journey-timeline::before { left: .9rem; }
  .journey-timeline li { grid-template-columns: 1.8rem 1fr; gap: 1rem; }
  .journey-marker { width: 1.8rem; height: 1.8rem; }
  .journey-date { grid-column: 2; padding-top: 0; }
  .journey-card { grid-column: 2; padding: 1.15rem; }
  .article-shell { width: min(calc(100% - 32px), 800px); }
  .article-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .article-cover { margin-inline: 0; padding: 7px; }
  .article-pagination { grid-template-columns: 1fr; }
  .article-pagination > span:not(:where(.type-copy, .type-word)):empty { display: none; }
  .article-pagination > a:last-child { text-align: left; }
  .site-footer { min-height: 92px; padding-block: 1.5rem; align-items: flex-start; flex-direction: column; gap: 1rem; }
  .site-footer nav { align-items: flex-start; flex-direction: column; }
  .social-link-grid { grid-template-columns: 1fr; }
  .social-link-card:last-child:nth-child(odd) { grid-column: auto; min-height: 108px; }
  .water-pointer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .water-pointer { display: none; }
}
