@font-face {
  font-family: "Inter MM";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Jost MM";
  src: url("../fonts/jost-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Jost MM";
  src: url("../fonts/jost-italic-variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ink: #17252d;
  --ink-soft: #37505d;
  --paper: #f0f1f3;
  --paper-deep: #dce0e6;
  --white: #fff;
  --blue: #123d63;
  --blue-bright: #176ca6;
  --sky: #65c8e8;
  --line: rgba(28, 41, 48, 0.19);
  --font-display: "Inter MM", Inter, Helvetica, Arial, sans-serif;
  --font-body: "Jost MM", Jost, Arial, sans-serif;
  --shell: min(100% - 40px, 1360px);
  --radius: 12px;
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--blue-bright);
}

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

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

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

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

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(240, 241, 243, 0.94);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 12px 32px rgba(28, 41, 48, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand__mark {
  display: block;
  width: 76px;
  height: 68px;
  flex: 0 0 76px;
  background: var(--blue);
  -webkit-mask: url("../images/logo-fenice.svg") center / 88px 88px no-repeat;
  mask: url("../images/logo-fenice.svg") center / 88px 88px no-repeat;
}

.brand__mark img {
  display: none;
}

.brand__name {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  display: grid;
  min-height: 44px;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__list a::after {
  width: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transition: width 220ms var(--ease);
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item a::after {
  width: 100%;
}

.site-nav__cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.site-nav__cta:hover {
  background: var(--blue-bright);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  width: 24px;
  height: 18px;
  align-content: center;
  gap: 6px;
}

.menu-toggle__icon i {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.hero {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: clamp(64px, 8vw, 128px);
}

.eyebrow,
.section-index,
.tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

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

.hero h1 {
  max-width: 840px;
  margin: 28px 0 32px;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 104px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 em,
.statement h2 em,
.music h2 em {
  color: var(--blue-bright);
  font-family: var(--font-body);
  font-weight: 450;
}

.hero__intro {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.45;
}

.hero__actions,
.music__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
}

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

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

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-transform: uppercase;
}

.text-link span,
.post-card__link span,
.territory-card a span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span,
.post-card__link:hover span,
.territory-card a:hover span {
  transform: translate(3px, -3px);
}

.hero__visual {
  position: relative;
  width: min(100%, 610px);
  justify-self: end;
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(10, 27, 37, 0.75));
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.hero__visual--portrait .hero__image-wrap img {
  object-position: 48% 38%;
  filter: saturate(0.9) contrast(1.03);
}

.hero__image-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__friction {
  position: absolute;
  z-index: 2;
  top: 10%;
  left: -64px;
  margin: 0;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.hero__friction s {
  opacity: 0.55;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.ticker__track {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  padding: 18px 28px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.ticker i {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  transform: rotate(45deg);
}

.section {
  padding-block: clamp(88px, 11vw, 176px);
}

.section-index {
  color: var(--blue-bright);
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

.statement__content {
  max-width: 1000px;
}

.statement h2,
.section-heading h2,
.archive-header h1,
.entry-header h1,
.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.statement__body {
  display: grid;
  max-width: 780px;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 56px 0 0 auto;
  color: var(--ink-soft);
  font-size: 20px;
}

.statement__body p {
  margin: 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading--row .section-index {
  margin-bottom: 20px;
}

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

.territory-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.territory-card--wide {
  grid-column: 1 / -1;
  min-height: 520px;
  justify-content: flex-end;
  color: var(--white);
  border: 0;
}

.territory-card--wide::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 31, 40, 0.9), rgba(13, 31, 40, 0.12));
}

.territory-card--wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.territory-card--wide > *:not(img) {
  position: relative;
  z-index: 1;
}

.territory-card--blue {
  color: var(--white);
  background: var(--blue);
}

.territory-card--dark {
  color: var(--white);
  background: var(--ink);
}

.territory-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.territory-card > div {
  max-width: 650px;
}

.territory-card h3 {
  max-width: 610px;
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.territory-card p:not(.tag) {
  max-width: 600px;
  margin: 0;
  font-size: 20px;
}

.territory-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.latest {
  background: var(--paper-deep);
}

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

.post-card {
  min-width: 0;
}

.post-card__media {
  display: block;
  aspect-ratio: 3 / 2;
  background: var(--ink-soft);
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease), filter 250ms ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.post-card__placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--ink));
}

.post-card__placeholder i {
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(12deg);
}

.post-card__body {
  padding-top: 20px;
}

.post-card__meta {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card__meta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue-bright);
}

.post-card h3 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.post-card h3 a {
  display: flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

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

.post-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.music {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

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

.music__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(56px, 9vw, 144px);
}

.music__cover {
  position: relative;
  max-width: 560px;
  transform: rotate(-2deg);
}

.music__cover::before {
  position: absolute;
  z-index: -1;
  inset: 16px -16px -16px 16px;
  content: "";
  border: 1px solid rgba(101, 200, 232, 0.7);
}

.music__cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.music__cover span {
  position: absolute;
  right: -24px;
  bottom: 22px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music h2 {
  max-width: 760px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.music h2 em {
  color: var(--sky);
}

.music__copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.text-link--light {
  color: var(--white);
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

.about-strip__content {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(36px, 6vw, 88px);
}

.about-strip__mark {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  background: var(--blue);
  overflow: hidden;
}

.about-strip__mark img {
  width: 145px;
  height: 145px;
  object-fit: cover;
}

.about-strip h2 {
  max-width: 900px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 70px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.about-strip p {
  max-width: 700px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 20px;
}

.site-footer {
  padding-block: 88px 32px;
  color: var(--white);
  background: var(--blue);
}

.site-footer__top {
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-decoration: none;
}

.site-footer__title span {
  font-size: 0.45em;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 48px;
  padding-top: 32px;
  font-family: var(--font-display);
  font-size: 12px;
}

.site-footer__bottom > div {
  display: flex;
  flex-direction: column;
}

.site-footer__bottom strong {
  font-size: 16px;
}

.site-footer__bottom span,
.site-footer__legal {
  color: rgba(255, 255, 255, 0.72);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
}

.site-footer__legal {
  margin: 0;
}

/* Interni editoriali */
.archive-main,
.entry-main,
.not-found {
  min-height: 65dvh;
  padding-block: clamp(64px, 8vw, 120px);
}

.archive-header {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  margin-bottom: 72px;
}

.archive-header h1 {
  max-width: 960px;
}

.archive-header__description {
  max-width: 700px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 20px;
}

.pagination {
  margin-top: 72px;
}

.pagination > ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.pagination > ul.page-numbers > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.nav-links > .page-numbers,
.pagination li > .page-numbers {
  display: grid;
  min-width: 48px;
  min-height: 48px;
  place-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > .page-numbers.current,
.nav-links > .page-numbers:hover,
.pagination li > .page-numbers.current,
.pagination li > .page-numbers:hover {
  color: var(--white);
  background: var(--blue);
}

.entry-header {
  display: grid;
  max-width: 1060px;
  margin: 0 auto 64px;
  text-align: center;
}

.entry-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-header h1 {
  font-size: clamp(48px, 7vw, 98px);
}

.entry-meta {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.entry-hero {
  max-width: 1360px;
  margin: 0 auto 72px;
}

.entry-hero img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
}

.entry-content {
  max-width: 760px;
  margin-inline: auto;
  font-size: 20px;
}

.entry-content > * {
  margin-block: 0 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-block: 1.8em 0.65em;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.entry-content h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.entry-content h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.entry-content a {
  color: var(--blue-bright);
  font-weight: 600;
}

.entry-content blockquote {
  padding: 28px 0 28px 32px;
  margin-inline: 0;
  border-left: 4px solid var(--sky);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.entry-content figure,
.entry-content img,
.entry-content iframe {
  max-width: 100%;
}

.entry-content .alignwide {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-footer {
  max-width: 760px;
  padding-top: 40px;
  margin: 64px auto 0;
  border-top: 1px solid var(--line);
}

.post-navigation {
  max-width: 1100px;
  margin: 96px auto 0;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-navigation a {
  display: block;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 650;
  text-decoration: none;
}

.post-navigation .nav-subtitle {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-bright);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-form {
  display: flex;
  max-width: 680px;
  gap: 8px;
  margin-top: 36px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid var(--ink-soft);
  border-radius: 0;
  background: var(--white);
  font-size: 16px;
}

.search-submit {
  min-height: 52px;
  padding: 12px 20px;
  color: var(--white);
  border: 1px solid var(--blue);
  background: var(--blue);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.not-found {
  display: grid;
  align-content: center;
  justify-items: start;
}

.not-found p {
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 20px;
}

/* Pagina Chi sono */
.about-hero {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 9vw, 144px);
  padding-block: clamp(64px, 9vw, 136px);
}

.about-hero h1 {
  max-width: 880px;
  margin: 28px 0 36px;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.about-hero h1 em,
.about-story h2 em {
  color: var(--blue-bright);
  font-family: var(--font-body);
  font-weight: 450;
}

.about-hero__copy > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 28px);
}

.about-hero__portrait {
  position: relative;
  margin: 0;
}

.about-hero__portrait::before {
  position: absolute;
  z-index: -1;
  inset: 16px -16px -16px 16px;
  content: "";
  background: var(--sky);
}

.about-hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
}

.about-hero__portrait figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.about-story h2 {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-story__columns {
  display: grid;
  max-width: 780px;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 56px 0 0 auto;
  color: var(--ink-soft);
  font-size: 20px;
}

.about-story__columns p {
  margin: 0;
}

.about-principles {
  background: var(--paper-deep);
}

.principles-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.principles-list li {
  display: grid;
  grid-template-columns: 80px minmax(190px, 0.7fr) 1fr;
  align-items: baseline;
  gap: 32px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.principles-list span {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.principles-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.04em;
}

.principles-list p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.about-lab {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 128px);
}

.about-lab__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.about-lab h2 {
  max-width: 700px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-lab__copy > p:not(.section-index) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
}

/* Video & Musica */
.studio-page {
  background: var(--paper);
}

.studio-hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.studio-hero__texture,
.spotify-section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
  pointer-events: none;
}

.studio-hero__grid {
  position: relative;
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(56px, 8vw, 128px);
  padding-block: clamp(72px, 9vw, 144px);
}

.eyebrow--light {
  color: var(--sky);
}

.studio-hero h1 {
  max-width: 940px;
  margin: 28px 0 36px;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.7vw, 108px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.studio-hero h1 em,
.studio-manifesto h2 em,
.spotify-section h2 em {
  color: var(--sky);
  font-family: var(--font-body);
  font-weight: 430;
}

.studio-hero__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(20px, 1.8vw, 26px);
}

.studio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

.studio-hero__portrait {
  position: relative;
  max-width: 600px;
  margin: 0;
  justify-self: end;
}

.studio-hero__portrait::before {
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  content: "";
  border: 1px solid rgba(101, 200, 232, 0.7);
}

.studio-hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% 40%;
}

.studio-hero__portrait figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
}

.studio-manifesto__content h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.97;
}

.studio-manifesto__content > p {
  max-width: 700px;
  margin: 48px 0 0 auto;
  color: var(--ink-soft);
  font-size: 21px;
}

.video-section {
  background: var(--paper-deep);
}

.studio-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.studio-section-heading .section-index {
  margin-bottom: 20px;
}

.studio-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.7fr);
  background: var(--white);
}

.featured-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.featured-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-video__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
}

.featured-video__copy .tag {
  color: var(--blue-bright);
}

.featured-video__copy h3 {
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.featured-video__copy > p:not(.tag) {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 20px;
  margin-top: 64px;
}

.video-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
  overflow: hidden;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease), filter 220ms ease;
}

.video-card__media:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.video-card__play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  transition: color 180ms ease, background-color 180ms ease;
}

.video-card__media:hover .video-card__play {
  color: var(--ink);
  background: var(--sky);
}

.video-card__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.video-card h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.video-card h3 a {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  text-decoration: none;
}

.spotify-section {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.spotify-section__inner {
  position: relative;
}

.studio-section-heading--light {
  align-items: flex-end;
}

.studio-section-heading--light h2 {
  font-size: clamp(52px, 6.4vw, 96px);
}

.studio-section-heading--light > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.spotify-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 128px);
}

.spotify-artist {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.spotify-artist > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05);
}

.spotify-artist__copy {
  padding: 24px 0 4px;
}

.spotify-artist__copy h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.spotify-artist__copy > p:last-child {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.button--spotify {
  width: 100%;
  margin-top: 16px;
  color: var(--ink);
  background: #1ed760;
}

.button--spotify:hover {
  background: #68e493;
}

.release-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.release-card {
  position: relative;
  display: grid;
  min-height: 164px;
  grid-template-columns: 132px 1fr 44px;
  align-items: center;
  gap: 28px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.release-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
}

.release-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.release-card__copy .tag {
  margin-bottom: 6px;
  color: #68e493;
}

.release-card__copy strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.release-card__copy > span:last-child {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.release-card__arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  transition: color 180ms ease, background-color 180ms ease;
}

.release-card:hover .release-card__arrow {
  color: var(--ink);
  background: #1ed760;
}

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

.theme-card {
  min-height: 360px;
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
}

.theme-card > span {
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 750;
}

.theme-card h3 {
  margin: clamp(72px, 9vw, 128px) 0 20px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.theme-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.reveal {
	opacity: 1;
	transform: none;
	transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal--delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .site-nav__list {
    gap: 18px;
  }

  .site-nav__cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(56px, 7vw, 78px);
  }

  .hero__friction {
    left: -32px;
  }

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

  .studio-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 48px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
    --shell: min(100% - 32px, 720px);
  }

  body {
    font-size: 17px;
  }

  .site-header__inner {
    min-height: var(--header-height);
  }

  .brand__mark {
    width: 64px;
    height: 58px;
    flex-basis: 64px;
    -webkit-mask-size: 76px 76px;
    mask-size: 76px 76px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    inset: var(--header-height) 0 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 32px 24px 40px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 240ms var(--ease), visibility 0s linear 240ms;
  }

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

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav__list a {
    min-height: 64px;
    justify-items: start;
    font-size: 20px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav__cta {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 72px 88px;
  }

  .hero__visual {
    width: 80%;
  }

  .hero__friction {
    left: -40px;
  }

  .statement,
  .section-heading,
  .about-strip,
  .archive-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .statement__body {
    margin-left: 0;
  }

  .territory-card--wide {
    min-height: 480px;
  }

  .music__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .about-strip__content {
    grid-template-columns: 110px 1fr;
  }

  .about-hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-strip__mark {
    width: 110px;
    height: 110px;
  }

  .about-strip__mark img {
    width: 108px;
    height: 108px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }

  .studio-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr 0.78fr;
  }

  .studio-manifesto {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-video {
    grid-template-columns: 1fr;
  }

  .featured-video__copy {
    min-height: 320px;
  }

  .studio-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .spotify-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }

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

@media (max-width: 620px) {
  .brand__name {
    font-size: 15px;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero {
    min-height: auto;
    gap: 56px;
    padding-block: 56px 72px;
  }

  .hero h1 {
    margin-block: 22px 28px;
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero__intro {
    font-size: 19px;
  }

  .hero__actions,
  .music__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 36px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    width: calc(100% - 24px);
  }

  .hero__image-wrap {
    aspect-ratio: 5 / 6;
  }

  .hero__friction {
    top: 8%;
    left: -20px;
  }

  .ticker__track {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .ticker__track::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 88px;
  }

  .statement h2,
  .section-heading h2,
  .archive-header h1,
  .entry-header h1,
  .not-found h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .statement__body {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    font-size: 18px;
  }

  .section-heading--row {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .territory-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .territory-card,
  .territory-card--wide {
    min-height: 420px;
  }

  .territory-card--wide::after {
    background: linear-gradient(0deg, rgba(13, 31, 40, 0.94), rgba(13, 31, 40, 0.18));
  }

  .territory-card h3 {
    font-size: 36px;
  }

  .latest .section-heading {
    margin-bottom: 48px;
  }

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

  .music__cover {
    width: calc(100% - 20px);
  }

  .music h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .about-strip__content {
    grid-template-columns: 1fr;
  }

  .about-strip__mark {
    width: 92px;
    height: 92px;
  }

  .about-strip__mark img {
    width: 90px;
    height: 90px;
  }

  .site-footer {
    padding-top: 72px;
  }

  .site-footer__top {
    padding-bottom: 56px;
  }

  .site-footer__title {
    font-size: clamp(55px, 18vw, 86px);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__legal {
    grid-column: auto;
  }

  .entry-header {
    text-align: left;
  }

  .about-hero,
  .about-lab {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .about-hero__portrait {
    width: calc(100% - 16px);
  }

  .about-story__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    font-size: 18px;
  }

  .principles-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px 20px;
  }

  .principles-list p {
    grid-column: 2;
  }

  .entry-kicker {
    justify-content: flex-start;
  }

  .entry-content {
    font-size: 18px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-hero__grid {
    grid-template-columns: 1fr;
    padding-block: 64px 88px;
  }

  .studio-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .studio-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-hero__portrait {
    width: calc(100% - 16px);
  }

  .studio-manifesto__content h2,
  .studio-section-heading h2 {
    font-size: clamp(43px, 12.5vw, 60px);
  }

  .studio-manifesto__content > p {
    margin-top: 32px;
    font-size: 18px;
  }

  .featured-video__copy {
    min-height: auto;
  }

  .video-grid,
  .spotify-layout,
  .themes-grid {
    grid-template-columns: 1fr;
  }

  .spotify-artist {
    position: static;
  }

  .release-card {
    min-height: 132px;
    grid-template-columns: 96px 1fr 44px;
    gap: 16px;
  }

  .release-card img {
    width: 96px;
    height: 96px;
  }

  .release-card__copy > span:last-child {
    display: none;
  }

  .theme-card {
    min-height: 300px;
  }
}

/* Personal brand 2.0 — dual identity and editorial hubs */
.breadcrumbs {
  padding-block: 18px;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--ink-soft);
  content: "/";
}

.breadcrumbs a {
  color: var(--blue-bright);
}

.dual-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.dual-hero__media,
.dual-hero__shade {
  position: absolute;
  inset: 0;
}

.dual-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% 38%;
}

.dual-hero__shade {
  background: linear-gradient(90deg, rgba(14, 25, 31, 0.97) 0%, rgba(14, 25, 31, 0.82) 47%, rgba(14, 25, 31, 0.18) 100%);
}

.dual-hero__content {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(72px, 9vw, 128px) 40px;
}

.dual-hero h1,
.identity-hero h1,
.topic-hero h1,
.blog-hub__header h1,
.about-v2__hero h1,
.music-hero h1 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.8vw, 116px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.dual-hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 5.4vw, 96px);
}

.dual-hero h1 em,
.identity-hero h1 em,
.topic-hero h1 em,
.blog-hub__header h1 em,
.about-v2__hero h1 em,
.music-hero h1 em,
.home-manifesto h2 em,
.principles h2 em,
.topic-thesis h2 em,
.music-manifesto h2 em,
.linkedin-callout h2 em {
  color: var(--sky);
  font-family: var(--font-body);
  font-weight: 420;
}

.dual-hero__intro {
  max-width: 600px;
  margin: 32px 0 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.48;
}

.identity-gates {
  display: grid;
  width: min(880px, 100%);
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
}

.identity-gate {
  position: relative;
  display: grid;
  min-height: 224px;
  align-content: end;
  gap: 8px;
  padding: 28px;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease;
}

.identity-gate--professional {
  color: var(--ink);
  background: var(--white);
}

.identity-gate--creative {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(15, 29, 36, 0.72);
  backdrop-filter: blur(9px);
}

.identity-gate:hover {
  color: var(--white);
  background: var(--blue-bright);
}

.identity-gate__index {
  position: absolute;
  top: 24px;
  left: 28px;
  font: 700 12px/1 var(--font-display);
}

.identity-gate strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.identity-gate i,
.path-card i,
.blog-paths i {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-style: normal;
}

.home-manifesto,
.principles,
.music-manifesto,
.topic-thesis {
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 128px);
}

