:root {
  color-scheme: dark;
  --bg: #151214;
  --bg-soft: #1b1619;
  --surface: rgb(255 255 255 / 6.2%);
  --surface-strong: rgb(255 255 255 / 10%);
  --text: #f7f0ea;
  --muted: #d8cbcf;
  --subtle: #aa9ca1;
  --gold: #d3b078;
  --gold-light: #f0c5b5;
  --rose: #d78f78;
  --plum: #8f5f6e;
  --line: rgb(255 255 255 / 15%);
  --shadow: 0 28px 80px rgb(0 0 0 / 35%);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgb(215 143 120 / 18%), transparent 34rem),
    radial-gradient(circle at 82% 28%, rgb(211 176 120 / 11%), transparent 30rem),
    linear-gradient(145deg, #121012 0%, var(--bg-soft) 52%, var(--bg) 100%);
  font: 16px/1.5 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgb(255 255 255 / 1.8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 1.8%) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #24191c;
  border-radius: 12px;
  background: var(--gold-light);
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(242 199 131 / 55%);
  border-radius: 16px;
  background: linear-gradient(145deg, rgb(242 199 131 / 20%), rgb(255 255 255 / 4%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%);
}

.brand-mark img {
  width: 30px;
  height: 30px;
}

.brand-name,
.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  margin-top: 1px;
  color: var(--subtle);
  font-size: 0.67rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 26px);
  margin-left: auto;
}

.desktop-nav a,
.quiet-link {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.quiet-link:hover {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  color: #24191c;
  border: 1px solid transparent;
  border-radius: 15px;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgb(242 199 131 / 18%);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgb(242 199 131 / 23%);
}

.button-small {
  min-height: 43px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.button-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgb(255 255 255 / 4.5%);
  box-shadow: none;
}

.button-outline:hover {
  border-color: rgb(240 197 181 / 45%);
  box-shadow: none;
}

.button:focus-visible,
.brand:focus-visible,
.desktop-nav a:focus-visible,
.quiet-link:focus-visible,
.text-action:focus-visible,
.interview-index a:focus-visible,
.interview-proof-image:focus-visible,
.interview-proof-link:focus-visible,
.portfolio-play:focus-visible,
.footer-links a:focus-visible,
.footer-bottom a:focus-visible,
.legal-document a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(255 226 172 / 55%);
  outline-offset: 4px;
}

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

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 19px;
  height: 1px;
  background: var(--text);
}

.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: min(290px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(27 22 25 / 97%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu nav > a:not(.button) {
  padding: 11px 9px;
  color: var(--muted);
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 7px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
  min-height: calc(100vh - 94px);
  min-height: calc(100svh - 94px);
  padding: 42px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7.2vw, 6.9rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 .accent {
  display: block;
  margin-top: 0.12em;
  color: var(--gold-light);
  background: linear-gradient(110deg, var(--gold-light), var(--rose) 52%, var(--gold) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 650;
}

.hero-intro {
  display: grid;
  gap: 13px;
  max-width: 670px;
  margin-top: 25px;
}

.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.62;
}

.hero-intro .hero-lead {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  line-height: 1.55;
}

.hero-intro strong {
  color: var(--text);
  font-weight: 650;
}

.hero-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 560px;
  margin-top: 28px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 4.5%);
  backdrop-filter: blur(8px);
}

.hero-offer div > span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer div > strong {
  font-size: 0.95rem;
}

.hero-offer b {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

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

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--gold-light);
  border: 1px solid rgb(240 197 181 / 19%);
  border-radius: 12px;
  background: rgb(255 255 255 / 3.5%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.text-action:hover {
  color: var(--text);
  border-color: rgb(240 197 181 / 38%);
  background: rgb(240 197 181 / 7%);
  transform: translateY(-1px);
}

.action-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.89rem;
}

.art-wrap {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.art-glow {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(240 197 181 / 18%), rgb(211 176 120 / 9%) 44%, transparent 72%);
  filter: blur(18px);
  animation: breathe 6s ease-in-out infinite;
}

.album {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 11%), rgb(255 255 255 / 2.5%)),
    radial-gradient(circle at 68% 22%, rgb(215 143 120 / 22%), transparent 34%),
    radial-gradient(circle at 30% 76%, rgb(211 176 120 / 15%), transparent 38%),
    rgb(27 22 25 / 76%);
  box-shadow: var(--shadow), inset 0 1px 0 rgb(255 255 255 / 16%);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.album::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.74;
  background:
    linear-gradient(120deg, transparent 0 35%, rgb(255 255 255 / 6%) 45%, transparent 56%),
    repeating-radial-gradient(circle at 50% 51%, rgb(255 255 255 / 3.5%) 0 1px, transparent 1px 10px);
  pointer-events: none;
}

.album-caption {
  position: absolute;
  top: 7%;
  left: 7%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(247 240 234 / 68%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-caption::before {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
  content: "";
}

.emotion-system {
  position: absolute;
  inset: 12% 11% 20%;
  display: grid;
  place-items: center;
}

.emotion-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 22%));
}

.emotion-ring text {
  fill: rgb(247 240 234 / 78%);
  font: 750 13px Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 2.35px;
  text-transform: uppercase;
}

.emotion-ring .ring-line {
  fill: none;
  stroke: rgb(240 197 181 / 26%);
  stroke-width: 1;
  stroke-dasharray: 2 8;
}

.record-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: 62%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgb(0 0 0 / 42%), inset 0 0 45px rgb(0 0 0 / 34%);
}

.record-disc {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 15%, rgb(255 255 255 / 3.5%) 15.3% 15.8%, transparent 16.1% 100%),
    repeating-radial-gradient(circle, rgb(255 255 255 / 5.5%) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 38% 30%, #7e5963, #34272d 42%, var(--bg) 73%);
  animation: rotate 22s linear infinite;
}

