:root {
  --ink: #071a3b;
  --paper: #f7f3ea;
  --white: #fffdf8;
  --pink: #df4f8f;
  --pink-dark: #b62f6b;
  --lime: #d9e75b;
  --muted: #687083;
  --line: rgba(7, 26, 59, 0.18);
  --shadow: 0 18px 50px rgba(7, 26, 59, 0.10);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 231, 91, 0.13), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover { text-decoration-color: var(--pink); }

button, input, textarea, select { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip:focus { transform: none; }

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
}

.site-symbol {
  display: inline-flex;
  flex: 0 0 auto;
  width: 54px;
  height: 38px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 160ms ease;
}

.site-symbol img {
  width: 54px;
  height: auto;
}

.site-symbol:hover { transform: rotate(-3deg); }

.topnav { margin-left: auto; }

.header-socials {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 8px;
}

.social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  transition: transform 160ms ease;
}

.social-link:hover { transform: translateY(-2px); }
.social-link.telegram,
.social-link.instagram { background: var(--pink); }
.social-link img { width: 22px; height: 22px; }

.mark {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 26px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 650;
}

.topnav a {
  padding: 7px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.topnav a:hover,
.topnav a[aria-current="page"] { border-color: var(--pink); }

.menu-toggle { display: none; }

main { padding: 42px 0 0; }

section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

main > section:first-of-type { border-top: 0; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(46px, 5.6vw, 72px); letter-spacing: -0.035em; }
h1.page { max-width: 850px; margin: 0 0 24px; }
h2 { max-width: 900px; margin-bottom: 30px; font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -0.025em; }
h3 { margin: 48px 0 20px; font-size: clamp(28px, 3.2vw, 40px); }
h4 { margin-bottom: 10px; font-size: 24px; }

.lead,
.lede,
.prose {
  max-width: 820px;
}

.lead,
.lede {
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.38;
}

.page + .lead { margin-bottom: 32px; }

.page-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: 510px;
  padding: 32px 0 70px;
}

.page-intro .anchors { margin-bottom: 0; }

.teams-intro {
  grid-template-columns: minmax(0, 920px);
  min-height: 0;
  padding-bottom: 50px;
}

.practice-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 44px;
}

.practice-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 178px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.practice-stat:nth-child(2) {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.practice-stat:nth-child(3) {
  background: var(--lime);
  border-color: var(--lime);
}

.practice-stat:nth-child(4) {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.practice-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.practice-stat span {
  display: block;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.work-format {
  position: relative;
  overflow: hidden;
  margin: 22px 0 0;
  padding: clamp(32px, 5vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.work-format::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--pink) 0 38%, var(--lime) 38% 100%);
}

.work-format > * {
  position: relative;
  z-index: 1;
}

.work-format .eyebrow { color: var(--pink-dark); }

.work-format-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.work-format h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
}

.work-format p {
  max-width: 650px;
  margin: 4px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

.section-actions {
  margin-top: 30px;
}

#contact {
  scroll-margin-top: 24px;
}

.about-intro {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
}

.about-intro .page-intro-copy { align-self: center; }

.about-portrait {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  margin: 0;
  border-radius: 180px 180px 24px 24px;
  background: var(--pink);
  box-shadow: 20px 20px 0 rgba(217, 231, 91, 0.62);
}

.about-portrait::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 72px;
  height: 72px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: -18px -18px 0 rgba(223, 79, 143, 0.72);
}

.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.motif-art {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: end;
}

.motif-art span { position: absolute; display: block; }

.motif-balance span:nth-child(1) {
  inset: 6% 12% 24% 8%;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.motif-balance span:nth-child(2) {
  right: 0;
  bottom: 8%;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: var(--pink);
  mix-blend-mode: multiply;
}

.motif-balance span:nth-child(3) {
  left: 2%;
  bottom: 2%;
  width: 42%;
  height: 42%;
  border-radius: 48% 52% 67% 33% / 43% 38% 62% 57%;
  background: var(--lime);
  transform: rotate(22deg);
}

.motif-words span:nth-child(1) {
  inset: 8% 8% 14% 14%;
  border: 3px solid var(--pink);
  border-radius: 45% 55% 35% 65% / 58% 40% 60% 42%;
  transform: rotate(-12deg);
}

.motif-words span:nth-child(2),
.motif-words span:nth-child(3) {
  right: 2%;
  width: 72%;
  height: 22%;
  border-radius: 999px;
}

.motif-words span:nth-child(2) { top: 30%; background: var(--lime); transform: rotate(8deg); }
.motif-words span:nth-child(3) { top: 51%; background: var(--ink); transform: rotate(-8deg); }

.eyebrow,
.srcname {
  margin-bottom: 14px;
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 58px;
}

.anchors a,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
}

.anchors a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.anchors a:hover { background: var(--lime); }

.night {
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 30px;
  padding: clamp(38px, 6vw, 76px);
}

.night h1,
.night h2,
.night h3,
.night h4 { color: var(--white); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  align-items: stretch;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 720px;
  margin: 28px 0 24px;
  font-size: clamp(42px, 4.3vw, 56px);
}