.home-manifesto__body h2,
.principles__intro h2,
.music-manifesto__body h2,
.topic-thesis__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.home-manifesto__body > div,
.principles__intro > p,
.music-manifesto__body > p,
.topic-thesis__body > p {
  max-width: 720px;
  margin: 48px 0 0 auto;
  font-size: clamp(19px, 1.65vw, 24px);
}

.editorial-paths,
.topic-articles,
.about-v2__values {
  background: var(--paper-deep);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.path-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease;
}

.path-card:last-child { border-right: 0; }
.path-card > span { position: absolute; top: 28px; left: 32px; font: 700 12px/1 var(--font-display); }
.path-card h3 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(34px, 3.2vw, 52px); letter-spacing: -0.055em; line-height: 0.98; }
.path-card p { max-width: 330px; margin: 0; }
.path-card:hover { color: var(--white); background: var(--blue); }
.path-card--ai:hover { background: var(--blue-bright); }
.path-card--design:hover { color: var(--ink); background: var(--sky); }

.linkedin-callout,
.topic-bridge {
  color: var(--white);
  background: var(--blue);
}

.linkedin-callout__inner,
.topic-bridge__inner {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr) minmax(220px, 0.35fr);
  align-items: end;
  gap: clamp(32px, 6vw, 88px);
}

