:root {
  --ink: #0b0b0a;
  --ink-soft: #151411;
  --graphite: #22201c;
  --paper: #f3ead9;
  --paper-deep: #dfd2bc;
  --orange: #ef6327;
  --orange-dark: #aa3e14;
  --orange-pale: #f7a273;
  --muted: #a9a399;
  --line: rgba(243, 234, 217, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --max-width: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  background: var(--orange);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header.scrolled {
  background: rgba(11, 11, 10, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
}

.site-nav a {
  position: relative;
  color: #d4cec4;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: var(--orange);
  transition: right 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.site-nav .nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(239, 99, 39, 0.5);
  border-radius: 999px;
  color: var(--paper);
}

.site-nav .nav-cta:hover {
  background: var(--orange);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0.7rem;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: 10rem max(1.5rem, calc((100vw - var(--max-width)) / 2)) 6rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(239, 99, 39, 0.15), transparent 24rem),
    linear-gradient(105deg, #0b0b0a 0%, #10100e 63%, #17110d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 22%, var(--line) 78%, transparent);
}

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

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(239, 99, 39, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 560px;
  height: 560px;
  top: 14%;
  right: -120px;
}

.hero-orbit-two {
  width: 360px;
  height: 360px;
  top: 25%;
  right: -20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.5rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow span {
  width: 2.5rem;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.story-copy h2,
.books-heading h2,
.professional-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 930px;
  font-size: clamp(5rem, 8.2vw, 9.2rem);
  line-height: 0.79;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--orange);
  font-weight: 500;
}

.hero-intro {
  max-width: 680px;
  margin: 2.5rem 0 0;
  color: #c2bbb0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hero-actions .button {
  min-height: 52px;
  gap: 0;
  padding-inline: 1.45rem;
  font-size: 0.76rem;
  text-transform: none;
}

.button-outline {
  border-color: rgba(243, 234, 217, 0.22);
  background: transparent;
  color: var(--paper);
}

.button-outline:hover {
  border-color: var(--paper);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 58px;
  padding: 0.85rem 1.2rem 0.85rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
}

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

.text-link {
  color: #d4cec4;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
}

.text-link span {
  margin-left: 0.5rem;
  color: var(--orange);
}

.hero-manifesto {
  position: relative;
  align-self: center;
  width: min(100%, 430px);
  min-height: 430px;
  margin-inline: auto;
  padding: 3.2rem 2.7rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-4deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.hero-manifesto::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 108%;
  height: 94%;
  left: 8%;
  top: 12%;
  background: #b83f12;
  transform: rotate(10deg);
}

.hero-manifesto::after {
  content: "";
  position: absolute;
  left: 2.7rem;
  right: 2.7rem;
  top: 5.4rem;
  height: 1px;
  background: rgba(11, 11, 10, 0.25);
}

.manifesto-back {
  position: absolute;
  z-index: -3;
  inset: -3rem;
}

.manifesto-kicker {
  margin: 0 0 3.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-manifesto blockquote {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.55vw, 2.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.08;
}

.manifesto-signature {
  margin: 2.7rem 0 0;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
}

.principle-section {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.principle-section h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.3vw, 7rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.principle-section h2 em {
  display: block;
  color: var(--orange-dark);
  font-weight: 500;
}

.principle-section > p {
  max-width: 440px;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--orange);
  font-size: 0.9rem;
  line-height: 1.75;
}

.author-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 11vw, 11rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: #0a0a09;
}

.author-monogram {
  width: min(100%, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(11, 11, 10, 0.32), inset 0 0 0 42px var(--orange);
}

.author-monogram::before {
  content: "";
  grid-area: 1 / 1;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 11, 10, 0.3);
  border-radius: 50%;
}

.author-monogram span {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-size: clamp(6rem, 11vw, 11rem);
  font-weight: 600;
  line-height: 1;
}

.author-intro-copy h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.4vw, 7rem);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.05em;
}

.author-intro-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin: 2rem 0 0;
  color: #d5cfc5;
  line-height: 1.9;
}

