:root {
  color-scheme: dark;
  --ink: #f5f3ea;
  --muted: #c8c9b7;
  --soft: rgba(245, 243, 234, 0.72);
  --black: #07100d;
  --forest: #12392a;
  --moss: #74a65a;
  --gold: #f2bb5c;
  --coral: #e97155;
  --aqua: #63b7ad;
  --line: rgba(245, 243, 234, 0.18);
  --panel: rgba(7, 16, 13, 0.62);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 13% 17%, rgba(233, 113, 85, 0.2), transparent 24rem),
    radial-gradient(circle at 85% 42%, rgba(99, 183, 173, 0.16), transparent 28rem),
    linear-gradient(180deg, #07100d 0%, #132019 52%, #0c1411 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--black);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
  color: var(--ink);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 13, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.menu-active {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.5rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(245, 243, 234, 0.52);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(242, 187, 92, 0.96), rgba(233, 113, 85, 0.12)),
    radial-gradient(circle at 62% 36%, rgba(99, 183, 173, 0.9), transparent 0.55rem);
  box-shadow: 0 0 0 4px rgba(245, 243, 234, 0.04);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(7, 16, 13, 0.92);
}

.brand-mark::before {
  width: 1.15rem;
  height: 0.12rem;
  left: 0.42rem;
  top: 0.94rem;
  transform: rotate(-32deg);
}

.brand-mark::after {
  width: 0.34rem;
  height: 0.34rem;
  left: 1.22rem;
  top: 0.58rem;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.8rem 0;
  color: rgba(245, 243, 234, 0.78);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(245, 243, 234, 0.26);
  border-radius: 50%;
  background: rgba(7, 16, 13, 0.36);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.24rem auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 82vh;
  isolation: isolate;
  overflow: hidden;
  place-items: center;
  padding: clamp(7rem, 10vw, 10rem) 1.25rem clamp(4.5rem, 9vw, 7rem);
}