.linkedin-callout h2,
.topic-bridge h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.7vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.linkedin-callout__inner > p:not(.section-index) { grid-column: 2; max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.76); }
.linkedin-callout .button { grid-column: 3; grid-row: 1 / span 2; }

.identity-hero,
.about-v2__hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .76fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  padding-block: clamp(72px, 9vw, 130px);
}

.identity-hero__lead,
.about-v2__copy > p,
.blog-hub__header > p,
.topic-hero__intro > p {
  max-width: 680px;
  margin: 34px 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.7vw, 24px);
}

.identity-hero__portrait,
.about-v2__portrait {
  margin: 0;
}

.identity-hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.identity-hero__portrait figcaption {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  font: 700 11px/1.2 var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.principles__intro { grid-column: 2; }
.principle-grid { display: grid; grid-column: 2; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--line); }
.principle-card { min-height: 310px; padding: 28px; border-right: 1px solid var(--line); }
.principle-card:last-child { border-right: 0; }
.principle-card > span { font: 700 12px/1 var(--font-display); color: var(--blue-bright); }
.principle-card h3 { margin: 96px 0 16px; font-family: var(--font-display); font-size: 34px; letter-spacing: -.04em; }
.principle-card p { margin: 0; color: var(--ink-soft); }

.method-band { color: var(--white); background: var(--ink); }
.method-band__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 9vw, 150px); }
.method-band h2 { margin: 24px 0 0; font-family: var(--font-display); font-size: clamp(48px, 5.6vw, 78px); letter-spacing: -.06em; line-height: .96; }
.method-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.method-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.method-list li > span { font: 700 12px/1 var(--font-display); color: var(--sky); }
.method-list strong { font-family: var(--font-display); font-size: 28px; }
.method-list p { margin: 7px 0 0; color: rgba(255,255,255,.7); }