.record-disc::before {
  position: absolute;
  inset: 1.5%;
  border-radius: 50%;
  background: conic-gradient(
    from 18deg,
    transparent 0 13%,
    rgb(255 255 255 / 12%) 17%,
    transparent 22% 58%,
    rgb(240 197 181 / 8%) 63%,
    transparent 70%
  );
  content: "";
  mask: radial-gradient(circle, transparent 0 23%, #000 24% 94%, transparent 95%);
}

.record-disc::after {
  position: absolute;
  inset: 5%;
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: 50%;
  content: "";
}

.record-label {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46%;
  aspect-ratio: 1;
  place-items: center;
  padding: 8px;
  color: #2b1d21;
  border-radius: 50%;
  background: radial-gradient(circle, #f1d1c5, var(--rose) 68%, var(--plum) 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 68%), 0 4px 18px rgb(0 0 0 / 24%);
  text-align: center;
}

.record-label strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.62rem, 1vw, 0.74rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.record-label span {
  display: block;
  max-width: 90px;
  margin-top: 5px;
  font-size: clamp(0.48rem, 0.78vw, 0.58rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meaning-card {
  position: absolute;
  right: 2.5%;
  bottom: 18.5%;
  z-index: 5;
  width: min(205px, 43%);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(27 22 25 / 82%);
  box-shadow: 0 18px 44px rgb(0 0 0 / 28%);
  backdrop-filter: blur(14px);
  transform: rotate(2deg);
}

.meaning-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meaning-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  line-height: 1.35;
}

.meaning-card p span {
  color: var(--gold-light);
}

.brand-player {
  position: absolute;
  right: 7%;
  bottom: 4.5%;
  left: 7%;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px auto minmax(58px, 1fr);
  align-items: center;
  gap: 12px;
  height: 68px;
  padding: 8px 14px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 22px;
  background: rgb(21 18 20 / 69%);
  backdrop-filter: blur(12px);
}

.player-toggle {
  position: relative;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(240 197 181 / 44%);
  border-radius: 50%;
  color: var(--text);
  background: linear-gradient(145deg, rgb(215 143 120 / 32%), rgb(211 176 120 / 16%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%), 0 8px 22px rgb(0 0 0 / 22%);
  cursor: pointer;
  place-items: center;
}

.player-toggle:disabled {
  cursor: default;
}

.player-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentcolor;
}

.brand-player[data-state="playing"] .player-icon {
  width: 10px;
  height: 10px;
  margin-left: 0;
  border: 0;
  border-radius: 1px;
  background: currentcolor;
}

.player-copy {
  min-width: 0;
}

.player-copy small {
  display: block;
  margin-bottom: 3px;
  color: rgb(247 240 234 / 43%);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.player-copy strong {
  display: block;
  overflow: hidden;
  color: rgb(247 240 234 / 82%);
  font-size: 0.72rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-wave {
  display: flex;
  min-width: 0;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.55vw, 5px);
}

.player-wave span {
  width: clamp(2px, 0.38vw, 4px);
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(to top, var(--rose), var(--gold-light));
  animation: wave 1.55s ease-in-out infinite;
  transform-origin: center;
}

.player-wave span:nth-child(2n) { animation-delay: -0.25s; }
.player-wave span:nth-child(3n) { animation-delay: -0.6s; }
.player-wave span:nth-child(5n) { animation-delay: -0.9s; }

.brand-player[data-state="loading"] .player-icon {
  width: 13px;
  height: 13px;
  margin-left: 0;
  border: 2px solid rgb(247 240 234 / 32%);
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: player-loading 0.8s linear infinite;
}

.brand-player[data-state="error"] .player-toggle {
  opacity: 0.55;
}

@keyframes player-loading {
  to { transform: rotate(360deg); }
}

.section {
  padding: clamp(74px, 10vw, 126px) 0;
  scroll-margin-top: 20px;
}

.section-soft {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / 7%);
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background:
    radial-gradient(circle at 84% 10%, rgb(211 176 120 / 8%), transparent 28rem),
    rgb(255 255 255 / 2.2%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading > p:not(.eyebrow),
.final-cta > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.compact-heading {
  max-width: 820px;
}

.meaning-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}

.meaning-flow article,
.control-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgb(255 255 255 / 7.5%), rgb(255 255 255 / 2.8%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 9%);
}

.flow-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgb(242 199 131 / 42%);
  border-radius: 13px;
  background: rgb(242 199 131 / 9%);
  font-size: 0.82rem;
  font-weight: 800;
}

.meaning-flow h3,
.control-grid h3,
.work-list strong,
.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.meaning-flow p,
.control-grid p,
.work-list p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.portfolio-section {
  border-top: 1px solid rgb(255 255 255 / 7%);
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background:
    radial-gradient(circle at 12% 20%, rgb(215 143 120 / 11%), transparent 30rem),
    radial-gradient(circle at 86% 74%, rgb(211 176 120 / 8%), transparent 28rem),
    rgb(255 255 255 / 1.8%);
}

.portfolio-heading {
  margin-bottom: 42px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2.5%));
  box-shadow: var(--shadow), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.portfolio-card + .portfolio-card {
  margin-top: clamp(42px, 7vw, 76px);
}

.portfolio-cover {
  position: relative;
  height: clamp(300px, 35vw, 420px);
  overflow: hidden;
  background: #211a1d;
}

.portfolio-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgb(18 15 17 / 94%) 0, rgb(18 15 17 / 58%) 40%, transparent 76%),
    linear-gradient(90deg, rgb(40 25 31 / 24%), transparent 58%);
  pointer-events: none;
}

.portfolio-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
  transform: scale(1.01);
}

.portfolio-card--husband .portfolio-cover img {
  object-position: center;
}

.portfolio-card--father .portfolio-cover img {
  object-position: center 47%;
  filter: saturate(0.86) contrast(1.03) brightness(0.92);
}

.portfolio-card--sister .portfolio-cover img {
  object-position: center 42%;
  filter: saturate(0.82) contrast(1.03) brightness(0.86);
}

.portfolio-card--girlfriends .portfolio-cover img {
  object-position: center 44%;
  filter: saturate(0.78) contrast(1.03) brightness(0.86);
}

.portfolio-cover-copy {
  position: absolute;
  right: clamp(24px, 5vw, 56px);
  bottom: clamp(24px, 4vw, 46px);
  left: clamp(24px, 5vw, 56px);
  z-index: 2;
}

.portfolio-cover-copy > p {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-cover-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.portfolio-cover-copy > span {
  display: block;
  margin-top: 10px;
  color: rgb(247 240 234 / 72%);
  font-size: 0.88rem;
}

.portfolio-story {
  min-width: 0;
  padding: clamp(28px, 5vw, 54px);
}

.portfolio-meaning {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
}

.portfolio-meaning section {
  padding: 2px 32px;
}

.portfolio-meaning section:first-child {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.portfolio-meaning section:last-child {
  padding-right: 0;
}

.portfolio-meaning h4 {
  margin: 0 0 11px;
  color: var(--gold-light);
  font-size: 0.73rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.portfolio-meaning ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.portfolio-meaning p {
  margin: 0;
  color: var(--muted);
}

.portfolio-lyrics {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--text);
  border-left: 2px solid var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.62;
}

.portfolio-lyrics p {
  margin: 8px 0 0;
}

.portfolio-lyrics > span {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.portfolio-result {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.portfolio-player {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgb(211 176 120 / 34%);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgb(215 143 120 / 12%), transparent 13rem),
    rgb(16 13 15 / 58%);
}

.portfolio-play {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  color: #2b1d21;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 26px rgb(211 176 120 / 18%);
  cursor: pointer;
}

.portfolio-play-icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentcolor;
}

.portfolio-player[data-state="playing"] .portfolio-play-icon {
  width: 8px;
  height: 11px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentcolor 0 3px, transparent 3px 5px, currentcolor 5px 8px);
}

.portfolio-player[data-analytics-audio][data-state="playing"] .portfolio-play-icon {
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background: currentcolor;
}

.portfolio-player[data-state="loading"] .portfolio-play-icon {
  width: 12px;
  height: 12px;
  margin-left: 0;
  border: 2px solid rgb(43 29 33 / 30%);
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: player-loading 0.8s linear infinite;
}

.portfolio-audio-copy {
  min-width: 0;
}

.portfolio-audio-copy span,
.portfolio-audio-copy strong,
.portfolio-audio-copy small {
  display: block;
}

.portfolio-audio-copy span {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.portfolio-audio-copy strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-audio-copy small {
  margin-top: 4px;
  color: var(--subtle);
  font-size: 0.7rem;
}

.portfolio-timeline {
  display: grid;
  grid-column: 2 / -1;
  gap: 5px;
}

.portfolio-progress {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  appearance: none;
  accent-color: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--gold);
  background: rgb(255 255 255 / 12%);
}

.portfolio-progress::-webkit-progress-bar {
  background: rgb(255 255 255 / 12%);
}

.portfolio-progress::-webkit-progress-value {
  border-radius: inherit;
  background: var(--gold);
}

.portfolio-progress > [data-progress] {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 120ms linear;
}

.portfolio-progress::-moz-progress-bar {
  border-radius: inherit;
  background: var(--gold);
}

.portfolio-time {
  color: var(--subtle);
  font-size: 0.7rem;
  text-align: right;
}

.portfolio-audio-error {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.82rem;
}

.portfolio-player[data-state="error"] .portfolio-audio-error {
  display: block;
}

.portfolio-audio-panel {
  min-width: 0;
}

.portfolio-fiction-note {
  margin: 24px 0 0;
  color: rgb(247 240 234 / 62%);
  font-size: 0.75rem;
  text-align: center;
}

.portfolio-cta {
  width: 100%;
  margin-top: 14px;
}

.process-list p + p {
  margin-top: 10px;
}

.flow-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.72;
}

.alice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

.alice-quote {
  color: var(--text) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.42rem) !important;
  line-height: 1.55;
}

.alice-note {
  margin-top: 20px !important;
  font-size: 0.94rem !important;
}

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

.work-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.work-list > div > span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.work-list strong {
  color: var(--text);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.52fr);
  align-items: end;
  gap: 40px;
  max-width: none;
}

.split-heading > p {
  padding-bottom: 7px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-height: 152px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 3.5%);
}

.process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgb(211 176 120 / 40%);
  border-radius: 14px;
  background: rgb(211 176 120 / 8%);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-list li:last-child {
  grid-column: 1 / -1;
}

.process-note,
.tariff-note {
  max-width: 900px;
  margin: 22px auto 0;
  padding: 15px 18px;
  color: var(--muted);
  border: 1px solid rgb(211 176 120 / 28%);
  border-radius: 16px;
  background: rgb(211 176 120 / 6%);
  font-size: 0.9rem;
  text-align: center;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgb(255 255 255 / 7.5%), rgb(255 255 255 / 2.5%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 9%);
}

.tariff-featured {
  border-color: rgb(211 176 120 / 46%);
  background:
    radial-gradient(circle at 80% 5%, rgb(215 143 120 / 14%), transparent 15rem),
    linear-gradient(145deg, rgb(255 255 255 / 9%), rgb(255 255 255 / 3%));
  box-shadow: 0 22px 60px rgb(0 0 0 / 25%), inset 0 1px 0 rgb(255 255 255 / 13%);
  transform: translateY(-12px);
}

