:root {
  --ink: #10100f;
  --paper: #f2f0e9;
  --orange: #ff7800;
  --line-dark: rgba(16, 16, 15, 0.2);
  --line-light: rgba(242, 240, 233, 0.24);
  --serif: "Libre Caslon Display", "Adobe Caslon Pro", "Baskerville", "Times New Roman", serif;
  --sans: "Ubuntu", system-ui, -apple-system, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gutter);
  color: var(--paper);
  transition: color 250ms ease, background 250ms ease, padding 250ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.8rem;
  color: var(--ink);
  background: rgba(242, 240, 233, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 2rem;
  height: 1.65rem;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 250ms ease;
}

.brand-mark-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-mark-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-mark-dark {
  opacity: 1;
}

.dot {
  color: var(--orange);
}

.brand-name {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3rem);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.contact-links a,
footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(8rem, 14vh, 11rem) var(--gutter) 2.5rem;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  top: 48%;
  right: -3vw;
  width: min(62vw, 48rem);
  height: auto;
  opacity: 0.045;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.eyebrow,
.section-number {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 12ch;
  margin-block: auto;
  padding-block: 7vh;
  font-size: clamp(4.4rem, 11vw, 10rem);
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-bottom p {
  max-width: 36rem;
  margin: 0;
  color: rgba(242, 240, 233, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.circle-link {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.circle-link:hover,
.circle-link:focus-visible {
  color: var(--ink);
  background: var(--orange);
}

.intro,
.productions,
.reasons,
.contact,
.service {
  padding: clamp(5rem, 11vw, 10rem) var(--gutter);
}

.section-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  opacity: 0.6;
}

.section-number span {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.intro-grid,
.productions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.intro h2,
.productions h2,
.service h2 {
  font-size: clamp(3.6rem, 7.5vw, 7.5rem);
}

.intro-copy {
  max-width: 35rem;
  padding-top: 0.4rem;
}

.intro-copy p,
.service-content > p,
.productions-heading > p {
  margin: 0;
  color: rgba(16, 16, 15, 0.66);
}

.intro-copy .lead {
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.4;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service {
  min-height: 52rem;
  border-top: 1px solid var(--line-dark);
}

.service:first-child {
  border-right: 1px solid var(--line-dark);
}

.service-dark {
  color: var(--paper);
  background: var(--ink);
  border-top-color: var(--line-light);
}

.service-content {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
}

.service h2 {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.service-content > p {
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.service-dark .service-content > p {
  color: rgba(242, 240, 233, 0.66);
}

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

.service-dark .plain-list {
  border-top-color: var(--line-light);
}

.plain-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-dark .plain-list li {
  border-bottom-color: var(--line-light);
}

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

.productions-heading > p {
  max-width: 27rem;
  padding-top: 0.5rem;
  font-size: 1.15rem;
}

.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: clamp(5rem, 10vw, 10rem) 0 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.formats li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.formats li:nth-child(3n + 2) {
  text-align: center;
}

.formats li:nth-child(3n) {
  text-align: right;
}

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

.reasons-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: baseline;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5.5rem);
  line-height: 1.06;
}

.reasons-list span {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

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

.contact {
  display: flex;
  min-height: 90svh;
  flex-direction: column;
}

.contact-content {
  margin: auto 0;
}

.contact h2 {
  margin: 0.2em 0 0.4em;
  font-size: clamp(4.5rem, 13vw, 13rem);
}

.contact h2 span {
  color: var(--paper);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem clamp(2rem, 8vw, 8rem);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
}

footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 16, 15, 0.35);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 1.5rem;
  }

  .hero-mark {
    top: 38%;
    right: -14vw;
    width: 100vw;
  }

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

  .hero-bottom {
    align-items: center;
  }

  .intro-grid,
  .productions-heading,
  .services {
    grid-template-columns: 1fr;
  }

  .intro h2,
  .productions h2,
  .service h2 {
    font-size: clamp(3.4rem, 14vw, 5.5rem);
  }

  .service {
    min-height: auto;
  }

  .service:first-child {
    border-right: 0;
  }

  .service-content {
    min-height: 30rem;
  }

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

  .formats li:nth-child(n) {
    text-align: left;
  }

  .formats li:nth-child(even) {
    text-align: right;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 0.68rem;
  }

  .hero-bottom p {
    max-width: 17rem;
    font-size: 0.92rem;
  }

  .circle-link {
    width: 3rem;
    height: 3rem;
  }

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

  .formats li:nth-child(n) {
    text-align: left;
  }

  .reasons-list li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .contact {
    min-height: 100svh;
  }

  .contact h2 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .contact-links {
    flex-direction: column;
    gap: 0.55rem;
  }
}

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

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

  .site-header,
  .circle-link {
    transition: none;
  }
}