.author-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.7rem;
  padding: 0;
  list-style: none;
}

.author-values li {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(243, 234, 217, 0.2);
  border-radius: 999px;
  font-size: 0.69rem;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-line span {
  width: 2rem;
  height: 1px;
  background: var(--orange);
}

.sound-lines {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2.5rem;
}

.sound-lines i {
  width: 2px;
  height: 18%;
  background: var(--orange);
  opacity: 0.65;
}

.sound-lines i:nth-child(2),
.sound-lines i:nth-child(8) { height: 35%; }
.sound-lines i:nth-child(3),
.sound-lines i:nth-child(7) { height: 70%; }
.sound-lines i:nth-child(4),
.sound-lines i:nth-child(6) { height: 45%; }
.sound-lines i:nth-child(5) { height: 100%; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: max(1.5rem, calc((100vw - var(--max-width)) / 2));
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #77736d;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 56px;
  height: 1px;
  background: #4c4944;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
}

.catalog-section {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading h2,
.story-copy h2,
.books-heading h2,
.professional-card h2,
.contact-copy h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: #5f5a52;
  line-height: 1.85;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin: -2.5rem 0 3.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(11, 11, 10, 0.16);
  border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.catalog-toolbar-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.catalog-toolbar-copy span {
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-toolbar-copy strong {
  color: #6f685d;
  font-size: 0.72rem;
  font-weight: 500;
}

.genre-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.genre-filter {
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(11, 11, 10, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #5f5a52;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.genre-filter:hover,
.genre-filter:focus-visible,
.genre-filter.active {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: white;
}

.song-list {
  border-top: 1px solid rgba(11, 11, 10, 0.18);
}

.song-card {
  display: grid;
  grid-template-columns: 56px 170px minmax(0, 1fr) 210px;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(11, 11, 10, 0.18);
  transition: padding 0.3s ease, background 0.3s ease;
}

.song-card:hover {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background: rgba(239, 99, 39, 0.055);
}

.song-card[hidden] {
  display: none;
}

.song-number {
  align-self: start;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.song-art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.public-song-art {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 3.5rem;
}

.public-song-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-public-song .song-action audio {
  width: 100%;
  height: 38px;
  accent-color: var(--orange-dark);
}

.art-paper {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 6rem;
}

.art-paper::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(239, 99, 39, 0.35);
}

.paper-lines {
  position: absolute;
  inset: 45% 0 0;
  background: repeating-linear-gradient(0deg, transparent 0 11px, rgba(243, 234, 217, 0.1) 12px 13px);
}

.art-gray {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, #54514b, #242321 48%, #111 49%),
    var(--ink);
}

.avatar-silhouette {
  width: 56%;
  height: 63%;
  position: relative;
  border-radius: 50% 50% 42% 42%;
  background: #8a8780;
  opacity: 0.65;
  clip-path: polygon(30% 0, 70% 0, 79% 35%, 100% 54%, 100% 100%, 0 100%, 0 54%, 21% 35%);
}

.art-cheiro {
  background: linear-gradient(145deg, #cf4d1c, #702109 75%);
}

.bed-line {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 23%;
  height: 36%;
  border: 2px solid rgba(243, 234, 217, 0.8);
  border-top-left-radius: 26px;
}

.bed-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(243, 234, 217, 0.45);
}

.empty-side {
  position: absolute;
  top: 20%;
  right: 16%;
  width: 34%;
  height: 34%;
  border: 1px dashed rgba(243, 234, 217, 0.45);
  border-radius: 50%;
}

.song-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.song-meta span,
.track-state {
  color: #7b7469;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.song-meta span + span::before {
  content: "·";
  margin-right: 0.6rem;
  color: var(--orange);
}

.song-copy h3,
.book-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1;
}

.song-copy > p:not(.lyric-fragment) {
  max-width: 720px;
  margin: 0.8rem 0;
  color: #5f5a52;
}

.lyric-fragment {
  margin: 1rem 0 0;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
}

.song-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.play-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 11, 10, 0.35);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--orange-dark);
}

.play-button:hover .play-icon {
  background: var(--orange);
  border-color: var(--orange);
}

.catalog-note {
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 3rem 0 0 auto;
  padding: 1.4rem 0 0;
  color: #6b655b;
  border-top: 1px solid rgba(11, 11, 10, 0.16);
  font-size: 0.8rem;
}

.catalog-note p {
  margin: 0;
}

.catalog-note-icon {
  color: var(--orange-dark);
  font-size: 1.6rem;
}

.catalog-empty {
  margin-top: 1.5rem;
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(11, 11, 10, 0.25);
  text-align: center;
  color: #6b655b;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty span {
  display: block;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 3rem;
}

.catalog-empty p {
  margin: 0.4rem 0 0;
}

.playlists-section {
  padding: clamp(6rem, 10vw, 10rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: #171512;
}

.playlists-section .section-heading > p {
  color: var(--muted);
}

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

.playlist-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(239, 99, 39, 0.04), transparent 60%),
    #1d1b18;
  overflow: hidden;
}