.tariff-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 12px;
  color: #2b1d21;
  border-radius: 0 0 12px 12px;
  background: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.tariff-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.tariff-head p {
  min-height: 39px;
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 750;
}

.tariff-featured .tariff-head {
  padding-top: 24px;
}

.tariff-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.tariff-head strong {
  display: block;
  margin-top: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.tariff-head span {
  color: var(--subtle);
  font-size: 0.82rem;
}

.tariff-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 1rem;
  list-style: none;
}

.tariff-card li {
  position: relative;
  padding-left: 20px;
}

.tariff-card li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
  box-shadow: 0 0 0 4px rgb(215 143 120 / 10%);
}

.tariff-card .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 14px;
  font-size: 0.88rem;
}

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

.control-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgb(211 176 120 / 42%);
  border-radius: 13px;
  background: rgb(211 176 120 / 8%);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1.1fr);
  gap: clamp(46px, 8vw, 100px);
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 24px;
}

.faq-grid .text-action {
  margin-top: 24px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: -5px 46px 22px 0;
  color: var(--muted);
  font-size: 1rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  margin-top: clamp(74px, 10vw, 126px);
  margin-bottom: clamp(74px, 10vw, 126px);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 87% 20%, rgb(211 176 120 / 13%), transparent 19rem),
    linear-gradient(135deg, rgb(215 143 120 / 12%), rgb(255 255 255 / 3.5%));
}

.final-action {
  display: grid;
  justify-items: stretch;
}

.final-cta .final-action > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--muted);
  text-align: center;
}

.final-action > p strong {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.final-action small {
  margin-top: 12px;
  color: var(--subtle);
  font-size: 0.76rem;
  text-align: center;
}

.site-footer {
  padding: 42px 0 34px;
  color: var(--subtle);
  border-top: 1px solid rgb(255 255 255 / 7%);
  background: rgb(13 11 12 / 32%);
  font-size: 0.86rem;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 11px 30px;
}

.footer-links a,
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 9%);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes wave {
  0%, 100% { height: 18%; opacity: 0.65; }
  50% { height: 72%; opacity: 1; }
}

@media (max-width: 1280px) {
  .header-actions .quiet-link {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 1080px) {

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

  .tariff-featured {
    grid-column: 1 / -1;
    grid-row: 1;
    transform: none;
  }

  .portfolio-result {
    grid-template-columns: 1fr;
  }

  .portfolio-player {
    grid-template-columns: 50px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 0 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .art-wrap {
    min-height: 540px;
  }

  .album {
    width: min(82vw, 470px);
  }

  .meaning-flow {
    grid-template-columns: 1fr;
  }

  .portfolio-cover {
    height: clamp(300px, 48vw, 390px);
  }

  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .flow-number,
  .control-grid article > span {
    margin-bottom: 28px;
  }

  .alice-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid .section-heading {
    position: static;
  }

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

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-actions {
    display: none;
  }

  .process-list,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .process-list li:last-child,
  .tariff-featured {
    grid-column: auto;
  }

  .tariff-featured {
    order: -1;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 78px;
    padding: 18px 0;
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 38px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.65rem);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .action-note,
  .process-note,
  .tariff-note,
  .final-action small {
    font-size: 1rem;
  }

  .hero-offer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-action {
    justify-content: center;
  }

  .art-wrap {
    min-height: 410px;
  }

  .album {
    width: min(92vw, 400px);
    border-radius: 26px;
  }

  .album-caption {
    top: 5.5%;
    left: 6%;
    font-size: 0.58rem;
  }

  .emotion-system {
    inset: 10% 8% 24%;
  }

  .emotion-ring text {
    font-size: 11px;
    letter-spacing: 1.75px;
  }

  .record-shell {
    width: 60%;
  }

  .meaning-card {
    right: 3%;
    bottom: 21%;
    width: 45%;
    padding: 11px 12px;
  }

  .meaning-card small {
    margin-bottom: 5px;
  }

  .meaning-card p {
    font-size: 0.84rem;
  }

  .brand-player {
    right: 5%;
    bottom: 5%;
    left: 5%;
    grid-template-columns: 38px minmax(70px, auto) minmax(46px, 1fr);
    gap: 8px;
    height: 58px;
    padding: 7px 10px;
    border-radius: 18px;
  }

  .player-toggle {
    width: 38px;
  }

  .player-copy strong {
    font-size: 0.66rem;
  }

  .player-wave {
    height: 32px;
  }

  .section {
    padding: 72px 0;
  }

  .portfolio-story {
    padding: 24px 20px;
  }

  .portfolio-cover {
    height: 300px;
  }

  .portfolio-cover img {
    object-position: center 48%;
  }

  .portfolio-card--husband .portfolio-cover img {
    object-position: 43% center;
  }

  .portfolio-card--father .portfolio-cover img {
    object-position: 36% center;
  }

  .portfolio-card--sister .portfolio-cover img {
    object-position: 52% center;
  }

  .portfolio-card--girlfriends .portfolio-cover img {
    object-position: 50% center;
  }

  .portfolio-cover-copy {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .portfolio-cover-copy h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .portfolio-meaning {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-meaning section {
    padding: 0;
  }

  .portfolio-meaning section:first-child {
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portfolio-player {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .portfolio-play {
    width: 46px;
    height: 46px;
  }

  .centered,
  .centered .eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .process-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    min-height: auto;
    padding: 20px;
  }

  .process-list li > span {
    width: 38px;
    height: 38px;
  }

  .tariff-card {
    padding: 24px;
  }

  .faq-list summary {
    padding-right: 42px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    width: min(calc(100% - 28px), var(--max-width));
    padding: 28px 22px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 410px) {
  .emotion-ring text {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .meaning-card {
    width: 46%;
  }

  .meaning-card p {
    font-size: 0.78rem;
  }

  .brand-player {
    grid-template-columns: 38px minmax(64px, auto) minmax(38px, 1fr);
  }
}

@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;
  }
}

/* Conversion-focused composition */
.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: rgb(21 18 20 / 86%);
  backdrop-filter: blur(18px);
}

.text-action-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.text-action-button [data-brand-play-icon] {
  transform: translateY(1.5px);
}

.brand-player {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 13px;
  height: auto;
  min-height: 98px;
  padding: 12px 15px;
}

.player-toggle {
  width: 46px;
}

.player-copy small {
  color: var(--gold-light);
  font-size: 0.65rem;
}

.player-copy strong {
  font-size: 0.88rem;
}

.player-copy > span {
  display: block;
  margin-top: 3px;
  color: var(--subtle);
  font-size: 0.66rem;
  line-height: 1.25;
}

.brand-timeline {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.brand-progress {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  appearance: none;
  accent-color: var(--gold);
  border: 0;
  border-radius: 999px;
  color: var(--gold);
  background: rgb(255 255 255 / 13%);
}

.brand-progress::-webkit-progress-bar {
  background: rgb(255 255 255 / 13%);
}

.brand-progress::-webkit-progress-value {
  border-radius: inherit;
  background: var(--gold);
}

.brand-progress::-moz-progress-bar {
  border-radius: inherit;
  background: var(--gold);
}

.brand-time {
  color: var(--subtle);
  font-size: 0.68rem;
}

.meaning-card {
  bottom: 27%;
}

.portfolio-featured-list {
  display: grid;
  gap: clamp(32px, 5vw, 54px);
}

.portfolio-card--featured {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
}

.portfolio-card--featured + .portfolio-card--featured {
  margin-top: 0;
}

.portfolio-card--featured:nth-child(even) .portfolio-cover {
  order: 2;
}

.portfolio-card--featured .portfolio-cover {
  height: auto;
  min-height: 640px;
}

.portfolio-card--featured .portfolio-story {
  padding: clamp(28px, 4vw, 44px);
}

.portfolio-card--featured .portfolio-meaning,
.portfolio-card--featured .portfolio-result {
  grid-template-columns: 1fr;
}

.portfolio-card--featured .portfolio-meaning {
  gap: 22px;
}

.portfolio-card--featured .portfolio-meaning section {
  padding: 0;
}

.portfolio-card--featured .portfolio-meaning section:first-child {
  padding-bottom: 22px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-card--featured .portfolio-result {
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
}

.portfolio-card--featured .portfolio-cover-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.portfolio-more-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin: clamp(68px, 9vw, 108px) 0 30px;
}

.portfolio-more-heading .eyebrow {
  margin-bottom: 12px;
}

.portfolio-more-heading h3 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.portfolio-more-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}

.portfolio-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-compact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2.5%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 9%);
}

.portfolio-compact-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #211a1d;
}

.portfolio-compact-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(18 15 17 / 96%), rgb(18 15 17 / 35%) 64%, transparent);
}