.topic-hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: clamp(48px, 9vw, 140px);
  padding-block: clamp(80px, 11vw, 160px);
}

.topic-hero__intro { padding-bottom: 8px; }
.topic-hub--ai .topic-hero { color: var(--white); background: transparent; }
.topic-hub--ai { background: var(--ink); }
.topic-hub--ai .breadcrumbs { color: var(--white); }
.topic-hub--ai .topic-hero__intro > p { color: rgba(255,255,255,.72); }
.topic-hub--ai .topic-thesis { color: var(--ink); background: var(--paper); }
.topic-hub--ai .topic-articles { color: var(--ink); }
.topic-hub--design .topic-hero { border-bottom: 20px solid var(--sky); }
.topic-thesis__body { grid-column: 2; }
.topic-bridge__inner { align-items: center; }
.topic-bridge .button { justify-self: end; }

.blog-hub__header {
  max-width: 1100px;
  padding-block: clamp(80px, 11vw, 150px) 72px;
}

.blog-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-paths a {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.blog-paths a:last-child { border-right: 0; }
.blog-paths span { font: 700 11px/1 var(--font-display); color: var(--blue-bright); }
.blog-paths strong { padding-right: 20px; font-family: var(--font-display); font-size: 21px; line-height: 1.1; }
.blog-paths a:hover { color: var(--white); background: var(--blue); }
.blog-archive .section-heading .search-form { width: min(100%, 430px); }

.about-v2__portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-v2__identities { display: grid; grid-template-columns: minmax(140px,.25fr) minmax(0,1fr); gap: clamp(48px,8vw,128px); }
.about-v2__identities-body h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px,6vw,88px); letter-spacing: -.065em; line-height: .96; }
.identity-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 64px; border-top: 1px solid var(--line); }
.identity-columns article { min-height: 350px; padding: 30px; border-right: 1px solid var(--line); }
.identity-columns article:last-child { border-right: 0; }
.identity-columns article > span { font: 700 11px/1 var(--font-display); color: var(--blue-bright); letter-spacing: .1em; text-transform: uppercase; }
.identity-columns h3 { margin: 80px 0 18px; font-family: var(--font-display); font-size: 34px; letter-spacing: -.04em; }

