:root {
  --bg: #181818;
  --text-main: #ffbf00;
  --text-subpage-title: #604800;
  --accent: #009e86;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text-main);
  font-family: "Bebas Neue", sans-serif;
}

.page-shell {
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 3vw, 28px);
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  animation: page-reveal-in 220ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}

.page-shell.home-page {
  width: 100%;
  max-width: none;
  padding: clamp(24px, 4vw, 40px) clamp(10px, 2vw, 18px) clamp(6px, 0.9vw, 12px);
}

.home-page {
  display: grid;
  align-content: start;
  gap: 0;
}

.home-layout {
  display: grid;
  justify-items: start;
  grid-template-columns: minmax(270px, 388px) minmax(620px, 860px);
  gap: clamp(28px, 4.4vw, 62px);
  width: min(100%, 1290px);
  margin: 0;
  justify-content: space-between;
  align-items: start;
}

.home-sidebar {
  display: grid;
  gap: clamp(12px, 1.8vw, 16px);
  align-content: start;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1.main-title {
  color: var(--text-main);
  text-align: left;
  font-size: clamp(1.15rem, 4.9vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .main-title {
  justify-self: start;
  margin-top: -4px;
  opacity: 0;
  transform: translateY(8px);
  animation: home-reveal 680ms cubic-bezier(0.16, 1, 0.3, 1) 50ms forwards;
}

.main-nav {
  width: auto;
  justify-self: start;
  position: relative;
  padding-top: clamp(18px, 2vw, 24px);
}

.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(255, 191, 0, 0) 0%,
    rgba(255, 191, 0, 0.12) 18%,
    rgba(255, 191, 0, 0.12) 82%,
    rgba(255, 191, 0, 0) 100%
  );
  pointer-events: none;
}

.home-feature {
  width: min(100%, 860px);
  display: grid;
  gap: 0;
  justify-self: start;
  margin-top: clamp(76px, 7vw, 100px);
  opacity: 0;
  transform: translateY(10px);
  animation: home-reveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 250ms forwards;
}

.home-feature-layout {
  display: grid;
  grid-template-columns: minmax(366px, 430px) minmax(378px, 430px);
  gap: clamp(18px, 1.9vw, 22px);
  align-items: start;
}

.home-feature-visual {
  display: grid;
  gap: 8px;
  align-content: start;
}

.home-feature-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 191, 0, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.015);
}

.home-feature-credit {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.84rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.home-feature-credit-link {
  color: var(--accent);
  text-decoration: none;
}

.home-feature-credit-link:hover,
.home-feature-credit-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
  outline: none;
}

.home-feature-body {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 430px;
}

.home-feature-text {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.home-feature-body:not(.is-expanded) .home-feature-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0), rgba(24, 24, 24, 0.94));
  pointer-events: none;
}

.home-feature-actions {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.home-feature-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.home-feature-toggle:hover,
.home-feature-toggle:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
  outline: none;
}

.home-feature-toggle[hidden] {
  display: none;
}

.home-feature-lead,
.home-feature-copy {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.96rem, 1.2vw, 1.02rem);
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.home-feature-lead {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.28vw, 1.08rem);
}

.home-feature-highlight {
  color: var(--accent);
}

.home-feature-link {
  display: inline;
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--text-main);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.home-feature-link:hover,
.home-feature-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  outline: none;
}

.nav-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: clamp(6px, 0.95vw, 8px);
  text-align: left;
}

.home-page .nav-list li {
  opacity: 0;
  transform: translateY(8px);
  animation: home-reveal 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-page .nav-list li:nth-child(1) {
  animation-delay: 180ms;
}

.home-page .nav-list li:nth-child(2) {
  animation-delay: 250ms;
}

.home-page .nav-list li:nth-child(3) {
  animation-delay: 320ms;
}

.home-page .nav-list li:nth-child(4) {
  animation-delay: 390ms;
}

.home-page .nav-list li:nth-child(5) {
  animation-delay: 460ms;
}

.home-page .nav-list li:nth-child(6) {
  animation-delay: 530ms;
}

.home-page .nav-list li:nth-child(7) {
  animation-delay: 600ms;
}

.home-page .nav-list li:nth-child(8) {
  animation-delay: 670ms;
}

.home-page .nav-list li:nth-child(9) {
  animation-delay: 740ms;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: clamp(1.26rem, 1.98vw, 1.68rem);
  line-height: 1;
  letter-spacing: 0.1em;
}

.nav-link:hover,
.nav-link:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.nav-link--accent {
  text-decoration: none;
}

.subpage {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
}

.page-shell.subpage.news-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.page-shell.subpage.about-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.about-page {
  gap: clamp(18px, 3vw, 28px);
}

.about-content {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  width: min(100%, 700px);
}

.about-block {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}

.about-copy {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.about-subtitle {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.about-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 12px;
}

.about-list li {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 191, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--text-main);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.about-action-link:hover,
.about-action-link:focus-visible {
  border-color: rgba(0, 158, 134, 0.5);
  color: var(--accent);
  outline: none;
}

.page-shell.subpage.press-photos-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.press-photos-page {
  gap: clamp(18px, 3vw, 28px);
}

.press-photos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.press-photo-card {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  text-decoration: none;
}

.press-photo-card:hover,
.press-photo-card:focus-visible {
  border-color: rgba(0, 158, 134, 0.48);
  outline: none;
}

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

.press-lightbox[hidden] {
  display: none;
}

.press-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 24px);
}