.portfolio-compact-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03) brightness(0.84);
}

.portfolio-compact-cover > div {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.portfolio-compact-cover p,
.portfolio-compact-cover h3,
.portfolio-compact-cover span {
  margin: 0;
}

.portfolio-compact-cover p {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-compact-cover h3 {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.05;
}

.portfolio-compact-cover span {
  display: block;
  margin-top: 6px;
  color: rgb(247 240 234 / 70%);
  font-size: 0.76rem;
}

.portfolio-compact-content {
  padding: 22px;
}

.portfolio-hook {
  min-height: 96px;
  margin: 0 0 18px;
  color: var(--muted);
}

.portfolio-player--compact {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  padding: 13px;
  border-radius: 18px;
}

.portfolio-player--compact .portfolio-play {
  width: 42px;
  height: 42px;
}

.portfolio-player--compact .portfolio-audio-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-compact-details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.portfolio-compact-details summary {
  position: relative;
  padding: 16px 30px 0 0;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 750;
  list-style: none;
}

.portfolio-compact-details summary::-webkit-details-marker {
  display: none;
}

.portfolio-compact-details summary::after {
  position: absolute;
  right: 2px;
  content: "+";
}

.portfolio-compact-details[open] summary::after {
  content: "−";
}

.portfolio-compact-details > div {
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portfolio-compact-details p {
  margin: 0;
}

.portfolio-compact-details blockquote {
  margin: 15px 0 0;
  padding-left: 14px;
  color: var(--text);
  border-left: 2px solid var(--rose);
  font-family: Georgia, "Times New Roman", serif;
}

.portfolio-disclosure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgb(211 176 120 / 28%);
  border-radius: 22px;
  background: rgb(211 176 120 / 6%);
}

.portfolio-disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.portfolio-disclosure strong {
  color: var(--text);
}

.alice-signature {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
}

.alice-signature span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-style: italic;
}

.alice-signature small {
  color: var(--subtle);
}

.purchase-safety {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 72px);
  margin-bottom: 46px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgb(211 176 120 / 34%);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 10% 20%, rgb(215 143 120 / 13%), transparent 22rem), rgb(255 255 255 / 3.5%);
}

.purchase-safety .eyebrow {
  margin-bottom: 14px;
}

.purchase-safety h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.08;
}

.purchase-safety ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.purchase-safety li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.purchase-safety li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.purchase-safety strong {
  color: var(--text);
}

.purchase-safety-copy {
  align-self: center;
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.process-list--compact li:last-child {
  grid-column: auto;
}

@media (max-width: 980px) {
  .portfolio-card--featured {
    grid-template-columns: 1fr;
  }

  .portfolio-card--featured:nth-child(even) .portfolio-cover {
    order: 0;
  }

  .portfolio-card--featured .portfolio-cover {
    min-height: 390px;
  }

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

  .portfolio-compact-card:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-compact-card:last-child .portfolio-hook {
    min-height: auto;
  }

  .purchase-safety {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .portfolio-more-heading,
  .portfolio-disclosure {
    grid-template-columns: 1fr;
  }

  .portfolio-compact-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-compact-card:last-child {
    grid-column: auto;
  }

  .portfolio-hook {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand-player {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 92px;
    padding: 10px 12px;
  }

  .player-toggle {
    width: 42px;
  }

  .player-copy > span {
    display: none;
  }

  .meaning-card {
    bottom: 34%;
  }

  .portfolio-card--featured .portfolio-cover {
    min-height: 300px;
  }

  .portfolio-card--featured .portfolio-story {
    padding: 24px 20px;
  }

  .portfolio-compact-cover {
    height: 210px;
  }

  .portfolio-disclosure {
    padding: 22px;
  }

.portfolio-disclosure .button {
    width: 100%;
  }
}

@media (min-width: 900px) and (max-height: 780px) {
  .header-inner {
    min-height: 78px;
    padding-block: 16px;
  }

  .hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding-block: 26px 34px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 4.7vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-offer {
    margin-top: 18px;
    padding-block: 12px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .action-note {
    margin-top: 12px;
  }

  .art-wrap {
    min-height: 520px;
  }

  .album {
    width: min(100%, 450px);
  }
}

/* Visual correction: compact type and an explicit 3 + 3 portfolio */
h1 {
  font-size: clamp(2.85rem, 5.4vw, 5.35rem);
  line-height: 0.98;
}

.section {
  padding: clamp(62px, 7.5vw, 94px) 0;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.2rem);
  line-height: 1.1;
}

.text-action-button {
  justify-content: center;
  gap: 9px;
  width: 310px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgb(211 176 120 / 32%);
  border-radius: 14px;
  background: rgb(211 176 120 / 7%);
}

[data-brand-play-icon] {
  position: relative;
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 14px;
}

[data-brand-play-icon]::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentcolor;
  content: "";
}

.text-action-button[data-state="playing"] [data-brand-play-icon]::before,
.signature-sound[data-state="playing"] [data-brand-play-icon]::before {
  top: 2px;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 1px;
  background: currentcolor;
}

.text-action-button:hover,
.text-action-button:focus-visible {
  border-color: rgb(242 199 131 / 62%);
  background: rgb(211 176 120 / 12%);
}

.brand-player audio {
  display: none;
}

/* Multi-page public architecture */
.public-page main {
  overflow: clip;
}

.hero--portrait {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 4vw, 62px);
  min-height: auto;
  padding-block: 34px 46px;
}

.hero--portrait h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.25vw, 4.7rem);
  line-height: 0.99;
}

.hero--portrait .hero-kicker {
  margin-bottom: 18px;
}

.hero-portrait {
  position: relative;
  align-self: center;
  width: 100%;
  height: min(570px, calc(100svh - 138px));
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 34px 34px 150px 34px;
  background: #21191e;
  box-shadow: 0 34px 90px rgb(0 0 0 / 38%);
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(16 12 14 / 86%) 100%);
  content: "";
  pointer-events: none;
}

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

.hero-portrait picture,
.about-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 72px;
  bottom: 27px;
  left: 30px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.hero-portrait figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-portrait figcaption span {
  max-width: 205px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.brand-player--inline {
  position: relative;
  inset: auto;
  width: min(100%, 570px);
  margin-top: 24px;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.value-grid,
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.value-grid article,
.criteria-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(255 255 255 / 3.5%);
}

.value-grid article > span,
.criteria-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.value-grid h3,
.criteria-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
}

.value-grid p,
.criteria-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.case-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.case-preview-card,
.library-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(255 255 255 / 3.5%);
  box-shadow: 0 20px 60px rgb(0 0 0 / 18%);
}

.case-preview-image,
.library-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #231b20;
}

.portfolio-image {
  --portfolio-image-scale: 1;
  --portfolio-image-hover-scale: 1.012;

  position: relative;
}

.portfolio-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 48%,
    rgb(12 10 11 / 16%) 59%,
    rgb(10 8 9 / 58%) 79%,
    rgb(8 7 8 / 96%) 100%
  );
  content: "";
  pointer-events: none;
}

.case-preview-image {
  aspect-ratio: 16 / 9;
}

.case-preview-image img,
.library-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.9);
  transform: scale(var(--portfolio-image-scale));
  transition: transform 0.45s ease;
}

.portfolio-image--muzhu-na-45-let {
  --portfolio-image-scale: 1.05;
  --portfolio-image-hover-scale: 1.062;
}

.portfolio-image--muzhu-na-45-let img {
  object-position: 43% center;
}

.portfolio-image--pape-na-65-let {
  --portfolio-image-scale: 1.035;
  --portfolio-image-hover-scale: 1.047;
}

.portfolio-image--pape-na-65-let img {
  object-position: 43% 35%;
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
}

.portfolio-image--drugu-na-50-let img,
.portfolio-image--podruge-na-den-rozhdeniya img {
  object-position: center;
}

.portfolio-image--sestre-na-svadbu img {
  object-position: 46% center;
}

.portfolio-image--mame-na-60-let img {
  object-position: center 35%;
}

.case-preview-card:hover img,
.library-card:hover img {
  transform: scale(var(--portfolio-image-hover-scale));
}

.case-preview-card > div,
.library-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.case-preview-card .text-action,
.library-card-body .text-action {
  align-self: flex-start;
  margin-top: auto;
}