.hero .lede {
  color: #cbd2e0;
  font-size: clamp(20px, 2vw, 26px);
}
.hero .second { max-width: 710px; margin-top: 28px; font-size: 20px; color: var(--lime); }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  min-height: 0;
  color: var(--white);
  background: var(--pink);
  font-size: 15px;
  line-height: 1.2;
}

.pill.alt { color: var(--ink); background: var(--lime); }

.duplex {
  overflow: hidden;
  min-height: 500px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--pink), #85235b);
}

.duplex img { width: 100%; height: 100%; object-fit: cover; }

.doors,
.voices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.door,
.voice,
.card,
.review {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.door {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 32px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.door:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.door h3 { margin: 0 0 18px; }
.door p { color: #41495a; }
.go { color: var(--pink-dark); font-weight: 800; }
.go::after { content: " →"; }

.inline-cta {
  max-width: 850px;
  margin: 28px 0 0;
  padding: 20px 24px;
  background: rgba(217, 231, 91, 0.35);
  border-left: 5px solid var(--lime);
  border-radius: 0 14px 14px 0;
}

.grid { position: relative; }

.decorated {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 500px;
}

.decorated > * { position: relative; z-index: 1; }
.decorated > h2 { max-width: 760px; }
.decorated > .prose { max-width: min(760px, 70%); }

.decorated::before,
.decorated::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.motif-orbit::before {
  right: 4%;
  top: 120px;
  width: 230px;
  height: 230px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(217, 231, 91, 0.62), 0 0 0 37px var(--ink);
}

.motif-orbit::after {
  right: 2%;
  top: 82px;
  width: 250px;
  height: 330px;
  border: 2px solid rgba(7, 26, 59, 0.72);
  border-radius: 50%;
  transform: rotate(48deg);
}

.motif-blob::before {
  right: 2%;
  top: 112px;
  width: 300px;
  height: 260px;
  border-radius: 62% 38% 67% 33% / 42% 58% 42% 58%;
  background: var(--pink);
  opacity: 0.86;
  transform: rotate(16deg);
}

.motif-blob::after {
  right: 10%;
  top: 180px;
  width: 175px;
  height: 175px;
  border: 3px solid var(--ink);
  border-radius: 44% 56% 38% 62% / 63% 35% 65% 37%;
  background: var(--lime);
  transform: rotate(-24deg);
}

.motif-thread::before {
  right: 5%;
  top: 100px;
  width: 280px;
  height: 300px;
  border: 3px solid var(--ink);
  border-radius: 50% 42% 58% 44%;
  transform: rotate(35deg);
}

.motif-thread::after {
  right: 7%;
  top: 142px;
  width: 210px;
  height: 210px;
  border: 24px solid var(--lime);
  border-right-color: var(--pink);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px clamp(38px, 7vw, 90px);
  align-items: start;
  min-height: 0;
}

.statement .eyebrow { grid-column: 1 / -1; }

.statement h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 3.7vw, 48px);
}

.statement .lead {
  max-width: 620px;
  margin: 2px 0 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.48;
}

.talk,
.plain,
.pubs,
.years,
.creed {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.talk li,
.plain li {
  position: relative;
  padding: 20px 22px 20px 48px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.talk li::before,
.plain li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.plain { display: grid; gap: 10px; max-width: 860px; }
.plain li::before { background: var(--lime); border: 1px solid var(--ink); }

.mk {
  padding: 0 0.14em;
  background: linear-gradient(transparent 58%, rgba(217, 231, 91, 0.75) 58%);
}

.prose p { margin-bottom: 1.15em; }
.prose h4 { margin-top: 34px; }

.band {
  overflow: hidden;
  height: min(68vw, 610px);
  margin-top: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(223, 79, 143, 0.38), rgba(217, 231, 91, 0.58));
}

.band img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }

.caption {
  margin: 10px 4px 54px;
  color: var(--muted);
  font-size: 14px;
}

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

.pubs li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 220px);
  gap: 26px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.pubs a { font-family: var(--serif); font-size: 23px; font-weight: 700; line-height: 1.28; }
.pubs .meta { color: var(--muted); font-size: 14px; text-align: right; }
.pubs.compact li { padding: 16px 0; }
.pubs.compact a { font-size: 19px; }
.srcname { margin: 44px 0 5px; }

.slider { max-width: 920px; }
.slide { display: none; }
.slide.on { display: block; }

.card { padding: clamp(28px, 5vw, 54px); box-shadow: var(--shadow); }

blockquote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  quotes: "“" "”";
}

blockquote::before { content: open-quote; color: var(--pink); }
blockquote::after { content: close-quote; color: var(--pink); }

.said {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.said img {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--lime);
}

.who { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.35; }
.who b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 16px; }

.toggle,
.arrow,
.dot {
  border: 0;
  cursor: pointer;
}