.playlist-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -130px;
  top: 90px;
  border: 1px solid rgba(239, 99, 39, 0.16);
  border-radius: 50%;
}

.playlist-featured {
  background:
    linear-gradient(150deg, rgba(239, 99, 39, 0.2), transparent 62%),
    #251811;
  border-color: rgba(239, 99, 39, 0.35);
}

.playlist-private {
  background:
    linear-gradient(145deg, rgba(243, 234, 217, 0.055), transparent),
    #10100f;
}

.playlist-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #978f84;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.playlist-topline strong {
  color: var(--orange-pale);
  font-weight: 700;
}

.playlist-symbol {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 2.7rem 0 1.6rem;
}

.playlist-symbol i {
  width: 2px;
  height: 42%;
  display: block;
  background: var(--orange);
}

.playlist-symbol i:nth-child(2) {
  height: 100%;
}

.playlist-symbol i:nth-child(3) {
  height: 68%;
}

.playlist-number,
.playlist-lock {
  height: 90px;
  margin: 2.7rem 0 1.6rem;
  color: rgba(239, 99, 39, 0.75);
  font-family: var(--font-display);
  font-size: 5.4rem;
  font-style: italic;
  line-height: 1;
}

.playlist-lock {
  display: flex;
  align-items: center;
}

.playlist-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1;
}

.playlist-card > p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.playlist-card ol {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.playlist-card li {
  display: flex;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: #d5cec3;
  font-size: 0.76rem;
}

.playlist-card li span {
  color: var(--orange-pale);
  font-family: var(--font-display);
  font-style: italic;
}

.playlist-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(239, 99, 39, 0.3);
  color: var(--orange-pale);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 2rem;
  color: #aca398;
  font-size: 0.72rem;
}

.private-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(239, 99, 39, 0.1);
}

.vip-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(6rem, 10vw, 10rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 78% 45%, rgba(239, 99, 39, 0.18), transparent 30rem),
    var(--paper);
  color: var(--ink);
}

.vip-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.8vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.vip-intro > p:last-child {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #5f5a52;
  line-height: 1.85;
}

.vip-access {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(11, 11, 10, 0.18);
  background: rgba(248, 241, 228, 0.78);
  box-shadow: 25px 35px 80px rgba(78, 48, 28, 0.13);
}

.vip-access-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.vip-key {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange-dark);
  border-radius: 50%;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.vip-access-heading div {
  display: flex;
  flex-direction: column;
}

.vip-access-heading strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.vip-access-heading small {
  margin-top: 0.35rem;
  color: #736c62;
  font-size: 0.7rem;
}