.case-preview-card > div > p:first-child,
.library-occasion {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-preview-card h3,
.library-card h2 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
}

.case-preview-card h3 a,
.library-card h2 a {
  color: inherit;
  text-decoration: none;
}

.case-preview-card div > span,
.library-card-body > span {
  color: var(--subtle);
  font-size: 0.82rem;
}

.case-preview-card div > p:not(:first-child),
.library-card-body > p:not(.library-occasion) {
  color: var(--muted);
  line-height: 1.6;
}

.alice-grid--summary {
  align-items: start;
}

.alice-grid--summary .section-heading > .text-action {
  margin-top: 28px;
}

.home-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.home-offer-card,
.case-meaning-card,
.case-lesson {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgb(242 199 131 / 24%);
  border-radius: 28px;
  background: linear-gradient(145deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 2.5%));
  box-shadow: 0 26px 80px rgb(0 0 0 / 22%);
}

.home-offer-card > span,
.case-meaning-card > span,
.case-lesson > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-offer-card h3,
.case-meaning-card h2,
.case-meaning-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 500;
}

.home-offer-card > strong {
  display: block;
  margin: 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 500;
}

.home-offer-card ul {
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero {
  max-width: 1000px;
  padding-block: clamp(54px, 6vw, 82px) clamp(42px, 4.5vw, 62px);
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1,
.case-hero h1,
.about-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-hero h1 {
  font-size: clamp(2.55rem, 4.3vw, 4.2rem);
}

.case-hero h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.65rem);
}

.about-hero h1 {
  font-size: clamp(2.65rem, 4.4vw, 4.35rem);
}

.page-hero > p:last-child {
  max-width: 800px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.page-hero--pricing {
  padding-block: clamp(48px, 6vw, 76px) clamp(38px, 4vw, 54px);
}

.page-hero--pricing h1 {
  font-size: clamp(2.55rem, 4.3vw, 4.15rem);
}

.page-hero--pricing > p:last-child {
  margin-top: 22px;
}

.legal-page-shell {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.legal-page-shell .page-hero {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.legal-page-shell .page-hero h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4vw, 3.85rem);
}

.legal-document {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 3.5%);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.legal-document h2,
.legal-document h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

.legal-document h2 {
  margin: 2.6em 0 0.75em;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

.legal-document h3 {
  margin: 2em 0 0.65em;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document ul {
  margin-block: 0 1.15em;
}

.legal-document ul {
  padding-left: 1.35em;
}

.legal-document li + li {
  margin-top: 0.35em;
}

.legal-document strong {
  color: var(--text);
}

.legal-document a {
  color: var(--gold-light);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.legal-contact {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: 1.15em;
  vertical-align: -0.18em;
}

.legal-document .legal-revision {
  margin-bottom: 2em;
  color: var(--gold-light);
  font-weight: 700;
}

.legal-table-wrap {
  margin: 26px 0 34px;
  overflow: hidden;
  border: 1px solid rgb(232 194 139 / 20%);
  border-radius: 22px;
  background: rgb(9 8 10 / 34%);
  box-shadow: 0 20px 52px rgb(0 0 0 / 14%);
}

.legal-tariff-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--muted);
  font-size: 0.94em;
  line-height: 1.45;
}

.legal-tariff-table th,
.legal-tariff-table td {
  padding: 17px 16px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  text-align: center;
  vertical-align: middle;
}

.legal-tariff-table thead th {
  color: var(--gold-light);
  background: rgb(232 194 139 / 8%);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-tariff-table th:first-child {
  width: 42%;
  text-align: left;
}

.legal-tariff-table th:last-child {
  width: 32%;
}

.legal-tariff-table tbody th {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-weight: 500;
}

.legal-tariff-table tbody tr:last-child > * {
  border-bottom: 0;
}

.legal-table-note {
  margin-top: -8px;
  padding-left: 18px;
  color: var(--text);
  border-left: 2px solid rgb(232 194 139 / 58%);
}

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

.library-card-image {
  aspect-ratio: 16 / 9;
}

.library-card-body .portfolio-player {
  margin-block: 22px;
}

.portfolio-disclosure--page {
  margin-top: 46px;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: clamp(64px, 9vw, 120px);
}

.case-hero figure {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 28px 85px rgb(0 0 0 / 32%);
}

.case-hero figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.9);
  transform: scale(var(--portfolio-image-scale));
}

.case-hero .portfolio-image--pape-na-65-let img {
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--subtle);
  text-underline-offset: 5px;
}

.case-recipient {
  margin: 18px 0 0;
  color: var(--gold-light);
}

.case-hook {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.case-story-grid,
.case-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(36px, 7vw, 96px);
}

.case-source-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.case-source-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.case-source-list li::before {
  position: absolute;
  top: 27px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.case-author {
  margin-top: clamp(48px, 7vw, 82px);
}

.case-author-card {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgb(242 199 131 / 24%);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 12%, rgb(215 143 120 / 12%), transparent 24rem),
    linear-gradient(145deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 2.5%));
  box-shadow: 0 28px 80px rgb(0 0 0 / 22%);
}

.case-author-card::before {
  position: absolute;
  top: -34px;
  right: clamp(20px, 5vw, 58px);
  color: rgb(242 199 131 / 12%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 16vw, 13rem);
  line-height: 1;
  content: "“";
  pointer-events: none;
}

.case-author-card > * {
  position: relative;
}

.case-author-card h2 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.case-author-text {
  max-width: 76ch;
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.case-author-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-author-signature span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.case-meaning-card p,
.case-lesson p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.case-result blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.4vw, 28px);
  color: var(--text);
  border: 1px solid rgb(240 197 181 / 18%);
  border-left: 2px solid var(--gold);
  border-radius: 4px 20px 20px 4px;
  background:
    radial-gradient(circle at 12% 18%, rgb(215 143 120 / 11%), transparent 46%),
    rgb(255 255 255 / 3.2%);
  box-shadow: 0 16px 42px rgb(0 0 0 / 14%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  text-wrap: balance;
}

.portfolio-player--case {
  margin-bottom: 22px;
}

.case-disclosure {
  margin-top: -34px;
  color: var(--subtle);
  font-size: 0.82rem;
  text-align: center;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  padding-block: clamp(64px, 9vw, 120px);
}

.about-hero figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px 32px 140px 32px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 32%);
}

.about-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.interview-page {
  --interview-column: 1060px;
}

.interview-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 94px));
  padding-block: clamp(50px, 6.7vw, 86px);
}

.interview-hero::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -12%;
  width: min(52vw, 720px);
  height: min(52vw, 720px);
  border: 1px solid rgb(211 176 120 / 8%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(215 143 120 / 9%), transparent 66%);
  content: "";
  pointer-events: none;
}

.interview-hero figure {
  position: relative;
  border-color: rgb(240 197 181 / 24%);
  box-shadow: 0 38px 110px rgb(0 0 0 / 42%);
}

.interview-hero figure::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 5%);
  content: "";
  pointer-events: none;
}

.interview-hero-copy {
  padding-block: 30px;
}

.interview-hero-copy h1 {
  max-width: 730px;
  font-size: clamp(2.6rem, 4.05vw, 4.05rem);
  line-height: 1.01;
  text-wrap: balance;
}

.about-hero > .interview-hero-copy > .interview-hero-note {
  max-width: 620px;
  margin-top: 30px;
  padding: 14px 0 14px 20px;
  color: var(--subtle);
  border-left: 1px solid rgb(211 176 120 / 58%);
  font-size: 0.92rem;
  line-height: 1.65;
}

.interview-hero-note span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-weight: 720;
}

.interview-hero-copy .button {
  margin-top: 38px;
}

.interview-moment {
  padding-block: clamp(82px, 10vw, 132px);
}

.interview-moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.interview-moment-copy h2,
.interview-method h2,
.interview-commitment h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.interview-moment-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.interview-moment-copy > p:last-child {
  color: var(--text);
}

.interview-moment-sequence {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(240 197 181 / 25%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgb(211 176 120 / 15%), transparent 18rem),
    linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2.5%));
  box-shadow: 0 32px 90px rgb(0 0 0 / 26%);
}

.interview-moment-sequence::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 47px;
  width: 1px;
  background: linear-gradient(rgb(211 176 120 / 12%), rgb(211 176 120 / 62%), rgb(211 176 120 / 12%));
  content: "";
}

.interview-moment-sequence div {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 24px 30px;
}

.interview-moment-sequence div + div {
  border-top: 1px solid var(--line);
}