.hero-visual,
.hero-visual img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: -3;
  transform: scale(1.018);
}

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

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.78), rgba(7, 16, 13, 0.1) 34%, rgba(7, 16, 13, 0.74)),
    linear-gradient(180deg, rgba(7, 16, 13, 0.68) 0%, rgba(7, 16, 13, 0.18) 42%, rgba(7, 16, 13, 0.82) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 12rem;
  background: linear-gradient(180deg, transparent, #07100d);
}

.hero-content {
  width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(4.25rem, 13vw, 12.5rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1.2rem 4.5rem rgba(0, 0, 0, 0.55);
}

.hero-copy {
  width: min(100%, 650px);
  margin: clamp(1.2rem, 3vw, 2rem) auto 0;
  color: rgba(245, 243, 234, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  border: 1px solid rgba(245, 243, 234, 0.26);
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: var(--ink);
  color: var(--black);
}

.button-ghost {
  background: rgba(7, 16, 13, 0.25);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(242, 187, 92, 0.8);
}

.play-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.32rem rgba(233, 113, 85, 0.16);
}

.hero-meta {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1.4rem, 4vw, 2.4rem);
  display: flex;
  gap: 0.45rem;
  align-items: flex-end;
  writing-mode: vertical-rl;
}

.hero-meta span {
  border-left: 1px solid rgba(245, 243, 234, 0.24);
  padding-left: 0.48rem;
  color: rgba(245, 243, 234, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  width: 1px;
  height: 4rem;
  overflow: hidden;
  background: rgba(245, 243, 234, 0.18);
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 42%;
  background: var(--gold);
  animation: cue 1.7s ease-in-out infinite;
}

.section-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.intro-section,
.films-section,
.studio-section,
.craft-section,
.contact-section {
  position: relative;
  padding: clamp(4.8rem, 10vw, 9rem) 0;
}

.intro-section {
  margin-top: -1px;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(7, 16, 13, 0.98), rgba(16, 39, 29, 0.96)),
    radial-gradient(circle at 72% 0%, rgba(242, 187, 92, 0.22), transparent 34rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(2.25rem, 6vw, 5.3rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.news-hero {
  position: relative;
  display: grid;
  min-height: 58vh;
  overflow: hidden;
  align-items: end;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(3rem, 7vw, 5rem);
  isolation: isolate;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.9), rgba(7, 16, 13, 0.44)),
    linear-gradient(180deg, rgba(7, 16, 13, 0.44), #07100d);
}

.news-hero-visual,
.news-hero-visual img {
  position: absolute;
  inset: 0;
}

.news-hero-visual {
  z-index: -2;
}

.news-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.news-hero-content {
  position: relative;
  z-index: 1;
}

.news-hero h1 {
  margin: 0;
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-hero p:last-child {
  width: min(100%, 660px);
  margin: 1.4rem 0 0;
  color: rgba(245, 243, 234, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.news-section {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(5rem, 10vw, 9rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(99, 183, 173, 0.15), transparent 26rem),
    linear-gradient(180deg, #07100d, #101812 100%);
}

.news-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.news-index {
  position: sticky;
  top: 6.4rem;
  min-width: 0;
}

.news-index-heading {
  margin-bottom: 1.2rem;
}

.news-index h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
}

.news-filter button {
  min-height: 2.4rem;
  border: 1px solid rgba(245, 243, 234, 0.18);
  border-radius: 999px;
  background: rgba(245, 243, 234, 0.04);
  color: rgba(245, 243, 234, 0.76);
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.news-filter button:hover,
.news-filter button:focus-visible,
.news-filter button.is-active {
  border-color: rgba(242, 187, 92, 0.72);
  background: rgba(242, 187, 92, 0.12);
  color: var(--ink);
}

.news-list {
  display: grid;
  max-height: calc(100vh - 17rem);
  overflow: auto;
  border-top: 1px solid var(--line);
  scrollbar-color: rgba(242, 187, 92, 0.78) rgba(245, 243, 234, 0.08);
}

.news-list-item {
  display: grid;
  gap: 0.45rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.2rem 1rem 0;
  color: rgba(245, 243, 234, 0.8);
}

.news-list-item span,
.news-reader-meta span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-list-item strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.news-list-item small {
  color: rgba(245, 243, 234, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.news-list-item:hover,
.news-list-item:focus-visible,
.news-list-item.is-active {
  color: var(--ink);
}

.news-list-item.is-active strong {
  color: var(--gold);
}

.news-reader {
  min-height: 40rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 243, 234, 0.07), rgba(245, 243, 234, 0.025)),
    rgba(7, 16, 13, 0.62);
  padding: clamp(1.4rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
}

.news-reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-bottom: 1rem;
}

.news-reader h2 {
  max-width: 48rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.news-reader p {
  max-width: 46rem;
  margin: 0;
  color: rgba(245, 243, 234, 0.78);
  font-size: 1.02rem;
  line-height: 1.85;
}

.news-reader p + p {
  margin-top: 1rem;
}

.news-reader-note {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: rgba(245, 243, 234, 0.56) !important;
  font-size: 0.88rem !important;
}

.news-source-link {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.intro-copy,
.craft-copy > p,
.studio-item p,
.contact-panel p,
.film-card p {
  color: var(--soft);
  line-height: 1.75;
}

.intro-copy {
  grid-column: 2;
  width: min(100%, 620px);
  margin: 0;
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(1.25rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
  align-items: end;
}

.films-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(99, 183, 173, 0.16), transparent 29rem),
    linear-gradient(180deg, #10271d 0%, #07100d 72%);
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.24fr) minmax(0, 0.88fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: end;
}

.film-card {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 234, 0.14);
  border-radius: 8px;
  background: #0d1814;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 36rem;
}

.film-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.film-card:hover img {
  transform: scale(1.045);
}

.film-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 16, 13, 0.92));
}

.film-card-text {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  z-index: 1;
}

.film-card span,
.studio-item span,
.contact-panel span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.film-card h3,
.studio-item h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.film-card p {
  margin: 0;
}

.studio-section {
  background:
    linear-gradient(180deg, #07100d, #111610),
    radial-gradient(circle at 84% 28%, rgba(233, 113, 85, 0.16), transparent 34rem);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.sticky-heading {
  position: sticky;
  top: 7rem;
  display: block;
  align-self: start;
  margin: 0;
}

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

.studio-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.6rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.studio-item h3 {
  font-family:
    Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 500;
}

.studio-item p {
  max-width: 36rem;
  margin: 0;
}

.craft-section {
  background:
    radial-gradient(circle at 0% 65%, rgba(116, 166, 90, 0.18), transparent 30rem),
    linear-gradient(180deg, #111610, #0b1514 78%);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.craft-image {
  min-height: 35rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-image img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
}

.craft-copy > p {
  max-width: 35rem;
  margin: 1.3rem 0 0;
  font-size: 1.04rem;
}

.metrics {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.metrics div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.metrics dt {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.metrics dd {
  margin: 0;
  color: rgba(245, 243, 234, 0.82);
  font-weight: 700;
}

.contact-section {
  background:
    radial-gradient(circle at 60% 20%, rgba(242, 187, 92, 0.18), transparent 25rem),
    linear-gradient(180deg, #0b1514, #07100d);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: clamp(1.6rem, 6vw, 5rem);
  align-items: end;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.contact-panel a {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-panel p {
  margin: 0 0 2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem);
  background: #07100d;
  color: rgba(245, 243, 234, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  transform: translateY(1.4rem);
  opacity: 0;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
}

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

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

.intro-section .reveal {
  transform: none;
  opacity: 1;
}

@keyframes cue {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(250%);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-block: 0.75rem;
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.7rem;
    width: 100vw;
    height: 100svh;
    transform: translateY(-100%);
    background:
      radial-gradient(circle at 50% 15%, rgba(242, 187, 92, 0.14), transparent 20rem),
      rgba(7, 16, 13, 0.96);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

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

  .hero {
    min-height: 82vh;
  }

  .hero-title {
    font-size: clamp(3rem, 15.5vw, 6.25rem);
  }

  .hero-meta {
    right: auto;
    bottom: 1.2rem;
    left: 1rem;
    writing-mode: horizontal-tb;
    flex-wrap: wrap;
    align-items: center;
    max-width: calc(100% - 6rem);
  }

  .hero-meta span {
    border-left: 0;
    border-top: 1px solid rgba(245, 243, 234, 0.24);
    padding: 0.4rem 0 0;
  }

  .scroll-cue {
    left: auto;
    right: 1.6rem;
    height: 3.4rem;
  }

  .intro-grid,
  .section-heading,
  .studio-grid,
  .craft-grid,
  .contact-grid,
  .news-shell {
    grid-template-columns: 1fr;
  }

  .news-index {
    position: static;
  }

  .news-list {
    max-height: none;
  }

  .intro-copy {
    grid-column: auto;
  }

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

  .film-card,
  .feature-card {
    min-height: 25rem;
  }

  .sticky-heading {
    position: static;
  }

  .craft-image,
  .craft-image img {
    min-height: 24rem;
  }
}

@media (max-width: 560px) {
  .brand-lockup {
    gap: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .brand-mark {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero {
    min-height: 82vh;
    padding-inline: 1rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .news-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .news-reader {
    min-height: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 19rem);
    margin-inline: auto;
  }

  .button {
    width: 100%;
    border-radius: 8px;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .studio-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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