.vip-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: #5f5a52;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.vip-field input {
  min-width: 0;
  height: 58px;
  padding: 0 1rem;
  border: 1px solid rgba(11, 11, 10, 0.22);
  border-right: 0;
  background: white;
  color: var(--ink);
  outline: 0;
  text-transform: uppercase;
}

.vip-field input:focus {
  border-color: var(--orange-dark);
  box-shadow: inset 3px 0 var(--orange-dark);
}

.vip-field button {
  min-width: 130px;
  border: 0;
  background: var(--orange-dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.vip-field button:hover,
.vip-field button:focus-visible {
  background: var(--ink);
}

.vip-form-status {
  min-height: 1.6rem;
  margin: 0.6rem 0 0;
  color: var(--orange-dark);
  font-size: 0.72rem;
}

.vip-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(11, 11, 10, 0.14);
}

.vip-rules span {
  color: #6d665c;
  font-size: 0.64rem;
  line-height: 1.5;
}

.story-section {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  padding: clamp(7rem, 12vw, 12rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  background: var(--orange-dark);
  color: var(--paper);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.18) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255,255,255,.12) 50%, transparent 50.1%);
  background-size: 90px 90px;
}

.story-number {
  position: absolute;
  right: -0.05em;
  bottom: -0.28em;
  color: rgba(11, 11, 10, 0.11);
  font-family: var(--font-display);
  font-size: clamp(14rem, 32vw, 38rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.section-kicker.light {
  color: #ffb18a;
}

.story-copy,
.story-aside {
  position: relative;
}

.story-copy h2 {
  max-width: 850px;
}

.story-text {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.5rem;
  margin-top: 3rem;
}

.story-text p {
  margin: 0;
  color: #f1d9ca;
  line-height: 1.9;
}

.story-text p:first-child {
  grid-column: span 2;
  color: white;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.45;
}

.story-text .confidence-quote {
  grid-column: span 2;
  margin-top: 1rem;
  padding: 1.5rem 0 0 2rem;
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 2px solid var(--orange-pale);
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
}

.story-aside {
  padding: 2.5rem;
  border-left: 1px solid rgba(255,255,255,.3);
  background: rgba(11, 11, 10, 0.1);
}

.story-aside p,
.story-aside span {
  display: block;
  margin: 0;
  color: #efcaba;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-aside strong {
  display: block;
  margin: 0.3rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 7rem);
  line-height: 1;
}

.story-aside hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.25);
  margin: 2.2rem 0;
}

.story-aside blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.2;
}

.method-section {
  padding: clamp(6rem, 10vw, 10rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--ink-soft);
}

.section-heading.compact {
  margin-bottom: 4rem;
}

.method-section .section-heading > p {
  color: var(--muted);
}

.method-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid li {
  min-height: 340px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.method-grid li:last-child {
  border-right: 0;
}

.method-grid span {
  color: var(--orange);
  font-family: var(--font-display);
  font-style: italic;
}

.method-grid h3 {
  margin: 7rem 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.books-section {
  padding: clamp(7rem, 12vw, 12rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--ink-soft);
  overflow: hidden;
}

.books-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  max-width: none;
  margin-bottom: 5rem;
}

.books-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.books-heading h2 {
  max-width: 920px;
  font-size: clamp(4.4rem, 7vw, 8rem);
}

.books-heading > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #d0c8bd;
  line-height: 1.8;
}

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

.editorial-book {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  color: var(--ink);
}

.editorial-book-folhas {
  background: var(--orange);
}

.editorial-book-andarilho {
  background: var(--paper);
}

.editorial-book > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-right: 1px solid rgba(11, 11, 10, 0.25);
}

.editorial-book-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(2.2rem, 3.6vw, 4.2rem);
}

