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

:root {
  --white: #ffffff;
  --off-white: #f7f3ef;
  --light-gray: #ebe4dc;
  --mid-gray: #8c7b6b;
  --text: #2b1f14;
  --text-light: #5e4d3d;
  --accent: #2b1f14;
  --line: #d5cac0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Karla', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* ══════════ GEOMETRIC DECORATIONS ══════════ */
.geo-circle {
  position: fixed;
  width: 340px;
  height: 340px;
  border: 1px solid var(--line);
  border-radius: 50%;
  top: -80px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.geo-circle::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid var(--line);
  border-radius: 50%;
  top: 70px;
  left: 70px;
  opacity: 0.6;
}

.geo-diamond {
  position: fixed;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  bottom: 10%;
  left: -30px;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.geo-triangle {
  position: fixed;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid transparent;
  border-bottom-color: rgba(43,31,20,0.03);
  bottom: 30%;
  right: 5%;
  pointer-events: none;
  z-index: 0;
}

.geo-line-v {
  position: fixed;
  width: 1px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
  left: 8%;
  top: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.geo-line-h {
  position: fixed;
  width: 100vw;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  top: 35%;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.geo-dots {
  position: fixed;
  bottom: 60px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  grid-template-rows: repeat(4, 8px);
  gap: 10px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}
.geo-dots span {
  width: 3px;
  height: 3px;
  background: var(--text);
  border-radius: 50%;
}

/* ══════════ HEADER / NAV ══════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
}
.logo::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--text);
  left: -16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--text); }
nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
}

.hero-content {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-geo {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid var(--line);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.2;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  width: 354px;
  height: 354px;
  border: 1px solid var(--line);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--text);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto;
  padding-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--mid-gray), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ══════════ SECTIONS ══════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
}

.section-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ══════════ FEATURED POST ══════════ */
.featured {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.featured-meta::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mid-gray);
}

.featured-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 28px;
}

.featured-excerpt {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
}

.read-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s ease;
}
.read-link:hover { gap: 20px; }
.read-link::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}
.read-link:hover::after { width: 48px; }

.featured-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual .geo-art {
  position: relative;
  width: 280px;
  height: 280px;
}
.geo-art .rect-outer {
  position: absolute;
  inset: 0;
  border: 1px solid var(--mid-gray);
  transform: rotate(12deg);
  animation: slowRotate 40s linear infinite;
}
.geo-art .rect-inner {
  position: absolute;
  inset: 40px;
  border: 1px solid var(--line);
  transform: rotate(-8deg);
  animation: slowRotate 30s linear infinite reverse;
}
.geo-art .circle-center {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--mid-gray);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.geo-art .dot-center {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.geo-art .line-cross-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  top: 50%;
}
.geo-art .line-cross-v {
  position: absolute;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
  left: 50%;
}

/* ══════════ POST GRID ══════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.post-card {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:hover { transform: translateY(-4px); }

.post-card .post-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.post-card:hover .post-number { color: var(--mid-gray); }

.post-card .post-date {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.post-card .post-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 16px;
}

.post-card .post-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

.post-card .post-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border: 1px solid var(--line);
  padding: 4px 12px;
}

/* ══════════ SINGLE POST / PROSE ══════════ */
.text-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.text-content {
  max-width: 660px;
  margin: 0 auto;
}

.text-content .text-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.25;
}

.text-content .text-date {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}

.text-content .prose {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
}

.text-content .prose p {
  margin-bottom: 28px;
}

.text-content .prose em {
  font-style: italic;
}

.text-content .prose blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  margin: 48px 0;
  padding-left: 28px;
  border-left: 2px solid var(--text);
  line-height: 1.7;
}

.text-content .prose blockquote p {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.back-link:hover { color: var(--text); gap: 16px; }
.back-link::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mid-gray);
  transition: width 0.3s ease;
}
.back-link:hover::before { width: 36px; }

/* ══════════ ABOUT SECTION ══════════ */
.about-section {
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-visual {
  position: relative;
  height: 360px;
}
.about-visual .about-rect {
  position: absolute;
  width: 200px;
  height: 260px;
  border: 1px solid var(--mid-gray);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-visual .about-circle {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid var(--line);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -60%);
}
.about-visual .about-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--text);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text .about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  margin-top: 36px;
}

/* ══════════ FOOTER ══════════ */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
}

.footer-right {
  display: flex;
  gap: 28px;
}
.footer-right a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-right a:hover { color: var(--text); }

/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes slowRotate {
  from { transform: rotate(12deg); }
  to { transform: rotate(372deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  nav { display: none; }
  .menu-toggle { display: block; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--line);
  }

  .hero { padding: 120px 24px 80px; }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .featured-visual { height: 280px; }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { height: 200px; }

  .section { padding: 64px 24px; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .geo-circle, .geo-diamond, .geo-triangle, .geo-dots { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .featured-title { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .text-content .text-title { font-size: 1.6rem; }
}

/* ══════════ CASE ROLÊDUCA (portfólio) ══════════ */
.featured-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.specimen-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 340px;
}
.specimen {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 22px;
  position: relative;
}
.specimen:nth-child(odd) { transform: rotate(-0.6deg) translateX(-8px); }
.specimen:nth-child(even) { transform: rotate(0.5deg) translateX(10px); }
.specimen::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 50%;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.specimen--answer { font-size: 0.85rem; color: var(--text-light); }
.specimen em { font-family: var(--serif); font-style: italic; color: var(--text); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.principle {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.principle span {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.case-block { margin-bottom: 72px; }
.case-block-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 28px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.spec-chip {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 20px 24px;
  line-height: 1.6;
}
.spec-chip em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 6px;
}
.spec-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 18px;
  max-width: 560px;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem;
}
.case-cta {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.prose a { color: var(--text); }

@media (max-width: 900px) {
  .principles { grid-template-columns: 1fr; gap: 28px; }
  .specimen-stack { max-width: 100%; }
  .specimen:nth-child(odd), .specimen:nth-child(even) { transform: none; }
  .case-cta { flex-direction: column; gap: 24px; }
}

/* voz — pilares */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.voice-card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.voice-card span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid-gray);
  display: block;
  margin-bottom: 10px;
}
.voice-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.voice-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .voice-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* reasons — amostra da curadoria */
.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 32px;
}
.reason-venue {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 14px;
}
.reason-card p {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
}
@media (max-width: 900px) {
  .reason-grid { grid-template-columns: 1fr; }
}

/* anatomia de um reason */
.anatomy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
}
.anatomy-part {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.anatomy-part:last-of-type { border-right: none; }
.anatomy-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.anatomy-part p {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
}
.anatomy-part small,
.reason-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.reason-card small { margin-top: 16px; font-style: italic; }
.anatomy-credit {
  position: absolute;
  bottom: -28px;
  right: 0;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.specimen--reason {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
}
.specimen--reason em {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 10px;
}
@media (max-width: 900px) {
  .anatomy { grid-template-columns: 1fr; }
  .anatomy-part { border-right: none; border-bottom: 1px solid var(--line); }
  .anatomy-part:last-of-type { border-bottom: none; }
  .anatomy-credit { position: static; display: block; margin-top: 12px; text-align: right; }
}
