:root {
  --ink: #17221d;
  --ink-soft: #35423b;
  --forest: #173e37;
  --forest-deep: #0f2d28;
  --paper: #f5f0e7;
  --paper-warm: #ede4d6;
  --cream: #fffaf2;
  --clay: #c55f3f;
  --apricot: #e4a163;
  --gold: #d2a84d;
  --sage: #91a69a;
  --line: rgba(23, 34, 29, 0.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--cream);
  background: var(--clay);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  border-color: rgba(23, 34, 29, 0.09);
  background: rgba(245, 240, 231, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50% 50% 50% 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.brand-name {
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 150px 0 30px;
  background:
    radial-gradient(circle at 77% 42%, rgba(228, 161, 99, 0.17), transparent 27%),
    linear-gradient(118deg, #f8f4ec 0%, #f3ecdf 55%, #e9dfd1 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-wash {
  position: absolute;
  top: -190px;
  right: -90px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(23, 62, 55, 0.12);
  border-radius: 50%;
}

.hero-wash::before,
.hero-wash::after {
  position: absolute;
  border: 1px solid rgba(23, 62, 55, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-wash::before {
  inset: 72px;
}

.hero-wash::after {
  inset: 145px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.art-copy h2,
.music-copy h2,
.poetry-copy h2,
.teaching-copy h2,
.about-copy h2,
.contact-copy h2,
.product-hero h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(68px, 6.3vw, 96px);
}

h1 em,
h2 em,
blockquote em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--cream);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--clay);
}

.button-light {
  color: var(--forest-deep);
  background: var(--cream);
}

.button-light:hover {
  color: white;
  background: var(--clay);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(23, 34, 29, 0.4);
  font-size: 13px;
  font-weight: 700;
}

.text-link span,
.card-link span,
.project-arrow {
  transition: transform 180ms ease;
}

.text-link:hover span,
.card-link:hover span,
.project-row:hover .project-arrow {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 62, 55, 0.21);
  border-radius: 50%;
}

.orbit-one {
  inset: 8%;
}

.orbit-two {
  inset: 24%;
  border-style: dashed;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  color: var(--cream);
  background: var(--forest);
  border: 10px solid rgba(255, 250, 242, 0.64);
  border-radius: 50% 50% 50% 27%;
  box-shadow: 0 24px 60px rgba(23, 62, 55, 0.22);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.center-monogram {
  font-family: var(--serif);
  font-size: 45px;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.center-caption {
  margin-top: 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.orbit-card {
  position: absolute;
  display: grid;
  width: 126px;
  min-height: 116px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 29, 0.14);
  border-radius: 19px;
  box-shadow: 0 18px 40px rgba(23, 34, 29, 0.09);
  line-height: 1.25;
  animation: float 5s ease-in-out infinite;
}

.orbit-card::after {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.orbit-number {
  align-self: start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.orbit-symbol {
  align-self: center;
  font-family: var(--serif);
  font-size: 25px;
}

.orbit-card strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.orbit-card small {
  font-size: 7px;
  letter-spacing: 0.04em;
}

.orbit-card-code {
  top: -1%;
  left: 50%;
  color: white;
  background: var(--clay);
  transform: translateX(-50%) rotate(-4deg);
}

.orbit-card-code::after {
  top: -21px;
  right: -25px;
}

.orbit-card-art {
  top: 24%;
  right: -2%;
  color: var(--forest-deep);
  background: #e1bd70;
  animation-delay: -1.4s;
  transform: rotate(5deg);
}

.orbit-card-art::after {
  right: -24px;
  bottom: -17px;
}

.orbit-card-word {
  top: 24%;
  left: -2%;
  color: var(--cream);
  background: var(--forest);
  animation-delay: -2.8s;
  transform: rotate(-4deg);
}

.orbit-card-word::after {
  top: -14px;
  left: -20px;
}

.orbit-card-music {
  right: 8%;
  bottom: 0;
  color: var(--cream);
  background: #66516a;
  animation-delay: -3.6s;
  transform: rotate(4deg);
}

.orbit-card-music::after {
  right: -18px;
  bottom: -23px;
}

.orbit-card-poetry {
  bottom: 0;
  left: 8%;
  color: var(--cream);
  background: #536d78;
  animation-delay: -4.4s;
  transform: rotate(-3deg);
}

.orbit-card-poetry::after {
  top: -22px;
  left: -19px;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(23, 34, 29, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll i {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(23, 34, 29, 0.4);
  border-radius: 999px;
}

.hero-scroll i::after {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 5px;
  background: var(--forest);
  border-radius: 2px;
  content: "";
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.manifesto-strip {
  overflow: hidden;
  padding: 18px 0;
  color: var(--cream);
  background: var(--forest-deep);
}

.manifesto-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.manifesto-track span {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.manifesto-track i {
  color: var(--apricot);
  font-size: 11px;
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 0.42fr 1fr;
  gap: 40px;
  margin-bottom: 66px;
}

.section-heading h2,
.art-copy h2,
.music-copy h2,
.poetry-copy h2,
.teaching-copy h2,
.contact-copy h2 {
  font-size: clamp(50px, 5.3vw, 76px);
}

.section-heading > div > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.path-card {
  display: flex;
  grid-column: span 2;
  min-height: 640px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.path-card:hover {
  z-index: 2;
  box-shadow: 0 28px 70px rgba(23, 34, 29, 0.12);
  transform: translateY(-8px);
}

.path-tech {
  background: #e8e5dc;
}

.path-art {
  background: #ead9cb;
}

.path-music {
  background: #e2d9e3;
}

.path-poetry {
  grid-column: span 3;
  background: #eadfca;
}

.path-theology {
  grid-column: span 3;
  background: #dfe6de;
}

.path-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.path-index {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(23, 34, 29, 0.18);
  border-radius: 50%;
  font-size: 15px;
}

.path-graphic {
  position: relative;
  height: 235px;
  margin: 32px 0;
  overflow: hidden;
  border-radius: 16px;
}

.tech-graphic {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--forest);
  background-size: 24px 24px;
}

.code-window {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.code-window i {
  width: 6px;
  height: 6px;
  background: var(--apricot);
  border-radius: 50%;
}

.code-line {
  position: absolute;
  left: 43px;
  height: 7px;
  background: rgba(255, 250, 242, 0.76);
  border-radius: 999px;
}

.line-a {
  top: 78px;
  width: 51%;
}

.line-b {
  top: 106px;
  width: 33%;
}

.line-c {
  top: 134px;
  width: 61%;
}

.code-pulse {
  position: absolute;
  right: 26px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  background: var(--clay);
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 50% 50% 50% 13px;
}

.art-graphic {
  background: #c76b50;
}

.art-shape {
  position: absolute;
  display: block;
}

.art-shape-a {
  top: 30px;
  left: 44px;
  width: 150px;
  height: 150px;
  background: #e5b962;
  border-radius: 50% 48% 38% 62%;
  transform: rotate(19deg);
}

.art-shape-b {
  right: 22px;
  bottom: -42px;
  width: 172px;
  height: 172px;
  background: var(--forest);
  border-radius: 47% 53% 50% 50%;
}

.art-shape-c {
  top: -32px;
  right: 33px;
  width: 89px;
  height: 122px;
  border: 22px solid rgba(255, 246, 231, 0.7);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.art-stroke {
  position: absolute;
  right: 81px;
  bottom: 46px;
  width: 180px;
  height: 2px;
  background: var(--cream);
  box-shadow: 0 7px 0 rgba(255, 250, 242, 0.5), 0 -7px 0 rgba(255, 250, 242, 0.32);
  transform: rotate(-28deg);
}

.music-graphic {
  background:
    linear-gradient(90deg, transparent 0 64%, rgba(255, 255, 255, 0.07) 64% 64.5%, transparent 64.5%),
    #5a4860;
}

.music-disc {
  position: absolute;
  top: 30px;
  left: 33px;
  width: 174px;
  height: 174px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    radial-gradient(circle, #e3a668 0 8%, #f2e8d8 8.5% 18%, transparent 18.5%),
    repeating-radial-gradient(circle, #29242d 0 4px, #3d3441 5px 7px);
  border-radius: 50%;
  box-shadow: 0 18px 35px rgba(30, 23, 32, 0.28);
  transform: rotate(-8deg);
}

.music-disc i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #322a35;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.music-staff {
  position: absolute;
  top: 51px;
  right: 0;
  width: 48%;
  height: 83px;
  background: repeating-linear-gradient(to bottom, transparent 0 13px, rgba(255, 250, 242, 0.46) 13px 14px);
  transform: rotate(-4deg);
}

.music-note {
  position: absolute;
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1;
}

.music-note-a {
  top: 58px;
  right: 24%;
  font-size: 34px;
  transform: rotate(8deg);
}

.music-note-b {
  right: 9%;
  bottom: 37px;
  color: #e6b86c;
  font-size: 48px;
  transform: rotate(-9deg);
}

.poetry-graphic {
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.08), transparent 45%),
    #b85e45;
}

.poetry-sheet {
  position: absolute;
  top: 26px;
  right: 19%;
  width: 58%;
  height: 190px;
  background: #f7eddf;
  box-shadow: 0 20px 35px rgba(67, 34, 27, 0.2);
  transform: rotate(4deg);
}

.poetry-sheet::after {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 34px;
  height: 1px;
  background: var(--clay);
  content: "";
}

.poetry-line {
  position: absolute;
  z-index: 2;
  left: 32%;
  height: 4px;
  background: rgba(23, 34, 29, 0.55);
  border-radius: 999px;
  transform: rotate(4deg);
}

.poetry-line-a {
  top: 87px;
  width: 31%;
}

.poetry-line-b {
  top: 111px;
  width: 38%;
}

.poetry-line-c {
  top: 135px;
  width: 24%;
}

.poetry-quote {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 17%;
  color: #e7b65e;
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
}

.theology-graphic {
  background: #688176;
}

.book-page {
  position: absolute;
  bottom: 46px;
  width: 41%;
  height: 110px;
  background: var(--cream);
  box-shadow: 0 18px 30px rgba(15, 45, 40, 0.18);
}

.page-left {
  right: 50%;
  border-radius: 70px 7px 7px 15px;
  transform: skewY(7deg);
}

.page-right {
  left: 50%;
  border-radius: 7px 70px 15px 7px;
  transform: skewY(-7deg);
}

.book-spine {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 50%;
  width: 2px;
  height: 112px;
  background: var(--gold);
}

.book-ray {
  position: absolute;
  top: 27px;
  left: 50%;
  width: 1px;
  height: 49px;
  background: rgba(255, 250, 242, 0.58);
  transform-origin: bottom;
}

.ray-a {
  transform: rotate(-38deg);
}

.ray-b {
  transform: rotate(0deg);
}

.ray-c {
  transform: rotate(38deg);
}

.path-card h3 {
  max-width: 295px;
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.path-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 9px;
  border: 1px solid rgba(23, 34, 29, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 34, 29, 0.14);
  font-size: 11px;
  font-weight: 700;
}

.art-feature {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest-deep);
}

.art-feature::after {
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 250, 242, 0.1);
  border-radius: 50%;
  content: "";
}

.art-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.eyebrow-light {
  color: rgba(255, 250, 242, 0.72);
}

.art-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 27px 0 33px;
  color: rgba(255, 250, 242, 0.69);
}

.art-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.art-preview {
  position: relative;
  min-height: 520px;
}

.artwork-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  color: var(--cream);
  background: #111;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.3);
}

.artwork-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.artwork-frame:hover img {
  transform: scale(1.025);
}

.artwork-frame::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(9, 18, 15, 0.77));
  content: "";
  pointer-events: none;
}

.artwork-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 16px;
  left: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.artwork-frame figcaption span {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
}

.artwork-frame figcaption small {
  color: rgba(255, 250, 242, 0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.artwork-main {
  top: 0;
  left: 0;
  width: 78%;
  height: 390px;
  transform: rotate(-1.5deg);
}

.artwork-small {
  right: 0;
  bottom: 0;
  width: 36%;
  height: 330px;
  border: 9px solid var(--cream);
  transform: rotate(2.2deg);
}

.canvas {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.canvas::before,
.canvas::after {
  position: absolute;
  content: "";
}

.canvas-main {
  top: 0;
  left: 0;
  width: 66%;
  height: 490px;
  background:
    linear-gradient(137deg, transparent 39%, rgba(244, 193, 99, 0.85) 40% 51%, transparent 52%),
    radial-gradient(ellipse at 25% 26%, #d17858 0 19%, transparent 20%),
    radial-gradient(ellipse at 74% 74%, #193f38 0 26%, transparent 27%),
    #d9c7ae;
  transform: rotate(-2deg);
}

.canvas-main::before {
  top: 44%;
  left: -12%;
  width: 120%;
  height: 3px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 8px rgba(255, 250, 242, 0.37), 0 -8px rgba(255, 250, 242, 0.24);
  transform: rotate(14deg);
}

.canvas-small {
  right: 0;
  bottom: 16px;
  width: 46%;
  height: 320px;
  background:
    radial-gradient(circle at 40% 48%, transparent 0 21%, #e2b764 22% 27%, transparent 28%),
    linear-gradient(38deg, #b75c43 0 38%, transparent 39%),
    #e9ddcb;
  transform: rotate(3deg);
}

.canvas-small::before {
  top: 10%;
  right: -22%;
  width: 65%;
  height: 84%;
  background: var(--forest);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.canvas-placeholder {
  z-index: 2;
  padding: 12px 15px;
  border: 1px solid rgba(255, 250, 242, 0.5);
  color: rgba(255, 250, 242, 0.9);
  background: rgba(15, 45, 40, 0.6);
  backdrop-filter: blur(7px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.canvas-caption {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 17px;
  padding: 4px 8px;
  color: var(--cream);
  background: rgba(23, 34, 29, 0.76);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.art-hint {
  position: absolute;
  right: 6px;
  bottom: -38px;
  max-width: 230px;
  color: rgba(255, 250, 242, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.music-feature {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: #4b3b50;
}

.music-feature::before {
  position: absolute;
  top: -260px;
  left: 39%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 250, 242, 0.08);
  border-radius: 50%;
  content: "";
}

.music-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 95px;
}

.music-stage {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.sound-disc {
  position: absolute;
  top: 67px;
  left: 50%;
  width: 345px;
  height: 345px;
  background:
    radial-gradient(circle, #d49a60 0 3%, #f1e1cc 3.5% 15%, transparent 15.5%),
    repeating-radial-gradient(circle, #211d25 0 5px, #372f3b 6px 9px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 35px 80px rgba(18, 13, 20, 0.38);
  transform: translateX(-50%);
  animation: slowSpin 24s linear infinite;
}

.sound-disc-label {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 91px;
  height: 91px;
  place-content: center;
  color: var(--ink);
  background: #e4b66d;
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.sound-disc-label i {
  font-family: var(--serif);
  font-size: 27px;
  font-style: normal;
  line-height: 0.9;
}

.sound-disc-label small {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sound-wave {
  position: absolute;
  right: 26px;
  bottom: 44px;
  left: 26px;
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sound-wave i {
  width: 3px;
  height: 23%;
  background: #e4b66d;
  border-radius: 999px;
}

.sound-wave i:nth-child(2),
.sound-wave i:nth-child(10) { height: 45%; }
.sound-wave i:nth-child(3),
.sound-wave i:nth-child(9) { height: 72%; }
.sound-wave i:nth-child(4),
.sound-wave i:nth-child(8) { height: 38%; }
.sound-wave i:nth-child(5),
.sound-wave i:nth-child(7) { height: 88%; }
.sound-wave i:nth-child(6) { height: 100%; }

.stage-note {
  position: absolute;
  color: rgba(255, 250, 242, 0.68);
  font-family: var(--serif);
  line-height: 1;
}

.stage-note-a {
  top: 38px;
  left: 31px;
  font-size: 47px;
  transform: rotate(-12deg);
}

.stage-note-b {
  top: 71px;
  right: 37px;
  color: #e4b66d;
  font-size: 35px;
  transform: rotate(8deg);
}

.music-stage-caption {
  position: absolute;
  bottom: 17px;
  left: 25px;
  color: rgba(255, 250, 242, 0.46);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.music-copy h2,
.poetry-copy h2 {
  font-size: clamp(50px, 5.3vw, 76px);
}

.music-copy h2 em {
  color: #e4b66d;
}

.music-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.music-roles {
  display: grid;
  margin: 33px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.music-roles span {
  display: grid;
  grid-template-columns: 38px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 600;
}

.music-roles i {
  color: #e4b66d;
  font-size: 8px;
  font-style: normal;
}

.poetry-feature {
  position: relative;
  overflow: hidden;
  background: #e9dfce;
}

.poetry-feature::after {
  position: absolute;
  top: 50%;
  left: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23, 34, 29, 0.09);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.poetry-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
}

.poetry-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0;
  color: var(--ink-soft);
}

.poetry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.poetry-tags li {
  padding: 6px 10px;
  border: 1px solid rgba(23, 34, 29, 0.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}

.poetry-preview {
  position: relative;
  display: flex;
  min-height: 505px;
  flex-direction: column;
  justify-content: center;
  padding: 53px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 18%, rgba(232, 184, 102, 0.38) 0 9%, transparent 9.5%),
    #aa523d;
  border-radius: 50% 50% 20px 50%;
  box-shadow: 0 30px 70px rgba(78, 43, 31, 0.17);
}

.poetry-preview::before,
.poetry-preview::after {
  position: absolute;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 50%;
  content: "";
}

.poetry-preview::before {
  top: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
}

.poetry-preview::after {
  right: 34px;
  bottom: 42px;
  width: 90px;
  height: 90px;
}

.poetry-preview-index {
  position: absolute;
  top: 32px;
  left: 43px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poetry-preview-quote {
  height: 75px;
  color: #e5b667;
  font-family: var(--serif);
  font-size: 132px;
  line-height: 0.85;
}

.poetry-preview > p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.poetry-preview-footer {
  position: absolute;
  right: 43px;
  bottom: 29px;
  left: 43px;
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.teaching {
  background: var(--paper-warm);
}

.teaching-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.teaching-number {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cream);
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(255, 250, 242, 0.11) 39% 39.5%, transparent 40%),
    var(--clay);
  border-radius: 50% 50% 12% 50%;
  font-family: var(--serif);
  font-size: clamp(100px, 14vw, 190px);
  letter-spacing: -0.11em;
  line-height: 1;
}

.teaching-number::before,
.teaching-number::after {
  position: absolute;
  width: 50px;
  height: 1px;
  background: rgba(255, 250, 242, 0.65);
  content: "";
}

.teaching-number::before {
  top: 18%;
  left: 13%;
  transform: rotate(45deg);
}

.teaching-number::after {
  right: 12%;
  bottom: 19%;
  transform: rotate(-45deg);
}

.teaching-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 29px 0;
  color: var(--ink-soft);
}

.teaching-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0 27px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.teaching-offers span {
  padding: 18px 15px 18px 0;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

.teaching-offers span + span {
  padding-left: 15px;
}

.teaching-offers span:last-child {
  border-right: 0;
}

.teaching-offers i {
  display: block;
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 9px;
  font-style: normal;
}

.projects {
  background: var(--cream);
}

.projects-heading {
  margin-bottom: 50px;
}

.live-project {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 75px;
  margin-bottom: 20px;
  padding: 44px;
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 148, 22, 0.2), transparent 31%),
    linear-gradient(135deg, #071642, #10245c 62%, #07143a);
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(7, 22, 66, 0.18);
}

.live-project::after {
  position: absolute;
  right: -115px;
  bottom: -190px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.live-project-main,
.live-project-panel {
  position: relative;
  z-index: 1;
}

.live-project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 40px;
}

.live-project-icon {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 21px;
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.25);
}

.live-project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-project-status i {
  width: 6px;
  height: 6px;
  background: #ff9a1f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 154, 31, 0.14);
}

.live-project-kicker,
.live-project-label {
  display: block;
  color: rgba(255, 250, 242, 0.47);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-project h3 {
  margin: 13px 0 15px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.live-project-main > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 13px;
}

.live-project-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.live-project-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 23px 0 29px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.live-project-features li {
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 250, 242, 0.78);
  font-family: var(--serif);
  font-size: 17px;
}

.live-project-features li:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.live-project-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.live-project-actions .button {
  flex: 1 1 155px;
  justify-content: center;
}

.google-play-link {
  display: grid;
  min-height: 50px;
  flex: 1 1 190px;
  align-items: center;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  padding: 7px 17px;
  color: #071642;
  background: #ff9a1f;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.google-play-link:hover {
  background: #ffb04d;
  transform: translateY(-2px);
}

.google-play-link > span {
  grid-row: 1 / 3;
  font-size: 16px;
}

.google-play-link small {
  align-self: end;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.google-play-link strong {
  align-self: start;
  font-size: 13px;
  line-height: 1.15;
}

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

.project-row {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: 50px 76px minmax(230px, 1fr) minmax(270px, 0.8fr) 44px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.project-row:hover {
  padding-inline: 18px;
  background: rgba(237, 228, 214, 0.65);
}

.project-number {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 19px;
}

.project-mark i {
  font-family: var(--serif);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
}

.project-creed .project-mark {
  color: #e9f0ff;
  background: #203d70;
}

.project-trefos .project-mark {
  color: #fff1d9;
  background: #9a542f;
  border-radius: 50% 50% 15px 50%;
}

.project-escola .project-mark {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(10, 49, 92, 0.13);
  border-radius: 18px;
}

.project-escola .project-mark img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.project-name {
  display: grid;
}

.project-name strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.project-name small {
  margin-top: 4px;
  color: rgba(23, 34, 29, 0.61);
  font-size: 11px;
}

.project-domain {
  color: rgba(23, 34, 29, 0.57);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.project-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about {
  color: var(--cream);
  background: var(--clay);
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}

.about-statement {
  position: relative;
}

.quote-mark {
  display: block;
  height: 50px;
  color: #f2c474;
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.9;
}

.about-statement blockquote {
  margin: 40px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.about-statement blockquote em {
  color: #f3c776;
}

.about-copy {
  padding-top: 46px;
}

.about-copy h2 {
  margin-bottom: 27px;
  font-size: 39px;
  line-height: 1.04;
}

.about-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
}

.text-link-light {
  margin-top: 16px;
  border-color: rgba(255, 250, 242, 0.5);
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0;
  color: var(--ink-soft);
}

.contact-notes {
  display: grid;
  gap: 8px;
  color: rgba(23, 34, 29, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-notes span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-notes i {
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  color: var(--cream);
  border-color: var(--forest);
  background: var(--forest);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(23, 34, 29, 0.07);
}

.contact-form label {
  display: grid;
  margin-bottom: 21px;
  gap: 8px;
}

.contact-form label > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 34, 29, 0.2);
  outline: 0;
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(23, 34, 29, 0.38);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 9px;
}

.form-footer p {
  max-width: 210px;
  margin: 0;
  color: rgba(23, 34, 29, 0.5);
  font-size: 9px;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
}

.site-footer {
  color: rgba(255, 250, 242, 0.78);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1fr;
  gap: 70px;
  padding-top: 74px;
  padding-bottom: 65px;
}

.brand-footer {
  align-self: start;
  color: var(--cream);
}

.brand-footer .brand-mark {
  color: var(--forest);
  background: var(--cream);
}

.footer-top > p {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.53);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links span {
  margin-bottom: 5px;
  color: rgba(255, 250, 242, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--apricot);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 242, 0.4);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-delay="1"] {
  transition-delay: 100ms;
}

[data-delay="2"] {
  transition-delay: 190ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero [data-reveal],
.js .product-hero [data-reveal],
.js .legal-hero [data-reveal],
.js .poetry-page-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Poetry collection */
.poetry-page {
  background: #f5f0e7;
}

.poetry-page-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 77% 35%, rgba(197, 95, 63, 0.16), transparent 31%),
    linear-gradient(125deg, #f8f4ec, #eee4d5);
}

.poetry-page-hero::before {
  position: absolute;
  top: -230px;
  right: -160px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(23, 34, 29, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(23, 34, 29, 0.025),
    0 0 0 180px rgba(23, 34, 29, 0.018);
  content: "";
}

.poetry-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  align-items: center;
  grid-template-columns: 1fr 0.92fr;
  gap: 85px;
}

.poetry-page-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.poetry-page-hero-copy h1 em {
  color: var(--clay);
}

.poetry-page-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 31px 0 34px;
  color: var(--ink-soft);
  font-size: 17px;
}

.poetry-page-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 21%, rgba(235, 188, 103, 0.42) 0 10%, transparent 10.5%),
    var(--clay);
  border-radius: 50% 50% 22px 50%;
  box-shadow: 0 35px 75px rgba(102, 50, 37, 0.2);
}

.poetry-page-visual::before,
.poetry-page-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 50%;
  content: "";
}

.poetry-page-visual::before {
  top: -45px;
  right: -52px;
  width: 270px;
  height: 270px;
}

.poetry-page-visual::after {
  bottom: -110px;
  left: -90px;
  width: 330px;
  height: 330px;
}

.hero-quote {
  position: absolute;
  top: 77px;
  left: 50%;
  color: #e7b865;
  font-family: var(--serif);
  font-size: 260px;
  line-height: 0.65;
  transform: translateX(-50%);
}

.title-fragment {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 242, 0.3);
  background: rgba(90, 40, 30, 0.27);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.fragment-a { top: 28%; left: 8%; transform: rotate(-6deg); }
.fragment-b { top: 41%; right: 7%; transform: rotate(5deg); }
.fragment-c { right: 17%; bottom: 22%; transform: rotate(-3deg); }
.fragment-d { bottom: 17%; left: 10%; transform: rotate(4deg); }
.fragment-e { top: 53%; left: 21%; transform: rotate(-2deg); }

.visual-signature {
  position: absolute;
  right: 33px;
  bottom: 27px;
  color: rgba(255, 250, 242, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poetry-intro {
  background: #f5f0e7;
}

.poetry-intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.poetry-intro-number {
  position: relative;
  margin: 0;
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(180px, 22vw, 300px);
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.poetry-intro-number::after {
  position: absolute;
  right: 8%;
  bottom: -28px;
  color: var(--ink);
  content: "anos de escrita";
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poetry-intro h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(51px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.poetry-intro > .shell > div > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 29px 0 17px;
  color: var(--ink-soft);
}

.poetry-intro small {
  display: block;
  max-width: 630px;
  color: rgba(23, 34, 29, 0.52);
  font-size: 9px;
  line-height: 1.6;
}

.featured-poem {
  color: var(--cream);
  background: var(--forest-deep);
}

.featured-poem-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 85px;
}

.featured-poem-meta {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
}

.featured-poem-meta time,
.featured-poem-meta .poem-count {
  color: rgba(255, 250, 242, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured-poem-meta .poem-count {
  margin-top: 43px;
  color: #e1ad63;
}

.featured-poem-body {
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.featured-poem-body h2 {
  margin: 0 0 43px;
  color: #e5b66d;
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.poem-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.48;
}

.poem-text p {
  margin: 0 0 27px;
}

.poem-text p:last-child {
  margin-bottom: 0;
}

.poem-text-large {
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.5;
}

.poem-collection {
  background: #eee5d7;
}

.poem-collection-heading {
  margin-bottom: 54px;
}

.poem-grid {
  columns: 2;
  column-gap: 16px;
}

.poem-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 29, 0.13);
  background: #faf5ec;
  border-radius: 21px;
  break-inside: avoid;
}

.poem-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(23, 34, 29, 0.1);
  border-radius: 50%;
  content: "";
}

.poem-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  color: rgba(23, 34, 29, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poem-card h2 {
  max-width: 520px;
  margin: 0 0 31px;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.poem-card-short {
  min-height: 410px;
}

.poem-card-short .poem-text {
  font-size: 23px;
}

.poem-card-sand {
  background: #e3c681;
}

.poem-card-forest,
.poem-card-clay,
.poem-card-blue {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.13);
}

.poem-card-forest {
  background: var(--forest);
}

.poem-card-clay {
  background: var(--clay);
}

.poem-card-blue {
  background: #526d78;
}

.poem-card-forest .poem-card-header,
.poem-card-clay .poem-card-header,
.poem-card-blue .poem-card-header {
  color: rgba(255, 250, 242, 0.52);
}

.poem-card-forest::after,
.poem-card-clay::after,
.poem-card-blue::after {
  border-color: rgba(255, 255, 255, 0.14);
}

.poem-subtitle {
  margin: -19px 0 36px;
  color: rgba(255, 250, 242, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing-poem {
  color: var(--cream);
  background: #4b3b50;
}

.closing-poem-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
}

.closing-poem-heading time,
.closing-poem-heading > span {
  color: rgba(255, 250, 242, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-poem-heading h2 {
  margin: 34px 0;
  font-family: var(--serif);
  font-size: clamp(51px, 5.2vw, 73px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.closing-poem-heading h2 em {
  color: #e4b66d;
}

.closing-poem-text {
  margin: 0;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 24px;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.5;
}

.closing-poem-text p {
  margin: 0 0 29px;
}

.closing-poem-text p:last-child {
  margin-bottom: 0;
}

.poetry-contact {
  background: #f5f0e7;
  text-align: center;
}

.poetry-contact h2 {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.poetry-contact > .shell > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px auto 31px;
  color: var(--ink-soft);
}

/* Product microsites */
.product-page {
  --product: #284e7b;
  --product-soft: #dce7f5;
  background: #f8f5ef;
}

.product-page.trefos-theme {
  --product: #8b482b;
  --product-soft: #f0d9c4;
}

.product-page.escola-theme {
  --product: #365d40;
  --product-soft: #dce8dc;
}

.product-header .brand-mark {
  background: var(--product);
}

.product-header .nav-cta {
  background: var(--product);
}

.product-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 76% 38%, var(--product-soft), transparent 30%),
    #f8f5ef;
}

.product-hero::before {
  position: absolute;
  top: 17%;
  right: -110px;
  width: 530px;
  height: 530px;
  border: 1px solid color-mix(in srgb, var(--product) 18%, transparent);
  border-radius: 50%;
  content: "";
}

.product-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--product);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-badge::before {
  width: 7px;
  height: 7px;
  background: var(--product);
  border-radius: 50%;
  content: "";
}

.product-hero h1 {
  max-width: 700px;
  font-size: clamp(62px, 7vw, 100px);
}

.product-hero h1 em {
  color: var(--product);
}

.product-lead {
  max-width: 590px;
  margin: 28px 0 35px;
  color: var(--ink-soft);
  font-size: 18px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-actions .button-primary {
  background: var(--product);
}

.store-button {
  display: inline-grid;
  min-height: 54px;
  align-content: center;
  padding: 8px 18px;
  color: white;
  background: var(--ink);
  border-radius: 13px;
  line-height: 1.1;
}

.store-button small {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 15px;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.phone-stage::before {
  width: 410px;
  height: 410px;
  background: var(--product-soft);
}

.phone-stage::after {
  width: 330px;
  height: 330px;
  border: 1px dashed color-mix(in srgb, var(--product) 36%, transparent);
}

.phone {
  position: relative;
  z-index: 2;
  width: 246px;
  height: 485px;
  padding: 11px;
  background: #151b18;
  border-radius: 42px;
  box-shadow: 0 38px 70px color-mix(in srgb, var(--product) 26%, transparent);
  transform: rotate(5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 33px 19px 20px;
  color: var(--ink);
  background: #fffdf8;
  border-radius: 33px;
}

.phone-screen::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 74px;
  height: 20px;
  background: #151b18;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.app-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--product);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-mini-logo {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: white;
  background: var(--product);
  border-radius: 9px;
  font-family: var(--serif);
  font-size: 12px;
}

.screen-greeting {
  margin: 0 0 3px;
  color: rgba(23, 34, 29, 0.5);
  font-size: 9px;
}

.screen-title {
  margin: 0 0 21px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.screen-card {
  min-height: 160px;
  padding: 18px;
  color: white;
  background: var(--product);
  border-radius: 20px;
}

.screen-card small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.screen-card p {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.1;
}

.screen-progress {
  height: 5px;
  margin-top: 19px;
  overflow: hidden;
  background: rgba(23, 34, 29, 0.1);
  border-radius: 999px;
}

.screen-progress::before {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--product);
  border-radius: inherit;
  content: "";
}

.screen-list {
  display: grid;
  margin-top: 16px;
  gap: 8px;
}

.screen-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  background: var(--product-soft);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 600;
}

.screen-list i {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: white;
  background: var(--product);
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
}

.feature-section {
  padding: 110px 0;
  color: var(--cream);
  background: var(--product);
}

.feature-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  margin-bottom: 60px;
}

.feature-heading .eyebrow {
  color: rgba(255, 250, 242, 0.68);
}

.feature-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(47px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.feature-card > span {
  color: rgba(255, 250, 242, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 65px 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.69);
  font-size: 12px;
}

.product-cta {
  padding: 110px 0;
  text-align: center;
}

.product-cta h2 {
  max-width: 800px;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.product-cta h2 em {
  color: var(--product);
}

.product-cta > .shell > p {
  max-width: 590px;
  margin: 0 auto 31px;
  color: var(--ink-soft);
}

.product-utility {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 29px;
  font-size: 10px;
  font-weight: 700;
}

.product-utility a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
}

/* Legal and support */
.legal-page {
  background: #f8f5ef;
}

.legal-hero {
  padding: 160px 0 70px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(58px, 7vw, 94px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-top: 75px;
  padding-bottom: 110px;
}

.legal-aside {
  position: sticky;
  top: 115px;
  display: grid;
  gap: 8px;
}

.legal-aside strong {
  margin-bottom: 9px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside a {
  color: rgba(23, 34, 29, 0.63);
  font-size: 12px;
}

.legal-aside a:hover {
  color: var(--clay);
}

.legal-content {
  max-width: 750px;
}

.draft-notice {
  margin-bottom: 45px;
  padding: 18px 21px;
  border: 1px solid rgba(197, 95, 63, 0.27);
  background: rgba(197, 95, 63, 0.08);
  border-radius: 14px;
  font-size: 12px;
}

.legal-content section {
  padding: 0 0 34px;
  scroll-margin-top: 115px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 14px;
}

.legal-content ul {
  padding-left: 19px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 65px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 18px;
}

.support-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--forest);
  border-radius: 13px;
  font-family: var(--serif);
}

.support-card h2 {
  margin: 36px 0 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.support-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 11px;
}

.support-card a {
  font-size: 10px;
  font-weight: 700;
}

.faq-list details {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: 12px 0 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

/* Art portfolio */
.art-page {
  background: #f6f1e8;
}

.art-page-hero {
  display: flex;
  min-height: 900px;
  padding: 142px 0 90px;
  align-items: center;
  overflow: hidden;
}

.art-page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
}

.art-page-hero-copy {
  position: relative;
  z-index: 2;
}

.art-page-hero-copy h1,
.art-statement h2,
.critical-copy h2,
.pandemic-art-copy h2,
.art-presence h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.art-page-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(70px, 6.7vw, 100px);
}

.art-page-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.art-hero-figure {
  position: relative;
  margin: 0;
}

.art-hero-figure::before {
  position: absolute;
  z-index: -1;
  top: -58px;
  right: -120px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(23, 62, 55, 0.15);
  border-radius: 50%;
  content: "";
}

.art-hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.4;
  box-shadow: 0 34px 85px rgba(43, 40, 30, 0.19);
  transform: rotate(1.5deg);
}

.art-hero-image::after {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(255, 250, 242, 0.76);
  content: "";
  pointer-events: none;
}

.art-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-hero-figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 8px 0;
}

.art-hero-figure figcaption span {
  font-family: var(--serif);
  font-size: 25px;
}

.art-hero-figure figcaption small {
  color: rgba(23, 34, 29, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.art-statement {
  background: var(--paper-warm);
}

.art-statement-grid {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 65px;
}

.art-statement-number {
  color: rgba(23, 62, 55, 0.09);
  font-family: var(--serif);
  font-size: clamp(170px, 22vw, 310px);
  letter-spacing: -0.09em;
  line-height: 0.68;
}

.art-statement h2 {
  max-width: 720px;
  font-size: clamp(54px, 6vw, 84px);
}

.art-statement-grid > div:last-child > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.art-catalog {
  background: #faf7f1;
}

.art-catalog-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  gap: 17px;
}

.art-catalog-card {
  display: block;
}

.art-catalog-card figure {
  margin: 0;
}

.art-catalog-card img {
  width: 100%;
  height: auto;
  box-shadow: 0 18px 48px rgba(37, 35, 27, 0.1);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.art-catalog-card:hover img {
  box-shadow: 0 25px 60px rgba(37, 35, 27, 0.19);
  transform: translateY(-7px);
}

.art-catalog-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 4px 0;
}

.art-catalog-card figcaption span {
  display: grid;
}

.art-catalog-card figcaption strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}

.art-catalog-card figcaption small {
  margin-top: 3px;
  color: rgba(23, 34, 29, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-catalog-card figcaption i {
  font-size: 20px;
  font-style: normal;
}

.art-catalog-tall {
  margin-top: 72px;
}

.art-catalog-square {
  margin-top: 148px;
}

.art-catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 85px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.art-catalog-cta > span {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 21px;
}

.art-critical {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest-deep);
}

.art-critical::after {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 250, 242, 0.09);
  border-radius: 50%;
  content: "";
}

.art-critical-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 105px;
}

.critical-artwork {
  width: min(100%, 430px);
  margin: 0;
  justify-self: center;
}

.critical-artwork img {
  width: 100%;
  border: 8px solid rgba(255, 250, 242, 0.92);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.3);
}

.critical-artwork figcaption {
  margin-top: 13px;
  color: rgba(255, 250, 242, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.critical-copy h2 {
  font-size: clamp(58px, 6vw, 86px);
}

.critical-copy blockquote {
  max-width: 670px;
  margin: 35px 0 20px;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 250, 242, 0.25);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 37px);
  font-style: italic;
  line-height: 1.25;
}

.critical-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255, 250, 242, 0.66);
}

.pandemic-art {
  background: var(--paper-warm);
}

.pandemic-art-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 95px;
}

.pandemic-art-copy h2 {
  font-size: clamp(54px, 5.8vw, 82px);
}

.pandemic-art-copy .artwork-data {
  margin: 20px 0 28px;
  color: var(--clay);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pandemic-art-copy > p:not(.eyebrow):not(.artwork-data) {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
}

.pandemic-art-copy blockquote {
  max-width: 590px;
  margin: 32px 0 9px;
  padding: 22px 0 22px 25px;
  border-left: 2px solid var(--clay);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.35;
}

.pandemic-art-copy cite {
  display: block;
  margin: 0 0 29px 27px;
  color: rgba(23, 34, 29, 0.52);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pandemic-art-figure {
  display: grid;
  min-height: 520px;
  margin: 0;
  padding: 68px;
  place-items: center;
  background: var(--cream);
  box-shadow: 0 23px 65px rgba(40, 37, 28, 0.1);
  transform: rotate(-1deg);
}

.pandemic-art-figure img {
  width: min(100%, 430px);
  box-shadow: 0 16px 40px rgba(31, 39, 34, 0.18);
}

.pandemic-art-figure figcaption {
  display: flex;
  width: min(100%, 430px);
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-top: 23px;
}

.pandemic-art-figure figcaption span {
  font-family: var(--serif);
  font-size: 20px;
}

.pandemic-art-figure figcaption small {
  color: rgba(23, 34, 29, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.art-presence {
  color: var(--cream);
  background: #593e32;
}

.art-presence-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 95px;
}

.art-presence h2 {
  max-width: 590px;
  font-size: clamp(54px, 5.8vw, 82px);
}

.art-presence h2 em {
  color: #f0ad7a;
}

.art-presence-links {
  border-top: 1px solid rgba(255, 250, 242, 0.2);
}

.art-presence-links a {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 24px;
  min-height: 102px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.2);
  transition: padding 200ms ease, color 200ms ease;
}

.art-presence-links a:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: #f0ad7a;
}

.art-presence-links span {
  color: rgba(255, 250, 242, 0.53);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.art-presence-links strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.art-presence-links i {
  font-size: 22px;
  font-style: normal;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes slowSpin {
  to { rotate: 1turn; }
}

@keyframes scrollCue {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 8px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid,
  .art-feature-grid,
  .music-feature-grid,
  .poetry-feature-grid,
  .teaching-grid,
  .about-grid,
  .contact-grid,
  .art-page-hero-grid,
  .art-critical-grid,
  .pandemic-art-grid,
  .art-presence-grid,
  .product-hero-grid,
  .poetry-page-hero-grid,
  .closing-poem-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-visual {
    width: min(100%, 510px);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .path-card {
    grid-column: auto;
    min-height: 560px;
  }

  .art-feature-grid,
  .music-feature-grid,
  .poetry-feature-grid,
  .teaching-grid,
  .about-grid,
  .contact-grid,
  .closing-poem-grid {
    gap: 65px;
  }

  .art-copy {
    max-width: 620px;
  }

  .art-preview {
    max-width: 650px;
    width: 100%;
    justify-self: center;
  }

  .art-page-hero {
    min-height: 0;
    padding: 150px 0 105px;
  }

  .art-page-hero-grid {
    gap: 70px;
  }

  .art-page-hero-copy {
    max-width: 720px;
  }

  .art-hero-figure {
    width: min(100%, 720px);
    justify-self: center;
  }

  .art-critical-grid,
  .pandemic-art-grid,
  .art-presence-grid {
    gap: 70px;
  }

  .critical-artwork {
    justify-self: start;
  }

  .pandemic-art-figure {
    width: min(100%, 680px);
    justify-self: center;
  }

  .music-stage,
  .poetry-preview,
  .poetry-page-visual {
    width: 100%;
    max-width: 620px;
    justify-self: center;
  }

  .music-copy,
  .poetry-copy {
    max-width: 660px;
  }

  .poetry-page-hero-grid {
    gap: 50px;
  }

  .poetry-page-visual {
    max-width: 520px;
  }

  .poetry-intro-grid {
    grid-template-columns: 0.55fr 1fr;
    gap: 50px;
  }

  .featured-poem-grid {
    grid-template-columns: 0.45fr 1fr;
    gap: 45px;
  }

  .featured-poem-body {
    padding-left: 40px;
  }

  .teaching-number {
    width: min(430px, 100%);
    justify-self: center;
  }

  .live-project {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .live-project-main > p {
    max-width: 650px;
  }

  .project-row {
    grid-template-columns: 42px 67px 1fr 42px;
  }

  .project-domain {
    display: none;
  }

  .about-copy {
    max-width: 620px;
    padding-top: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .product-hero-grid {
    gap: 35px;
  }

  .phone-stage {
    width: 100%;
    max-width: 540px;
    justify-self: center;
  }

  .legal-layout {
    grid-template-columns: 200px 1fr;
    gap: 45px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius: 19px;
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    padding: 120px 32px 45px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    background: var(--paper);
    font-family: var(--serif);
    font-size: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    padding: 120px 0 24px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero .eyebrow {
    font-size: 8px;
    line-height: 1.6;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-visual {
    width: min(100%, 400px);
    margin: 30px 0 20px;
  }

  .orbit-card {
    width: 104px;
    min-height: 98px;
    padding: 10px;
    border-radius: 15px;
  }

  .orbit-card strong {
    font-size: 15px;
  }

  .orbit-card small {
    font-size: 7px;
  }

  .orbit-symbol {
    font-size: 21px;
  }

  .hero-center {
    width: 116px;
    height: 116px;
    border-width: 7px;
  }

  .center-monogram {
    font-size: 35px;
  }

  .center-caption {
    font-size: 6px;
  }

  .visual-note {
    display: none;
  }

  .hero-footer > span:first-child {
    display: none;
  }

  .hero-footer {
    justify-content: flex-end;
  }

  .manifesto-strip {
    padding-block: 13px;
  }

  .manifesto-track span {
    font-size: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .art-copy h2,
  .music-copy h2,
  .poetry-copy h2,
  .teaching-copy h2,
  .contact-copy h2 {
    font-size: 49px;
  }

  .path-card {
    min-height: 570px;
    padding: 20px;
  }

  .path-graphic {
    height: 240px;
  }

  .art-feature-grid,
  .teaching-grid,
  .about-grid,
  .contact-grid {
    gap: 45px;
  }

  .art-preview {
    min-height: 440px;
  }

  .artwork-main {
    width: 84%;
    height: 305px;
  }

  .artwork-small {
    width: 41%;
    height: 250px;
    border-width: 6px;
  }

  .artwork-frame figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
  }

  .artwork-frame figcaption span {
    font-size: 17px;
  }

  .artwork-frame figcaption small {
    max-width: 75px;
    font-size: 7px;
  }

  .art-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .art-page-hero {
    padding: 120px 0 78px;
  }

  .art-page-hero-grid {
    gap: 50px;
  }

  .art-page-hero-copy h1 {
    font-size: 65px;
  }

  .art-page-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .art-hero-image::after {
    border-width: 6px;
  }

  .art-hero-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-top: 15px;
  }

  .art-statement-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .art-statement-number {
    font-size: 160px;
    line-height: 0.65;
  }

  .art-statement h2,
  .critical-copy h2,
  .pandemic-art-copy h2,
  .art-presence h2 {
    font-size: 51px;
  }

  .art-statement-grid > div:last-child > p:not(.eyebrow) {
    font-size: 14px;
  }

  .art-catalog-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .art-catalog-tall,
  .art-catalog-square {
    margin-top: 0;
  }

  .art-catalog-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 65px;
  }

  .art-critical-grid,
  .pandemic-art-grid,
  .art-presence-grid {
    gap: 50px;
  }

  .critical-copy blockquote {
    padding-left: 19px;
    font-size: 27px;
  }

  .pandemic-art-copy blockquote {
    padding-left: 19px;
    font-size: 22px;
  }

  .pandemic-art-figure {
    min-height: 390px;
    padding: 32px 25px;
  }

  .pandemic-art-figure img {
    width: min(100%, 300px);
  }

  .pandemic-art-figure figcaption {
    width: min(100%, 300px);
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .art-presence-links a {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    min-height: 112px;
  }

  .art-presence-links span {
    grid-column: 1 / -1;
    align-self: end;
  }

  .art-presence-links strong,
  .art-presence-links i {
    align-self: start;
  }

  .music-stage {
    min-height: 430px;
  }

  .sound-disc {
    top: 51px;
    width: 270px;
    height: 270px;
  }

  .sound-disc-label {
    width: 72px;
    height: 72px;
  }

  .sound-wave {
    bottom: 37px;
    gap: 7px;
  }

  .poetry-preview {
    min-height: 430px;
    padding: 38px;
    border-radius: 50% 50% 18px 50%;
  }

  .poetry-preview-index {
    top: 27px;
    left: 31px;
  }

  .poetry-preview-footer {
    right: 31px;
    left: 31px;
  }

  .poetry-page-hero {
    min-height: 0;
    padding: 125px 0 78px;
  }

  .poetry-page-hero-grid {
    min-height: 0;
    gap: 55px;
  }

  .poetry-page-hero-copy h1 {
    font-size: 68px;
  }

  .poetry-page-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .poetry-page-visual {
    max-width: 390px;
  }

  .hero-quote {
    font-size: 190px;
  }

  .title-fragment {
    padding: 6px 9px;
    font-size: 12px;
  }

  .poetry-intro-grid,
  .featured-poem-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .poetry-intro-number {
    font-size: 180px;
  }

  .poetry-intro-number::after {
    right: auto;
    left: 145px;
  }

  .poetry-intro h2 {
    font-size: 49px;
  }

  .featured-poem-meta {
    position: static;
  }

  .featured-poem-meta .poem-count {
    margin-top: 12px;
  }

  .featured-poem-body {
    padding: 36px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .featured-poem-body h2 {
    font-size: 70px;
  }

  .poem-text-large {
    font-size: 23px;
  }

  .poem-grid {
    columns: 1;
  }

  .poem-card {
    padding: 31px 27px;
  }

  .poem-card-header {
    margin-bottom: 42px;
  }

  .poem-card h2 {
    font-size: 41px;
  }

  .poem-card-short {
    min-height: 0;
  }

  .poem-card-short .poem-text,
  .poem-text {
    font-size: 19px;
  }

  .closing-poem-heading h2 {
    font-size: 49px;
  }

  .closing-poem-text {
    padding: 29px 24px;
    font-size: 20px;
  }

  .poetry-contact h2 {
    font-size: 50px;
  }

  .canvas-main {
    width: 72%;
    height: 370px;
  }

  .canvas-small {
    width: 49%;
    height: 240px;
  }

  .art-hint {
    display: none;
  }

  .teaching-offers {
    grid-template-columns: 1fr;
  }

  .teaching-offers span,
  .teaching-offers span + span {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .teaching-offers span:last-child {
    border-bottom: 0;
  }

  .live-project {
    gap: 27px;
    padding: 24px;
    border-radius: 22px;
  }

  .live-project-top {
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .live-project-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .live-project-status {
    max-width: 125px;
    justify-content: center;
    text-align: center;
  }

  .live-project h3 {
    font-size: 52px;
  }

  .live-project-main > p {
    font-size: 12px;
  }

  .live-project-panel {
    padding: 21px;
    border-radius: 18px;
  }

  .live-project-features {
    grid-template-columns: 1fr;
  }

  .live-project-features li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .live-project-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .live-project-actions .button,
  .google-play-link {
    width: 100%;
    min-height: 52px;
    flex: none;
  }

  .project-row {
    min-height: 110px;
    grid-template-columns: 54px 1fr 38px;
    gap: 14px;
  }

  .project-number {
    display: none;
  }

  .project-mark {
    width: 54px;
    height: 54px;
  }

  .project-name strong {
    font-size: 25px;
  }

  .project-name small {
    font-size: 9px;
  }

  .about-statement blockquote {
    font-size: 44px;
  }

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

  .contact-form {
    padding: 24px 20px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .product-hero {
    min-height: 0;
    padding-top: 125px;
  }

  .product-hero h1 {
    font-size: 58px;
  }

  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-stage {
    min-height: 510px;
  }

  .feature-heading,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-heading {
    gap: 0;
  }

  .feature-card {
    min-height: 210px;
  }

  .feature-card h3 {
    margin-top: 39px;
  }

  .product-utility {
    flex-wrap: wrap;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .legal-aside strong {
    grid-column: 1 / -1;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