.music-hero { position: relative; min-height: calc(100svh - var(--header-height)); color: var(--white); overflow: hidden; }
.music-hero__image,.music-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.music-hero__image { object-fit: cover; object-position: center; }
.music-hero__shade { background: linear-gradient(90deg,rgba(9,18,23,.94),rgba(9,18,23,.68) 45%,rgba(9,18,23,.12)); }
.music-hero__content { position: relative; display: flex; min-height: calc(100svh - var(--header-height)); flex-direction: column; justify-content: center; align-items: flex-start; }
.music-hero h1 { font-size: clamp(72px,10vw,148px); }
.music-hero__content > p { max-width: 660px; margin: 34px 0; color: rgba(255,255,255,.8); font-size: clamp(19px,1.7vw,24px); }
.music-hero__actions { display: flex; align-items: center; gap: 24px; }

.single .breadcrumbs { padding-top: 30px; }

@media (max-width: 1100px) {
  .dual-hero__shade { background: linear-gradient(90deg,rgba(14,25,31,.96),rgba(14,25,31,.7)); }
  .identity-hero,.about-v2__hero { grid-template-columns: 1fr .72fr; gap: 44px; }
  .linkedin-callout__inner,.topic-bridge__inner { grid-template-columns: 120px 1fr; }
  .linkedin-callout .button,.topic-bridge .button { grid-column: 2; grid-row: auto; justify-self: start; }
  .linkedin-callout__inner > p:not(.section-index) { grid-column: 2; }
}

