@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --bg: #071f18;
  --paper: rgba(17, 52, 42, 0.9);
  --panel: rgba(2, 16, 12, 0.54);
  --ink: #f1ecdf;
  --muted: #b9c7bd;
  --line: rgba(213, 225, 211, 0.22);
  --soft: #173d31;
  --shadow: rgba(0, 8, 5, 0.35);
  --accent: #d6c38f;
  --highlight: #d38467;
  --velvet-y: 18%;
  --velvet-y-secondary: 76%;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  line-height: 1.65;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18vh -12vw;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(ellipse 68% 38% at 22% var(--velvet-y), rgba(137, 178, 142, 0.24), transparent 62%),
    radial-gradient(ellipse 54% 42% at 83% var(--velvet-y-secondary), rgba(90, 132, 108, 0.16), transparent 68%),
    linear-gradient(118deg, #041610 0%, #0a2a20 44%, #061c15 72%, #0b3024 100%);
  will-change: background-position;
}

body::after {
  z-index: -1;
  opacity: 0.32;
  background:
    repeating-linear-gradient(102deg, transparent 0 9px, rgba(255, 255, 255, 0.012) 10px 11px, transparent 12px 22px),
    repeating-linear-gradient(8deg, transparent 0 31px, rgba(0, 0, 0, 0.035) 32px 34px);
  mix-blend-mode: soft-light;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

a:hover {
  color: var(--ink);
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(800px, calc(100% - 2rem));
}

.section {
  position: relative;
  padding: 6rem 0;
  border-top: 1px solid rgba(214, 195, 143, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 28px 70px rgba(0, 0, 0, 0.06);
}

main > .section:not(.muted-section) {
  background: rgba(8, 38, 29, 0.28);
}

section[id] {
  scroll-margin-top: 76px;
}

.muted-section {
  background: var(--panel);
  border-bottom: 1px solid rgba(214, 195, 143, 0.08);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.section-heading {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 4.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(214, 195, 143, 0.44);
}

section[data-index] .section-heading::before {
  content: attr(data-index);
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--highlight);
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

section[data-index] .section-heading::after {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 2.25rem;
  width: 1.35rem;
  height: 1px;
  background: var(--highlight);
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  max-width: 700px;
  line-height: 1;
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 25, 19, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0.7rem 0.6rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 7rem;
}

.hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: 2.5rem;
  width: 29rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--highlight));
  transform: rotate(-18deg);
  transform-origin: right;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(260px, 0.7fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.hero-copy {
  order: 1;
  position: relative;
  z-index: 1;
  padding-top: 0.75rem;
}

.hero-panel {
  order: 2;
}

.hero-copy h1 {
  font-size: clamp(4rem, 7.3vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
  margin-bottom: 2rem;
  max-width: 780px;
}

.lead {
  max-width: 600px;
  font-size: 1.03rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: #092019;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--accent);
}

.button:hover,
.button:focus-visible {
  opacity: 0.9;
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  width: min(100%, 290px);
  justify-self: end;
  transform: translateY(5rem);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border: 1px solid var(--ink);
  box-shadow: 18px 20px 0 rgba(214, 195, 143, 0.14);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(12%) contrast(1.1) brightness(0.92);
  display: block;
}

.profile-meta {
  margin-top: 2rem;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 2px solid var(--highlight);
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
}

.profile-meta p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.project-card,
.teaching-item,
.publication-item,
.cv-box,
.event-item {
  background: linear-gradient(145deg, rgba(23, 62, 51, 0.95), rgba(9, 36, 28, 0.92));
  border: 1px solid rgba(214, 195, 143, 0.28);
  border-top-color: rgba(214, 195, 143, 0.62);
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 16px 34px rgba(0, 10, 7, 0.2);
}

.info-card h3,
.project-card h3,
.teaching-item h3,
.publication-item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}

.info-card p,
.project-card p,
.teaching-item p,
.publication-item p,
.cv-box p,
.contact-grid p,
.talk-list li {
  color: var(--muted);
}

.meta {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.publication-item .meta,
.project-card .meta,
.teaching-item .meta,
.talk-list .meta,
.event-item .meta {
  color: var(--highlight);
}

::selection {
  background: rgba(164, 81, 61, 0.2);
  color: var(--ink);
}

.teaching-list,
.talk-list {
  display: grid;
  gap: 1.25rem;
}

.publication-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--accent);
  width: min(940px, 100%);
  margin-inline: auto;
}

.publication-item,
.teaching-item {
  display: grid;
  gap: 0.35rem;
}

.publication-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(214, 195, 143, 0.28);
  padding: 3.5rem 0;
}

