:root {
  color-scheme: dark;
  --void: #050505;
  --black: #0b0c0c;
  --ink: #111111;
  --ivory: #f3efe6;
  --muted: #aaa295;
  --bronze: #c7832e;
  --bronze-dark: #8e561d;
  --line: rgba(243, 239, 230, 0.16);
  --line-dark: rgba(17, 17, 17, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3,
span,
strong,
li {
  overflow-wrap: anywhere;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--ivory);
  color: var(--ink);
  animation: loaderOut 1.1s cubic-bezier(0.77, 0, 0.18, 1) 0.9s forwards;
}

.intro-loader span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.8;
}

.intro-loader small {
  position: absolute;
  margin-top: 120px;
  color: var(--bronze-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

@keyframes loaderOut {
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 180px 1fr 310px;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 58px);
  border-bottom: 1px solid rgba(243, 239, 230, 0.11);
  color: var(--ivory);
  mix-blend-mode: normal;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-solid {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  line-height: 1;
  width: max-content;
  text-transform: uppercase;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a::before,
.nav a::after {
  color: var(--bronze);
}

.nav a::before {
  content: "[";
  margin-right: 4px;
}

.nav a::after {
  content: "]";
  margin-left: 4px;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.sound-toggle,
.language,
.phone-stack {
  min-height: 40px;
  border: 1px solid rgba(243, 239, 230, 0.24);
  background: rgba(243, 239, 230, 0.06);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
}

.sound-toggle {
  min-width: 82px;
  padding: 0 12px;
  gap: 9px;
  cursor: pointer;
}

.sound-label {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sound-meter {
  width: 16px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.sound-meter i {
  width: 2px;
  height: 4px;
  display: block;
  background: var(--bronze);
  transform-origin: center;
}

.sound-toggle.is-playing .sound-meter i {
  animation: soundPulse 0.72s ease-in-out infinite alternate;
}

.sound-toggle.is-playing .sound-meter i:nth-child(2) {
  animation-delay: -0.28s;
}

.sound-toggle.is-playing .sound-meter i:nth-child(3) {
  animation-delay: -0.5s;
}

@keyframes soundPulse {
  from {
    height: 4px;
  }

  to {
    height: 14px;
  }
}

.language {
  width: 48px;
  cursor: pointer;
}

.phone-stack {
  min-width: 112px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.phone-stack .phone {
  min-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 10px;
  line-height: 1;
}

.phone-stack .phone + .phone {
  border-top: 1px solid rgba(243, 239, 230, 0.18);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--void);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 78%;
  transform: translateY(var(--parallax, 0px)) scale(1.02);
  transform-origin: center 78%;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.42) 48%, rgba(5, 5, 5, 0.7)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 112px clamp(16px, 5vw, 70px) 44px;
}

.supreme-label,
.section-code {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 980px;
  font-size: clamp(82px, 15vw, 230px);
  line-height: 0.72;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--bronze);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(38px, 6vw, 94px);
  font-weight: 400;
  transform: translateX(clamp(18px, 12vw, 190px));
}

.hero-bottom {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-bottom p {
  margin: 0;
  color: rgba(243, 239, 230, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-bottom a,
.location-copy a,
.contact-copy a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--void);
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 4vw, 58px);
  bottom: 42px;
  width: min(380px, calc(100% - 32px));
  display: grid;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(18px);
}

.hero-index span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-index span:last-child {
  border-bottom: 0;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 18px 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 58px);
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(16px, 5vw, 70px);
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.76fr);
  gap: clamp(28px, 8vw, 112px);
  background: var(--ivory);
  color: var(--ink);
}

.manifesto h2,
.section-heading h2,
.location-copy h2,
.contact-copy h2 {
  font-size: clamp(42px, 7vw, 106px);
  line-height: 0.9;
}

.manifesto-copy p,
.location-copy p {
  margin: 0;
  color: #4b4740;
  font-size: 18px;
  line-height: 1.7;
}

.manifesto-copy dl {
  margin: 42px 0 0;
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.manifesto-copy dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.manifesto-copy dt {
  color: var(--bronze-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
}

.manifesto-copy dd {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1px;
  min-height: 74svh;
  background: var(--line);
}

.cinema-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.cinema-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.18, 0.8, 0.22, 1);
}

.cinema-strip figure:hover img {
  transform: scale(1.05);
}

.cinema-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.typologies,
.downloads {
  background: var(--void);
  color: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) 1fr;
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 70px);
}

.downloads .section-heading h2,
.typologies .section-heading h2,
.material-section .section-heading h2,
.location-copy h2 {
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.type-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.type-table article {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 46px);
  background: #101111;
}

.type-table article.featured {
  background: var(--ivory);
  color: var(--ink);
}

.type {
  width: 62px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bronze);
  color: var(--void);
  font-weight: 900;
  font-size: 22px;
}

.type-table h3 {
  margin-top: 18px;
  font-size: 28px;
}

.type-table p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.featured p {
  color: #676054;
}

.type-table img {
  width: 100%;
  min-height: 340px;
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.type-table a {
  width: max-content;
  margin-top: 24px;
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.material-section {
  background: var(--ivory);
  color: var(--ink);
}

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

.material-grid article {
  min-height: 340px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.material-grid span {
  color: var(--bronze-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.material-grid h3 {
  margin-top: 72px;
  font-size: 27px;
}

.material-grid p {
  margin: 18px 0 0;
  color: #4b4740;
  line-height: 1.65;
}

.location {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.location-image {
  min-height: 680px;
  background: var(--ivory);
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 64px);
  background: var(--ivory);
  color: var(--ink);
}

.location-copy p {
  margin: 28px 0;
}

.location-copy a {
  width: max-content;
}

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

.download-list a {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.download-list a:hover {
  padding-left: 22px;
  background: var(--ivory);
  color: var(--ink);
}

.download-list span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 70px);
  line-height: 0.95;
}

.download-list strong {
  color: var(--bronze);
  font-size: 12px;
  text-transform: uppercase;
}

.contact {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 0;
  background: var(--void);
}

.contact img {
  position: relative;
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 0.72;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.22));
}

.contact-copy {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  width: min(960px, 100%);
  padding: clamp(58px, 8vw, 110px) clamp(16px, 5vw, 70px);
}

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-phones a {
  margin-top: 0;
}

footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px clamp(16px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-phones {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.18, 0.8, 0.22, 1);
}

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 170px 1fr;
  }

  .nav {
    display: none;
  }

  .header-tools {
    justify-content: end;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -24px 16px 34px;
  }

  .hero-bottom,
  .manifesto,
  .section-heading,
  .location {
    grid-template-columns: 1fr;
  }

  .cinema-strip,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .type-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .phone-stack {
    display: none;
  }

  .hero-content {
    padding: 96px 16px 32px;
  }

  .hero-image img {
    object-position: 72% 68%;
    transform-origin: 72% 76%;
  }

  h1 {
    font-size: clamp(64px, 24vw, 96px);
  }

  h1 span {
    transform: none;
  }

  .hero-bottom,
  .type-table article,
  footer {
    grid-template-columns: 1fr;
  }

  .footer-phones {
    justify-content: flex-start;
  }

  .hero-bottom a,
  .location-copy a,
  .contact-copy a {
    width: 100%;
    min-height: 54px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .section {
    padding: 58px 16px;
  }

  .manifesto h2,
  .section-heading h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .cinema-strip figure {
    min-height: 360px;
  }

  .type-table img {
    min-height: 260px;
  }

  .location-image {
    min-height: 390px;
  }
}

@media (max-width: 380px) {
  .sound-toggle {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .sound-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