@media (max-width: 820px) {
  .identity-gates,.path-grid,.principle-grid,.blog-paths { grid-template-columns: 1fr 1fr; }
  .path-card { min-height: 320px; border-bottom: 1px solid var(--line); }
  .path-card:last-child { grid-column: 1 / -1; }
  .home-manifesto,.principles,.music-manifesto,.topic-thesis,.about-v2__identities { grid-template-columns: 1fr; gap: 28px; }
  .principles__intro,.principle-grid,.topic-thesis__body { grid-column: 1; }
  .identity-hero,.about-v2__hero { grid-template-columns: 1fr; }
  .identity-hero__portrait,.about-v2__portrait { width: min(620px,100%); }
  .method-band__grid,.topic-hero { grid-template-columns: 1fr; }
  .topic-hero { min-height: auto; }
  .linkedin-callout__inner,.topic-bridge__inner { grid-template-columns: 1fr; }
  .linkedin-callout .button,.topic-bridge .button,.linkedin-callout__inner > p:not(.section-index) { grid-column: 1; }
  .blog-paths a:nth-child(2) { border-right: 0; }
}

@media (max-width: 620px) {
  .dual-hero__media { height: 440px; bottom: auto; }
  .dual-hero__media img { object-position: 50% 38%; }
  .dual-hero__shade { background: linear-gradient(180deg,rgba(14,25,31,.2) 0,rgba(14,25,31,.48) 260px,rgba(14,25,31,.98) 440px,rgba(14,25,31,.98) 100%); }
  .dual-hero__content { justify-content: flex-start; padding-top: 340px; }
  .dual-hero h1,.identity-hero h1,.topic-hero h1,.blog-hub__header h1,.about-v2__hero h1 { font-size: clamp(48px,14vw,66px); }
  .dual-hero__intro { font-size: 17px; }
  .identity-gates,.path-grid,.principle-grid,.blog-paths,.identity-columns { grid-template-columns: 1fr; }
  .identity-gate { min-height: 172px; }
  .path-card,.principle-card,.identity-columns article { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .path-card:last-child { grid-column: auto; }
  .principle-card h3,.identity-columns h3 { margin-top: 62px; }
  .blog-paths a { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-manifesto__body h2,.principles__intro h2,.music-manifesto__body h2,.topic-thesis__body h2 { font-size: clamp(42px,12vw,58px); }
  .home-manifesto__body > div,.principles__intro > p,.music-manifesto__body > p,.topic-thesis__body > p { margin-top: 28px; font-size: 18px; }
  .identity-hero,.about-v2__hero { min-height: auto; padding-block: 56px 88px; }
  .identity-hero__copy .button { width: 100%; }
  .music-hero__actions { width: 100%; align-items: stretch; flex-direction: column; }
  .music-hero__actions .button { width: 100%; }
  .breadcrumbs { overflow: hidden; }
}

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

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

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