.interview-moment-sequence span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  color: #25191c;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  place-items: center;
}

.interview-moment-sequence p {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  line-height: 1.4;
}

.interview-method {
  padding-block: clamp(92px, 11vw, 146px);
}

.interview-method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: end;
  gap: clamp(44px, 7vw, 96px);
}

.interview-method-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.interview-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 78px);
  overflow: hidden;
  border: 1px solid rgb(240 197 181 / 22%);
  border-radius: 30px;
  background: rgb(255 255 255 / 3.2%);
  box-shadow: 0 28px 80px rgb(0 0 0 / 20%);
}

.interview-method-grid article {
  min-height: 310px;
  padding: clamp(30px, 4vw, 46px);
}

.interview-method-grid article + article {
  border-left: 1px solid var(--line);
}

.interview-method-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.interview-method-grid h3 {
  margin: 48px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.interview-method-grid p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.interview-method-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  color: var(--gold-light);
  font-weight: 720;
  text-decoration: none;
}

.interview-method-link span {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.interview-method-link:hover span {
  transform: translateX(4px);
}

.interview-article {
  position: relative;
  scroll-margin-top: 100px;
}

.interview-intro {
  max-width: 960px;
  padding-block: clamp(86px, 10vw, 136px);
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  line-height: 1.82;
}

.interview-intro > p {
  max-width: 760px;
  margin: 0;
}

.interview-intro > p + p {
  margin-top: 0.74em;
}

.interview-intro > p:first-child {
  color: var(--text);
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
  line-height: 1.62;
}

.interview-intro > h2 {
  max-width: 900px;
  margin: clamp(52px, 7vw, 82px) 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.interview-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 68px);
  padding: 1px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--line);
}

.interview-index > p {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding: 18px 22px 14px;
  color: var(--subtle);
  background: rgb(19 15 18 / 98%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.interview-index a {
  min-height: 112px;
  padding: 22px 24px 24px;
  color: var(--muted);
  background: rgb(24 19 22 / 98%);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.interview-index a:hover {
  color: var(--text);
  background: rgb(240 197 181 / 8%);
  transform: translateY(-1px);
}

.interview-index a span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.interview-section {
  padding-block: clamp(86px, 10vw, 132px);
  scroll-margin-top: 108px;
}

.interview-section.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgb(143 95 110 / 8%), transparent 30rem),
    radial-gradient(circle at 88% 80%, rgb(211 176 120 / 6%), transparent 28rem),
    rgb(255 255 255 / 2.1%);
}

.interview-prose {
  max-width: var(--interview-column);
}

.interview-chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.interview-chapter::after {
  width: min(100%, 72px);
  height: 1px;
  background: linear-gradient(90deg, rgb(211 176 120 / 65%), transparent);
  content: "";
}

.interview-chapter span {
  color: var(--subtle);
  font-weight: 680;
  letter-spacing: 0.11em;
}

.interview-section h2 {
  max-width: 900px;
  margin: 0 0 clamp(56px, 7vw, 82px);
  scroll-margin-top: 112px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.interview-exchange {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 82px);
  padding-block: clamp(38px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.interview-exchange:last-child {
  padding-bottom: 0;
}

.interview-exchange h3,
.interview-answer {
  position: relative;
  padding-top: 28px;
}

.interview-exchange h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.55vw, 1.3rem);
  font-weight: 500;
  line-height: 1.52;
}

.interview-exchange h3::before,
.interview-answer::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--subtle);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.interview-exchange h3::before {
  content: "Вопрос";
}

.interview-answer::before {
  color: var(--gold);
  content: "Алиса";
}

.interview-answer {
  color: var(--muted);
  font-size: clamp(1.07rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.interview-answer p {
  margin: 0;
}

.interview-answer p + p {
  margin-top: 1.05em;
}

.interview-answer p:first-child {
  color: var(--text);
}

.interview-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: stretch;
  gap: clamp(32px, 5vw, 68px);
  max-width: 1100px;
  margin-block: clamp(72px, 9vw, 116px);
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgb(242 199 131 / 25%);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 12%, rgb(211 176 120 / 13%), transparent 22rem),
    linear-gradient(145deg, rgb(255 255 255 / 7.5%), rgb(255 255 255 / 2.8%));
  box-shadow: 0 34px 100px rgb(0 0 0 / 28%);
}

.interview-proof::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(242 199 131 / 55%), transparent);
  content: "";
}

.interview-proof--reverse .interview-proof-image {
  order: 2;
}

.interview-proof--reverse .interview-proof-copy {
  order: 1;
}

.interview-proof-image {
  display: block;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  background: #231b20;
}

.interview-proof-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.88);
  transform: scale(var(--portfolio-image-scale));
  transition: filter 0.45s ease, transform 0.45s ease;
}

.interview-proof:hover .interview-proof-image img {
  filter: saturate(0.98) contrast(1.02) brightness(0.94);
  transform: scale(var(--portfolio-image-hover-scale));
}

.interview-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px) clamp(18px, 3vw, 38px) clamp(28px, 4vw, 52px) 0;
}

.interview-proof--reverse .interview-proof-copy {
  padding-right: 0;
  padding-left: clamp(18px, 3vw, 38px);
}

.interview-proof-context {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.interview-proof-context span {
  color: var(--subtle);
  font-weight: 680;
  letter-spacing: 0.08em;
}

.interview-proof-context span::before {
  margin-right: 10px;
  color: var(--gold);
  content: "·";
}

.interview-proof h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.interview-proof-copy > p:not(.interview-proof-context, .interview-proof-title) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.interview-proof-title {
  margin: 24px 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
}

.interview-proof-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 16px 0 12px;
  color: var(--gold-light);
  border-top: 1px solid rgb(240 197 181 / 24%);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.interview-proof-link span {
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.interview-proof-link:hover {
  color: var(--text);
  border-color: rgb(240 197 181 / 45%);
}

.interview-proof-link:hover span {
  transform: translateX(4px);
}

.interview-commitment {
  position: relative;
  margin-top: clamp(92px, 11vw, 148px);
  padding: clamp(52px, 7vw, 86px);
  overflow: hidden;
  border: 1px solid rgb(240 197 181 / 25%);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 18%, rgb(211 176 120 / 13%), transparent 24rem),
    radial-gradient(circle at 10% 100%, rgb(143 95 110 / 12%), transparent 28rem),
    linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2.5%));
  box-shadow: 0 36px 110px rgb(0 0 0 / 28%);
}