.editorial-book-copy > span {
  color: var(--orange-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-book-folhas .editorial-book-copy > span {
  color: #44180a;
}

.editorial-book-copy h3 {
  margin: auto 0 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.68;
  letter-spacing: -0.06em;
}

.editorial-book-copy p {
  max-width: 360px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
}

.editorial-book-copy a {
  width: fit-content;
  margin-top: 2.7rem;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 600;
}

.editorial-book-copy a span {
  margin-left: 0.35rem;
}

.book-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 11rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 10rem;
}

.book-showcase.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.book-showcase.reverse .book {
  order: 2;
}

.book {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 0.68;
  margin: 0 auto;
  transform: perspective(1200px) rotateY(-8deg);
  box-shadow: 28px 36px 70px rgba(0,0,0,.4);
}

.book-folhas {
  aspect-ratio: 4 / 5;
}

.book-andarilho {
  aspect-ratio: 2 / 3;
}

.book::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2%;
  bottom: 2%;
  right: -15px;
  width: 22px;
  background: repeating-linear-gradient(90deg, #eee2cc 0 2px, #cdbfa9 3px 4px);
  transform: skewY(6deg);
}

.book-spine {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12%;
  background: rgba(0,0,0,.22);
  box-shadow: inset -1px 0 rgba(255,255,255,.12);
}

.book-cover-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.book-cover {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem 2.1rem 2rem 20%;
  overflow: hidden;
}

.book-folhas .book-cover {
  background:
    linear-gradient(135deg, transparent 55%, rgba(0,0,0,.24)),
    var(--orange);
  color: #1a100b;
}

.book-folhas .book-cover::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 300px;
  right: -60px;
  bottom: -40px;
  border: 1px solid rgba(20,10,5,.35);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-25deg);
}