.toggle {
  margin-top: 24px;
  padding: 0;
  color: var(--pink-dark);
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.more { display: none; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.card.open .more { display: block; }

.rail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 800;
}

.dots { display: flex; gap: 6px; margin-left: 6px; }
.dot { width: 9px; height: 9px; padding: 0; background: rgba(7, 26, 59, 0.23); border-radius: 50%; }
.dot[aria-selected="true"] { background: var(--pink); }
.count { margin-left: auto; color: var(--muted); font-size: 14px; }

.voices { margin-top: 28px; }
.voice { display: flex; flex-direction: column; justify-content: space-between; padding: 30px; }
.voice blockquote { font-size: 27px; }

.review {
  max-width: 940px;
  margin-bottom: 22px;
  padding: clamp(26px, 4vw, 42px);
}

.review .said { margin: 0 0 28px; }
.review > p { max-width: 830px; }

.creed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: creed;
}

.creed li {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  counter-increment: creed;
}

.creed li::before {
  content: counter(creed, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.creed p { margin-bottom: 0; }

.years li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.years li:last-child { border-bottom: 1px solid var(--line); }
.when { color: var(--pink-dark); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.years p { max-width: 750px; margin-bottom: 0; }

.years h4 a {
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
}

.years h4 a:hover { color: var(--pink-dark); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.btn:hover { background: var(--white); border-color: var(--white); }
.btn.ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.5); }
.btn.ghost:hover { color: var(--ink); background: var(--white); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

footer span:last-child { text-align: right; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .duplex { min-height: 460px; }
  .page-intro { grid-template-columns: 1fr; min-height: 0; padding-bottom: 56px; }
  .motif-art { width: 230px; position: absolute; right: 0; bottom: 32px; opacity: 0.18; }
  .about-intro { grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.7fr); }
  .about-portrait { min-height: 440px; }
  .doors, .voices, .creed, .talk { grid-template-columns: 1fr; }
  .door { min-height: 270px; }
  .practice-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-format-copy { grid-template-columns: 1fr; gap: 16px; }
  .statement { grid-template-columns: 1fr; gap: 24px; }
  .pubs li { grid-template-columns: 1fr; gap: 8px; }
  .pubs .meta { text-align: left; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar { align-items: center; gap: 10px; padding: 18px 0; }
  .site-symbol { width: 46px; height: 34px; }
  .site-symbol img { width: 46px; }
  .header-socials { gap: 6px; }
  .social-link { width: 34px; height: 34px; }
  .social-link img { width: 19px; height: 19px; }
  .mark { font-size: 22px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 13px;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
  }
  .menu-lines { display: grid; gap: 5px; width: 18px; }
  .menu-lines i { display: block; width: 18px; height: 2px; background: currentColor; transition: transform 160ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .topnav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    text-align: left;
    background: var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    margin-left: 0;
  }
  .header-socials { margin-left: auto; }
  .menu-open .topnav { opacity: 1; visibility: visible; transform: none; }
  .topnav a { padding: 13px 14px; color: var(--white); border: 0; border-radius: 11px; }
  .topnav a:hover, .topnav a[aria-current="page"] { color: var(--ink); background: var(--lime); }
  main { padding-top: 24px; }
  section { padding: 58px 0; }
  .night { margin-inline: -7px; padding: 28px 22px; border-radius: 22px; }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  h1.page { margin-bottom: 20px; }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero h1 { margin: 24px 0 20px; font-size: clamp(38px, 11vw, 48px); }
  .hero .lede { font-size: 20px; }
  .hero .second { font-size: 16px; }
  .pill { padding: 7px 12px; font-size: 13px; }
  .duplex { min-height: 360px; }
  .anchors { margin-bottom: 40px; }
  .page-intro { display: block; padding: 10px 0 48px; }
  .page-intro .anchors { margin-bottom: 0; }
  .practice-stats { gap: 10px; margin-bottom: 30px; }
  .practice-stat { min-height: 150px; padding: 19px 17px; border-radius: 17px; }
  .practice-stat strong { font-size: clamp(26px, 8vw, 36px); }
  .practice-stat span { margin-top: 18px; font-size: 14px; }
  .work-format { margin-top: 8px; padding: 30px 22px; border-radius: 22px; }
  .work-format p { font-size: 16px; }
  .about-intro { display: grid; grid-template-columns: 1fr; }
  .about-portrait { min-height: 430px; border-radius: 150px 150px 20px 20px; box-shadow: 10px 10px 0 rgba(217, 231, 91, 0.62); }
  .motif-art { display: none; }
  .decorated { min-height: 0; }
  .decorated > .prose { max-width: 100%; }
  .decorated > h2 { max-width: 100%; }
  .decorated::before, .decorated::after { opacity: 0.11; transform: scale(0.72); transform-origin: right top; }
  .statement { min-height: 0; padding-bottom: 58px; }
  .years li { grid-template-columns: 1fr; gap: 8px; }
  .creed li { min-height: 0; }
  .card, .review, .voice, .door { border-radius: 17px; }
  .said img { width: 58px; height: 58px; }
  footer { flex-direction: column; }
  footer span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