.interview-commitment::after {
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(211 176 120 / 13%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.interview-commitment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: end;
  gap: clamp(48px, 8vw, 112px);
}

.interview-commitment h2 {
  max-width: 710px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.interview-commitment-grid > div > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.interview-commitment-signature {
  margin: 32px 0 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.interview-commitment-signature span {
  display: block;
  margin-top: 4px;
  color: var(--subtle);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interview-final-cta {
  position: relative;
  margin-top: clamp(42px, 6vw, 74px);
  overflow: hidden;
}

.interview-final-cta::after {
  position: absolute;
  right: -60px;
  bottom: -105px;
  width: 290px;
  height: 290px;
  border: 1px solid rgb(242 199 131 / 14%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.interview-final-cta div > p + p {
  margin-top: 0.65em;
}

.interview-hero-jump {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 740;
  text-decoration: none;
}

.interview-hero-jump span {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.interview-hero-jump:hover span {
  transform: translateY(3px);
}

.interview-pullquote {
  max-width: 790px;
  margin: clamp(54px, 7vw, 84px) 0 0 auto;
  padding: clamp(30px, 4vw, 46px) clamp(28px, 5vw, 58px);
  color: var(--text);
  border: 1px solid rgb(240 197 181 / 24%);
  border-radius: 28px 28px 82px 28px;
  background:
    radial-gradient(circle at 94% 12%, rgb(211 176 120 / 13%), transparent 17rem),
    linear-gradient(145deg, rgb(255 255 255 / 6.5%), rgb(255 255 255 / 2.4%));
  box-shadow: 0 28px 80px rgb(0 0 0 / 22%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  font-style: normal;
  line-height: 1.35;
  text-wrap: balance;
}

.interview-section--scene {
  background:
    radial-gradient(circle at 82% 14%, rgb(211 176 120 / 10%), transparent 30rem),
    radial-gradient(circle at 12% 86%, rgb(143 95 110 / 9%), transparent 28rem);
}

.interview-scene {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 8vw, 92px);
  padding: 1px;
  overflow: hidden;
  border-radius: 30px;
  background: rgb(240 197 181 / 22%);
  box-shadow: 0 30px 90px rgb(0 0 0 / 24%);
}

.interview-scene div {
  min-height: 230px;
  padding: clamp(30px, 4vw, 46px);
  background: rgb(22 18 21 / 98%);
}

.interview-scene span {
  display: block;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.interview-scene p {
  margin: 62px 0 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
  line-height: 1.45;
}

.about-final-actions {
  gap: 20px;
}

.about-final-actions .text-action {
  justify-content: center;
  text-align: center;
}

.process-page-hero {
  position: relative;
  max-width: 1180px;
  padding-block: clamp(76px, 9vw, 126px) clamp(70px, 8vw, 108px);
}

.process-page-hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: min(78vw, 980px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(143 95 110 / 13%), transparent 67%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.process-page-hero h1 {
  max-width: 1080px;
  margin-inline: auto;
}

.process-page-hero > p:not(.eyebrow) {
  max-width: 790px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.process-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: clamp(48px, 6vw, 70px) auto 0;
  padding: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgb(240 197 181 / 22%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 20%);
}

.process-hero-facts div {
  padding: 24px 26px;
  background: rgb(24 19 22 / 97%);
}

.process-hero-facts dt {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.process-hero-facts dd {
  margin: 7px 0 0;
  color: var(--subtle);
  font-size: 0.82rem;
  line-height: 1.45;
}

.process-roadmap-section {
  padding-block: clamp(90px, 11vw, 150px);
}

.process-roadmap-heading {
  max-width: 900px;
}

.process-roadmap-heading > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.process-roadmap {
  margin: clamp(62px, 8vw, 96px) 0 0;
  padding: 0;
  list-style: none;
}

.process-roadmap li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(260px, 0.43fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(38px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.process-roadmap li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-roadmap-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.process-roadmap-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-roadmap-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.process-roadmap-result {
  margin: 4px 0 0;
  padding: 5px 0 5px clamp(22px, 3vw, 34px);
  color: var(--text);
  border-left: 1px solid rgb(211 176 120 / 38%);
  font-size: 0.92rem;
  line-height: 1.62;
}

.process-roadmap-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--subtle);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-roles {
  padding-block: clamp(96px, 11vw, 150px);
}

.process-roles-heading {
  max-width: 940px;
}

.process-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 82px);
  padding: 1px;
  overflow: hidden;
  border-radius: 32px;
  background: rgb(240 197 181 / 22%);
  box-shadow: 0 32px 90px rgb(0 0 0 / 24%);
}

.process-roles-grid article {
  min-height: 330px;
  padding: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(circle at 92% 8%, rgb(211 176 120 / 9%), transparent 17rem),
    rgb(24 19 22 / 98%);
}

.process-roles-grid article > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-roles-grid h3 {
  margin: 54px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.process-roles-grid p {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.process-assurance {
  padding-block: clamp(82px, 9vw, 122px);
}

.process-assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(54px, 9vw, 128px);
}

.process-assurance h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.process-assurance ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-assurance li {
  position: relative;
  padding: 20px 0 20px 34px;
  color: var(--text);
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  line-height: 1.55;
}

.process-assurance li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-assurance li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 18px rgb(211 176 120 / 38%);
  content: "";
}

.process-final-cta {
  overflow: hidden;
}

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

.criteria-grid article {
  padding: 24px;
}

.pricing-page {
  padding-top: 24px;
}

.brand-signature {
  padding-block: clamp(52px, 5vw, 68px);
}

.brand-signature + .portfolio-preview {
  padding-top: clamp(68px, 7vw, 92px);
}

.brand-signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(42px, 8vw, 112px);
}

.brand-signature-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.brand-signature-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.brand-signature-visual {
  display: grid;
  place-items: center;
}

.brand-signature-visual .album {
  width: min(100%, 360px);
  transform: none;
}

.brand-signature-visual .emotion-system {
  inset: 8% 6% 18%;
}

.brand-signature-visual .record-shell {
  width: 62%;
}

.brand-signature-visual .emotion-ring text {
  font-size: 11.25px;
  letter-spacing: 1.25px;
}

.signature-meaning-card {
  right: 3.5%;
  bottom: 18.5%;
  width: min(214px, 56%);
  padding: 13px 15px 14px;
  color: var(--text);
  border-color: rgb(240 197 181 / 24%);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0, rgb(215 143 120 / 16%), transparent 8rem),
    linear-gradient(145deg, rgb(50 39 44 / 96%), rgb(27 22 25 / 96%));
  box-shadow: 0 18px 38px rgb(0 0 0 / 42%), inset 3px 0 0 rgb(215 143 120 / 62%), inset 0 1px 0 rgb(255 255 255 / 10%);
  backdrop-filter: blur(14px);
  transform: rotate(-1deg);
}

.signature-meaning-card small {
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.signature-meaning-card p {
  font-size: 0.91rem;
  line-height: 1.28;
}

.signature-meaning-card p span {
  color: var(--rose-light);
}

.signature-sound {
  position: absolute;
  right: 6%;
  bottom: 4.5%;
  left: 6%;
  z-index: 4;
  display: grid;
  grid-template-columns: 12px auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  height: 45px;
  padding: 0 13px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 15px;
  background: rgb(21 18 20 / 62%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.signature-sound-title {
  color: rgb(247 240 234 / 62%);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signature-sound:hover,
.signature-sound:focus-visible {
  border-color: rgb(240 197 181 / 38%);
  background: rgb(38 28 32 / 82%);
}

.home-page #faq {
  width: min(calc(100% - 40px), 880px);
}

.home-page #faq .split-heading {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 760px;
}

.home-page #faq .split-heading > p {
  padding-bottom: 0;
}

main p,
main li,
main summary,
main figcaption,
main .text-action,
.site-footer,
.site-header {
  text-wrap: pretty;
}

main h1,
main h2,
main h3 {
  text-wrap: balance;
}

.signature-wave {
  display: flex;
  min-width: 0;
  height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
}

.signature-wave i {
  width: 2px;
  height: 22%;
  border-radius: 999px;
  background: linear-gradient(to top, var(--rose), var(--gold-light));
  animation: wave 1.55s ease-in-out infinite;
  transform-origin: center;
}

.signature-wave i:nth-child(2n) { animation-delay: -0.25s; }
.signature-wave i:nth-child(3n) { animation-delay: -0.6s; }
.signature-wave i:nth-child(5n) { animation-delay: -0.9s; }

@media (max-width: 1120px) {
  .criteria-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero--portrait,
  .case-hero,
  .about-hero,
  .interview-moment-grid,
  .interview-method-heading,
  .interview-commitment-grid,
  .home-offer-grid,
  .case-story-grid,
  .case-result {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .brand-signature-grid {
    grid-template-columns: 1fr;
  }

  .brand-signature-visual {
    justify-content: start;
  }

  .brand-signature-visual .album {
    width: min(100%, 380px);
  }

  .hero--portrait .hero-copy {
    max-width: none;
  }

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

  .about-hero figure {
    width: min(100%, 620px);
    order: 2;
  }

  .about-hero .interview-hero-copy {
    order: 1;
  }

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

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

  .interview-moment-copy,
  .interview-method-heading > p,
  .interview-commitment-grid > div {
    max-width: 720px;
  }

  .interview-moment-sequence {
    width: min(100%, 720px);
  }

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

  .interview-method-grid article {
    min-height: 0;
  }

  .interview-method-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .interview-method-grid h3 {
    margin-top: 30px;
  }

  .interview-exchange {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    gap: 40px;
  }

  .interview-proof {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    gap: 34px;
  }

  .interview-proof-image {
    min-height: 360px;
  }

  .process-roadmap li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 26px 34px;
  }

  .process-roadmap-result {
    grid-column: 2;
  }

  .process-assurance-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .hero--portrait .hero-kicker {
    display: block;
    width: 100%;
    line-height: 1.55;
  }

  .hero--portrait .hero-kicker::before {
    display: none;
  }

  .hero--portrait h1 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
  }

  .hero-intro {
    gap: 12px;
    margin-top: 22px;
  }

  .hero-intro p,
  .hero-intro .hero-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .case-preview-grid,
  .case-library-grid,
  .value-grid,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    text-align: left;
  }

  .page-hero .eyebrow {
    justify-content: flex-start;
  }

  .legal-page-shell .page-hero h1 {
    margin-inline: 0;
  }

  .legal-document {
    padding: 24px 20px;
    border-radius: 22px;
    line-height: 1.65;
  }

  .legal-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-tariff-table,
  .legal-tariff-table tbody,
  .legal-tariff-table tr,
  .legal-tariff-table th,
  .legal-tariff-table td {
    display: block;
    width: 100%;
  }

  .legal-tariff-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .legal-tariff-table tbody {
    display: grid;
    gap: 12px;
  }

  .legal-tariff-table tbody tr {
    padding: 17px 16px 12px;
    border: 1px solid rgb(232 194 139 / 18%);
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(232 194 139 / 7%), rgb(255 255 255 / 2%));
  }

  .legal-tariff-table tbody th,
  .legal-tariff-table tbody td {
    border: 0;
  }

  .legal-tariff-table tbody th:first-child {
    width: auto;
    margin-bottom: 8px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    text-align: left;
  }

  .legal-tariff-table tbody td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 5px 0;
    text-align: right;
  }

  .legal-tariff-table tbody td::before {
    color: var(--muted);
    content: attr(data-label);
    text-align: left;
  }

  .hero-portrait {
    border-radius: 26px 26px 88px 26px;
  }

  .hero-portrait figcaption {
    right: 42px;
    bottom: 20px;
    left: 20px;
    display: block;
  }

  .hero-portrait figcaption span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .about-hero {
    padding-top: 38px;
  }

  .interview-hero h1 {
    font-size: clamp(2.28rem, 9.6vw, 3.3rem);
  }

  .interview-hero-copy {
    padding-block: 4px 0;
  }

  .interview-hero-copy .button {
    width: 100%;
    margin-top: 30px;
  }

  .about-hero figure {
    border-radius: 24px 24px 84px 24px;
  }

  .interview-intro {
    padding-block: 70px 78px;
    font-size: 1.04rem;
    line-height: 1.72;
  }

  .interview-intro > p:first-child {
    font-size: 1.17rem;
  }

  .interview-intro > h2 {
    margin-top: 46px;
    font-size: clamp(2.1rem, 9.2vw, 3rem);
  }

  .interview-index {
    grid-template-columns: 1fr;
    margin-top: 42px;
    border-radius: 20px;
  }

  .interview-index a {
    min-height: 0;
    padding: 17px 18px 19px;
  }

  .interview-index a span {
    display: inline-block;
    width: 36px;
    margin: 0;
  }

  .interview-section {
    padding-block: 74px;
  }

  .interview-chapter {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 7px;
  }

  .interview-chapter::after {
    display: none;
  }

  .interview-chapter span {
    flex-basis: 100%;
  }

  .interview-section h2 {
    margin-bottom: 48px;
    font-size: clamp(2.05rem, 9.4vw, 3rem);
  }

  .interview-exchange {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 34px 40px;
  }

  .interview-exchange h3,
  .interview-answer {
    padding-top: 24px;
  }

  .interview-answer {
    font-size: 1.04rem;
    line-height: 1.74;
  }

  .interview-pullquote {
    margin-top: 46px;
    padding: 28px 24px 36px;
    border-radius: 22px 22px 62px 22px;
    font-size: clamp(1.42rem, 7vw, 1.85rem);
  }

  .interview-scene {
    grid-template-columns: 1fr;
    margin-top: 48px;
    border-radius: 22px;
  }

  .interview-scene div {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .interview-scene p {
    margin-top: 28px;
  }

  .about-final-actions {
    align-items: stretch;
  }

  .process-page-hero {
    padding-block: 58px 70px;
    text-align: left;
  }

  .process-page-hero .eyebrow {
    justify-content: flex-start;
  }

  .process-page-hero h1 {
    font-size: clamp(2.3rem, 10.8vw, 3.15rem);
  }

  .process-page-hero > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 1.04rem;
  }

  .process-hero-facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
    border-radius: 20px;
    text-align: left;
  }

  .process-hero-facts div {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
  }

  .process-hero-facts dd {
    margin: 0;
  }

  .process-roadmap-section {
    padding-block: 74px;
  }

  .process-roadmap {
    margin-top: 50px;
  }

  .process-roadmap li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 20px 16px;
    padding-block: 34px;
  }

  .process-roadmap-number {
    font-size: 1.55rem;
  }

  .process-roadmap-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .process-roadmap-copy p {
    margin-top: 15px;
    font-size: 0.98rem;
  }

  .process-roadmap-result {
    padding: 4px 0 4px 18px;
    font-size: 0.88rem;
  }

  .process-roles {
    padding-block: 78px;
  }

  .process-roles-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
    border-radius: 24px;
  }

  .process-roles-grid article {
    min-height: 0;
    padding: 32px 26px 38px;
  }

  .process-roles-grid h3 {
    margin-top: 34px;
  }

  .process-assurance {
    padding-block: 74px;
  }

  .process-assurance-grid {
    gap: 38px;
  }

  .process-assurance h2 {
    font-size: clamp(2.1rem, 9.3vw, 3rem);
  }

  .interview-moment,
  .interview-method {
    padding-block: 74px;
  }

  .interview-moment-copy h2,
  .interview-method h2,
  .interview-commitment h2 {
    font-size: clamp(2.05rem, 9.2vw, 3rem);
  }

  .interview-moment-sequence {
    border-radius: 26px;
  }

  .interview-moment-sequence div {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    min-height: 102px;
    padding: 20px 18px;
  }

  .interview-moment-sequence::before {
    left: 35px;
  }

  .interview-method-grid {
    border-radius: 24px;
  }

  .interview-method-grid article {
    padding: 30px 26px 34px;
  }

  .interview-commitment {
    margin-top: 74px;
    padding: 42px 28px 48px;
    border-radius: 28px;
  }

  .interview-proof {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 12px 28px;
    border-radius: 28px;
  }

  .interview-proof--reverse .interview-proof-image,
  .interview-proof--reverse .interview-proof-copy {
    order: initial;
  }

  .interview-proof-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .interview-proof-copy,
  .interview-proof--reverse .interview-proof-copy {
    padding: 30px 10px 0;
  }

  .interview-proof-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .interview-proof-context span::before {
    display: none;
  }

  .interview-proof h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .case-hero {
    padding-top: 40px;
  }
}

.portfolio-featured-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.portfolio-card--featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border-radius: 26px;
}