.book-andarilho .book-cover {
  background:
    radial-gradient(circle at 72% 23%, rgba(239,99,39,.35), transparent 20%),
    linear-gradient(145deg, #12110f, #29211b);
  border: 1px solid rgba(239,99,39,.35);
}

.book-andarilho .book-cover::before {
  content: "";
  position: absolute;
  left: 35%;
  bottom: 0;
  width: 1px;
  height: 58%;
  background: linear-gradient(transparent, var(--orange));
  box-shadow: 28px 25px rgba(239,99,39,.28), 52px 55px rgba(239,99,39,.18);
  transform: rotate(18deg);
}

.book-author {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-cover h3 {
  position: relative;
  z-index: 1;
  margin: auto 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.book-cover p {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaf-mark,
.wanderer-mark {
  position: absolute;
  right: 1.8rem;
  bottom: 1.3rem;
  font-size: 3rem;
  opacity: 0.55;
}

.book-copy > span {
  color: var(--orange-pale);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.book-copy h3 {
  margin-top: 0.7rem;
  color: var(--paper);
}

.book-copy p {
  max-width: 590px;
  margin: 1.8rem 0;
  color: #aca398;
  line-height: 1.9;
}

.book-copy a {
  display: inline-flex;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(239,99,39,.5);
  color: var(--orange-pale);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.professional-section {
  padding: clamp(5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.professional-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(3rem, 6vw, 6rem);
  border: 1px solid rgba(11,11,10,.2);
  background:
    linear-gradient(135deg, transparent 65%, rgba(239,99,39,.08)),
    #eee3d0;
}

.professional-card h2 {
  font-size: clamp(3.5rem, 5vw, 6rem);
}

.professional-card > div:last-child > p {
  margin: 0 0 2rem;
  color: #5f5a52;
  line-height: 1.85;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: end;
  padding: clamp(7rem, 12vw, 12rem) max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--orange);
  color: var(--ink);
}

.contact-copy .section-kicker {
  color: #692407;
}

.contact-details > p {
  margin: 0 0 0.8rem;
  color: #692407;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details > a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
  border-bottom: 1px solid rgba(11,11,10,.5);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.site-footer > p,
.site-footer > a:last-child {
  color: #77736d;
  font-size: 0.7rem;
}

.site-footer > a:last-child {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 2rem;
  max-width: calc(100% - 2rem);
  padding: 0.9rem 1.2rem;
  background: var(--paper);
  color: var(--ink);
  border-left: 4px solid var(--orange);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-manifesto.reveal {
  transform: translateY(28px) rotate(-4deg);
}

.hero-manifesto.reveal.in-view {
  transform: translateY(0) rotate(-4deg);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 11rem;
  }

  .hero::after {
    display: none;
  }

  .hero-manifesto {
    max-width: 680px;
  }

  .books-editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-book {
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  }

  .song-card {
    grid-template-columns: 42px 130px minmax(0, 1fr);
  }

  .song-action {
    grid-column: 3;
    flex-direction: row;
    align-items: center;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playlist-private {
    grid-column: span 2;
    min-height: 390px;
  }

  .vip-section {
    grid-template-columns: 1fr;
  }

  .method-grid li:nth-child(2) {
    border-right: 0;
  }

  .method-grid li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .professional-card,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 78px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.1rem;
    padding: 6rem 2rem;
    background: rgba(11,11,10,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .principle-section,
  .author-intro,
  .books-heading {
    grid-template-columns: 1fr;
  }

  .principle-section {
    min-height: auto;
  }

  .principle-section > p {
    max-width: 620px;
  }

  .author-monogram {
    width: min(76vw, 430px);
  }

  .books-heading .section-kicker {
    margin-bottom: -0.5rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

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

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .story-section,
  .book-showcase,
  .book-showcase.reverse {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 2rem;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
  }

  .genre-filters {
    justify-content: flex-start;
  }

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

  .playlist-private {
    grid-column: auto;
    min-height: 480px;
  }

  .song-card,
  .song-card:hover {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 1.8rem 0;
  }

  .song-art {
    grid-column: 2;
    width: min(100%, 230px);
  }

  .song-copy,
  .song-action {
    grid-column: 2;
  }

  .story-section {
    min-height: auto;
  }

  .story-text {
    grid-template-columns: 1fr;
  }

  .story-text p:first-child {
    grid-column: auto;
  }

  .story-text .confidence-quote {
    grid-column: auto;
  }

  .story-aside {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.3);
  }

  .book-showcase,
  .book-showcase.reverse {
    gap: 3.5rem;
    margin-bottom: 8rem;
  }

  .book-showcase.reverse .book {
    order: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .brand-copy small {
    display: none;
  }

  .hero-intro {
    line-height: 1.7;
  }

  .genre-filters {
    gap: 0.4rem;
  }

  .genre-filter {
    min-height: 34px;
    padding-inline: 0.7rem;
    font-size: 0.65rem;
  }

  .vip-access {
    padding: 1.6rem;
  }

  .vip-field {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .vip-field input {
    border-right: 1px solid rgba(11, 11, 10, 0.22);
  }

  .vip-field button {
    min-height: 52px;
  }

  .vip-rules {
    grid-template-columns: 1fr;
  }

  .hero-manifesto {
    padding: 2.2rem 1.5rem;
    min-height: 370px;
  }

  .hero-manifesto blockquote {
    font-size: 1.8rem;
  }

  .hero-manifesto::after {
    left: 1.5rem;
    right: 1.5rem;
    top: 4.4rem;
  }

  .manifesto-kicker {
    margin-bottom: 2.7rem;
  }

  .principle-section h2,
  .author-intro-copy h2,
  .books-heading h2 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .editorial-book {
    grid-template-columns: 1fr;
  }

  .editorial-book > img {
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 10, 0.25);
  }

  .editorial-book-andarilho > img {
    aspect-ratio: 2 / 3;
  }

  .editorial-book-copy {
    min-height: 430px;
  }

  .section-heading h2,
  .story-copy h2,
  .books-heading h2,
  .professional-card h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

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

  .method-grid li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid li:last-child {
    border-bottom: 0;
  }

  .method-grid h3 {
    margin-top: 3rem;
  }

  .professional-card {
    padding: 2rem 1.3rem;
  }

  .professional-card .button {
    width: 100%;
    gap: 1rem;
    font-size: 0.7rem;
  }

  .contact-details > a {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