.press-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 7, 7, 0.76);
  cursor: pointer;
}

.press-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 191, 0, 0.16);
  border-radius: 24px;
  background: rgba(24, 24, 24, 0.94);
}

.press-lightbox-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.press-lightbox-title {
  color: var(--text-main);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.press-lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.press-lightbox-link,
.press-lightbox-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 191, 0, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.press-lightbox-link:hover,
.press-lightbox-link:focus-visible,
.press-lightbox-button:hover,
.press-lightbox-button:focus-visible {
  border-color: rgba(0, 158, 134, 0.48);
  color: var(--accent);
  outline: none;
}

.press-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
}

.page-shell.subpage.discography-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.page-shell.subpage.live-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.news-page {
  gap: clamp(14px, 2.5vw, 22px);
}

.news-grid {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
}

.news-entry {
  width: 100%;
}

.news-entry-title--spacer {
  visibility: hidden;
}

.news-entry-title {
  color: var(--text-main);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-stack {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(16px, 2.5vw, 22px);
}

.news-page .news-stack > * {
  opacity: 0;
  transform: translateY(8px);
  animation: news-reveal 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.news-page .news-stack > *:nth-child(1) {
  animation-delay: 60ms;
}

.news-page .news-stack > *:nth-child(2) {
  animation-delay: 120ms;
}

.news-page .news-stack > *:nth-child(3) {
  animation-delay: 180ms;
}

.news-page .news-stack > *:nth-child(4) {
  animation-delay: 240ms;
}

.news-cover {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.news-release-title {
  color: var(--text-main);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.news-block {
  display: grid;
  gap: 10px;
}

.news-block-title {
  color: var(--accent);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-link-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.news-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.news-link:hover,
.news-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.news-note {
  color: var(--text-main);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.discography-note {
  color: var(--text-main);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.05em;
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: 0.06em;
}

.section-title {
  color: var(--text-subpage-title);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.follow-page {
  gap: clamp(18px, 3vw, 28px);
}

.support-page {
  gap: clamp(18px, 3vw, 28px);
}

.support-stack {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  width: min(100%, 460px);
}

.support-stack > * {
  opacity: 0;
  transform: translateY(8px);
  animation: support-reveal 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.support-stack > *:nth-child(1) {
  animation-delay: 70ms;
}

.support-stack > *:nth-child(2) {
  animation-delay: 150ms;
}

.support-card {
  display: grid;
  gap: 8px;
}

.support-kicker {
  color: var(--accent);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.support-kicker--secondary {
  color: rgba(0, 158, 134, 0.82);
}

.support-title {
  color: var(--text-main);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-title-link {
  color: inherit;
  text-decoration: none;
}

.support-title-link:hover,
.support-title-link:focus-visible {
  color: var(--accent);
  outline: none;
}

.support-note {
  color: rgba(255, 191, 0, 0.72);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  max-width: 30rem;
}

.page-shell.subpage.multilink-page {
  align-content: start;
  justify-items: center;
  padding-top: clamp(18px, 3vw, 28px);
}

.multilink-page {
  gap: clamp(16px, 2.5vw, 24px);
}

.multilink-hero {
  position: relative;
  width: min(100%, 372px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  background: #121212;
}

.multilink-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: translateY(4%) scale(1.08);
}

.multilink-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0.82) 0%,
    rgba(24, 24, 24, 0.58) 32%,
    rgba(24, 24, 24, 0.24) 72%,
    rgba(24, 24, 24, 0) 100%
  );
  pointer-events: none;
}

.multilink-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64%;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0) 0%,
    rgba(24, 24, 24, 0.22) 22%,
    rgba(24, 24, 24, 0.82) 66%,
    #181818 100%
  );
  pointer-events: none;
}

.multilink-hero-copy {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 1;
  display: grid;
  gap: 3px;
  width: calc(100% - 24px);
  justify-items: center;
  text-align: center;
}

.multilink-artist-title {
  color: #ffffff;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.15rem, 7.9vw, 3.9rem);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: 0.022em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.multilink-artist-title span {
  display: block;
  width: 100%;
}

.multilink-artist-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.84rem, 1.7vw, 0.94rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  margin: 0;
}

.multilink-bio {
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 10px;
}

.multilink-bio-copy {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.96rem, 1.45vw, 1.02rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0;
}

.multilink-bio:not(.is-expanded) .multilink-bio-copy {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.multilink-bio-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.multilink-bio-toggle:hover,
.multilink-bio-toggle:focus-visible {
  color: var(--text-main);
  outline: none;
}

.multilink-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.8vw, 16px);
  width: min(100%, 360px);
}

.multilink-item {
  opacity: 0;
  transform: translateY(8px);
  animation: support-reveal 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.multilink-item:nth-child(1) {
  animation-delay: 70ms;
}

.multilink-item:nth-child(2) {
  animation-delay: 140ms;
}

.multilink-item:nth-child(3) {
  animation-delay: 210ms;
}

.multilink-item:nth-child(4) {
  animation-delay: 280ms;
}

.multilink-item:nth-child(5) {
  animation-delay: 350ms;
}

.multilink-item:nth-child(6) {
  animation-delay: 420ms;
}

.multilink-item:nth-child(7) {
  animation-delay: 490ms;
}

.multilink-link {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(58px, 8vw, 72px);
  padding: 16px 18px;
  border: 1px solid rgba(255, 191, 0, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--text-main);
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.multilink-link:hover,
.multilink-link:focus-visible {
  border-color: rgba(0, 158, 134, 0.5);
  background: rgba(255, 255, 255, 0.025);
  color: var(--accent);
  outline: none;
}

.multilink-link--primary {
  border-color: rgba(255, 191, 0, 0.38);
  color: var(--text-main);
  font-size: clamp(1.32rem, 2.7vw, 1.7rem);
  letter-spacing: 0.06em;
}

.multilink-link--featured {
  border-color: rgba(0, 158, 134, 0.28);
  font-size: clamp(1.2rem, 2.35vw, 1.52rem);
}

.page-shell.subpage.contact-page {
  align-content: start;
  padding-top: clamp(18px, 3vw, 28px);
}

.contact-page {
  gap: clamp(18px, 3vw, 28px);
}

.contact-form {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  width: min(100%, 560px);
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-label {
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid rgba(255, 191, 0, 0.34);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 14px 16px;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder,
.contact-success-copy {
  color: rgba(255, 255, 255, 0.82);
}

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

.contact-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  justify-self: start;
  border: 1px solid var(--text-main);
  background: transparent;
  color: var(--text-main);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.contact-success-copy {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 34rem;
}

.contact-success-link {
  color: var(--accent);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.contact-success-link:hover,
.contact-success-link:focus-visible {
  color: var(--text-main);
  outline: none;
}

.follow-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: clamp(10px, 2vw, 16px);
}

.follow-item {
  opacity: 0;
  transform: translateY(8px);
  animation: follow-reveal 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.follow-item:nth-child(2) {
  animation-delay: 90ms;
}

.follow-item:nth-child(3) {
  animation-delay: 180ms;
}

.follow-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.follow-link:hover,
.follow-link:focus-visible {
  color: var(--accent);
  outline: none;
}

@keyframes follow-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-reveal-in {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes news-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes support-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-shell {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .home-page .main-title,
  .home-page .nav-list li,
  .home-feature,
  .news-page .news-stack > *,
  .support-stack > *,
  .follow-item,
  .multilink-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 28px 18px;
  }

  .page-shell.home-page {
    padding: 24px 12px;
  }

  .home-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .main-nav {
    padding-top: 18px;
  }

  .home-feature {
    width: 100%;
    max-width: 560px;
    margin-top: 0;
  }

  .home-feature-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-feature-visual {
    max-width: 340px;
  }

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

  .news-entry-title--spacer {
    display: none;
  }
}