.portfolio-card--featured:nth-child(even) .portfolio-cover {
  order: initial;
}

.portfolio-card--featured .portfolio-cover {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.portfolio-card--featured .portfolio-cover-copy {
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.portfolio-card--featured .portfolio-cover-copy > p {
  font-size: 0.66rem;
}

.portfolio-card--featured .portfolio-cover-copy h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.06;
}

.portfolio-card--featured .portfolio-cover-copy > span {
  margin-top: 7px;
  font-size: 0.76rem;
}

.portfolio-card--featured .portfolio-story {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.portfolio-card--featured .portfolio-meaning {
  gap: 17px;
  padding-bottom: 18px;
}

.portfolio-card--featured .portfolio-meaning section:first-child {
  padding-bottom: 17px;
}

.portfolio-card--featured .portfolio-meaning ul,
.portfolio-card--featured .portfolio-meaning p {
  font-size: 0.9rem;
  line-height: 1.48;
}

.portfolio-card--featured .portfolio-result {
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
}

.portfolio-card--featured .portfolio-lyrics {
  padding-left: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.portfolio-card--featured .portfolio-player {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  padding: 13px;
  border-radius: 18px;
}

.portfolio-card--featured .portfolio-play {
  width: 44px;
  height: 44px;
}

.portfolio-card--featured .portfolio-audio-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-more-heading {
  margin: clamp(52px, 7vw, 78px) 0 25px;
}

.portfolio-more-heading h3 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.portfolio-compact-cover {
  height: auto;
  aspect-ratio: 16 / 9;
}

.portfolio-compact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-compact-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.portfolio-compact-details {
  margin-top: auto;
}

@media (max-width: 960px) {
  .portfolio-featured-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-card--featured {
    display: block;
  }

  .portfolio-card--featured .portfolio-cover {
    height: auto;
    aspect-ratio: 2.2 / 1;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .portfolio-card--featured {
    display: block;
  }

  .portfolio-card--featured .portfolio-cover {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .text-action-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .portfolio-card--featured .portfolio-story,
  .portfolio-compact-content {
    padding: 20px 18px;
  }
}

@media (max-width: 410px) {
  .signature-meaning-card {
    right: 2.5%;
    width: 61%;
    padding: 11px 12px 12px;
  }

  .signature-meaning-card p {
    font-size: 0.8rem;
  }

  .signature-sound {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 9px;
    padding-inline: 12px;
  }

  .signature-sound-title {
    display: none;
  }
}