.publication-item h3 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1;
}

.publication-item:not(.publication-feature) {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.publication-item:not(.publication-feature) .meta {
  grid-column: 1;
  grid-row: 1 / span 3;
  padding-top: 0.35rem;
}

.publication-item:not(.publication-feature) h3,
.publication-item:not(.publication-feature) p:not(.meta) {
  grid-column: 2;
}

.event-item {
  width: 100%;
  margin: 0;
  background: linear-gradient(145deg, rgba(23, 62, 51, 0.95), rgba(9, 36, 28, 0.92));
}

.event-feature {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.event-image {
  width: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #efefef;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
}

.event-item a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.publication-feature {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.publication-cover {
  background: var(--soft);
  border: 1px solid var(--ink);
  width: 100%;
  overflow: hidden;
  box-shadow: 10px 12px 0 rgba(214, 195, 143, 0.13);
  transform: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.publication-feature:hover .publication-cover {
  box-shadow: 8px 10px 0 var(--panel);
  transform: rotate(0deg) translateY(-4px);
}

.publication-cover img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .publication-feature,
  .event-feature {
    grid-template-columns: 1fr;
  }

  .publication-cover,
  .event-image {
    max-width: 260px;
  }

  .publication-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .publication-feature:nth-child(even) .publication-cover,
  .publication-feature:nth-child(even) .publication-text {
    order: initial;
  }

  .publication-item:not(.publication-feature) {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    display: block;
  }
}

/* Link treatment: color and directional markers instead of underlines */
a {
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.event-item a {
  text-decoration: none;
}

a:not(.button):hover,
a:not(.button):focus-visible {
  color: var(--highlight);
}

.site-nav a::after {
  display: none;
}

.publication-item a[target="_blank"]::after,
.project-card a[target="_blank"]::after,
.event-item a[target="_blank"]::after,
.teaching-item a[target="_blank"]::after,
.talk-list a[target="_blank"]::after {
  content: "↗";
  display: inline-block;
  margin-left: 0.18em;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.38em;
  transition: transform 0.18s ease;
}

.publication-item a[target="_blank"]:hover::after,
.project-card a[target="_blank"]:hover::after,
.event-item a[target="_blank"]:hover::after,
.teaching-item a[target="_blank"]:hover::after,
.talk-list a[target="_blank"]:hover::after {
  transform: translate(2px, -2px);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--paper);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--ink);
}

.talk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.talk-list li {
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid rgba(214, 195, 143, 0.24);
  background: rgba(8, 34, 26, 0.3);
}

.talk-list li:nth-child(even) {
  background: rgba(20, 55, 44, 0.38);
}

.talk-list li:last-child {
  border-bottom: none;
}

.talk-list.is-collapsed li:nth-child(n + 7) {
  display: none;
}

.talk-toggle {
  margin-top: 1.5rem;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 0.95rem/1 "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
}

.talk-toggle:hover,
.talk-toggle:focus-visible {
  background: var(--accent);
  color: var(--paper);
}

.talk-list .meta {
  display: inline-block;
  min-width: 74px;
  margin-right: 0.75rem;
}

.cv-box {
  display: grid;
  gap: 0.8rem;
}

.cv-box p {
  margin: 0;
}

.cv-box strong {
  color: var(--ink);
}

.contact-section {
  border-top: 1px solid rgba(214, 195, 143, 0.42);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label > span {
  color: var(--ink);
  font-family: "Syne", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(2, 19, 14, 0.58);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status:empty {
  display: none;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--muted);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
}

.social-links svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg .social-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 940px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: #0a2a20;
    border: 1px solid var(--line);
    box-shadow: 0 12px 26px var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .three-col,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: 2;
    width: min(100%, 220px);
    justify-self: start;
    transform: none;
  }

  .hero-copy {
    order: 1;
  }

  .hero {
    padding: 3.5rem 0 5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 13vw, 4.5rem);
    max-width: 12ch;
  }

  .section-heading {
    padding-left: 3.75rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    margin-left: 0;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .publication-cover {
    transition: none;
  }

  body::before {
    background:
      radial-gradient(ellipse 68% 38% at 22% 24%, rgba(137, 178, 142, 0.2), transparent 62%),
      linear-gradient(118deg, #041610 0%, #0a2a20 48%, #061c15 100%);
  }
}

/* Restored warm, modular edition */
:root {
  --bg: #f4f1e9;
  --paper: #fbfaf6;
  --panel: #e5eae2;
  --ink: #1e2a25;
  --muted: #56645e;
  --line: #c9cec4;
  --soft: #e8e3d8;
  --shadow: rgba(44, 48, 40, 0.09);
  --accent: #31584c;
  --highlight: #a4513d;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Noto Sans JP", sans-serif;
  isolation: auto;
}

body::before,
body::after {
  display: none;
}

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.eyebrow,
.site-nav,
.button,
.profile-meta,
.meta,
.talk-toggle,
.contact-form label > span {
  font-family: "Josefin Sans", "Noto Sans SC", "Noto Sans JP", sans-serif;
}

.section {
  padding: 5rem 0;
  border-top: 0;
  box-shadow: none;
}

main > .section:not(.muted-section) {
  background: transparent;
}

.muted-section {
  background: var(--panel);
  border: 0;
}

.section-heading {
  margin-bottom: 2rem;
  padding: 0;
  border-bottom: 0;
}

section[data-index] .section-heading::before,
section[data-index] .section-heading::after {
  display: none;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.site-header {
  background: rgba(244, 241, 233, 0.92);
  backdrop-filter: blur(6px);
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero {
  padding: 5rem 0;
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.72fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-panel {
  order: 2;
  width: 100%;
  justify-self: stretch;
  transform: none;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: 0 14px 34px var(--shadow);
}

.hero-copy {
  order: 1;
  padding-top: 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.portrait-frame {
  border-color: var(--line);
  box-shadow: none;
}

.portrait-frame img {
  filter: grayscale(100%) contrast(1.06);
}

.profile-meta {
  margin-top: 1rem;
  padding: 0;
  border-left: 0;
}

.button.primary {
  color: var(--paper);
}

.info-card,
.project-card,
.teaching-item,
.publication-item,
.cv-box,
.event-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: none;
  backdrop-filter: none;
}

.publication-list {
  width: 100%;
  margin: 0;
  gap: 1.5rem;
  border-top: 0;
}

.publication-item {
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.publication-item h3 {
  font-size: 1.55rem;
  line-height: 1.2;
}

.publication-feature,
.publication-feature:nth-child(even) {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.publication-feature:nth-child(even) .publication-cover,
.publication-feature:nth-child(even) .publication-text {
  order: initial;
}

.publication-cover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.publication-feature:hover .publication-cover {
  box-shadow: none;
  transform: none;
}

.publication-item:not(.publication-feature) {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1.5rem;
}

.event-item {
  background: var(--paper);
}

.talk-list li,
.talk-list li:nth-child(even) {
  padding: 1rem 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-form input,
.contact-form textarea {
  background: var(--paper);
}

@media (max-width: 940px) {
  .site-nav {
    background: var(--paper);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-panel {
    order: 2;
    width: min(100%, 260px);
    justify-self: start;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.25rem);
    max-width: 13ch;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 640px) {
  .publication-feature,
  .publication-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
