/* Classic: symmetry, the script logo as the hero, small-caps serif labels, brass ornaments. */

:root {
  --ink: #0c0a08;
  --soot: #171310;
  --bone: #ece4d6;
  --brass: #cba468;
  --brass-dim: #96773f;
  --hair: rgba(203, 164, 104, 0.22);
  --hair-soft: rgba(203, 164, 104, 0.12);
}

.label {
  font-family: var(--serif);
  font-variant: small-caps;
  text-transform: none;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  color: var(--brass);
}

.rule {
  display: block;
  position: relative;
  width: 12rem;
  height: 1px;
  margin: 1.8rem auto;
  background: linear-gradient(to right, transparent, var(--brass-dim) 25%, var(--brass-dim) 75%, transparent);
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  translate: -50% -50%;
  rotate: 45deg;
  background: var(--brass);
}

.nav--classic { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav--classic .nav__links { order: -1; justify-self: start; }
.nav--classic .nav__cta { justify-self: end; }
.nav--classic .nav__logo { height: 2.4rem; }
@media (max-width: 860px) {
  .nav--classic { display: flex; }
  .nav--classic .nav__links { order: 0; justify-self: stretch; justify-items: center; text-align: center; }
  .nav.is-open .nav__cta { display: block; position: fixed; left: 50%; bottom: 12vh; translate: -50% 0; z-index: 1; }
  /* backdrop-filter would turn the bar into the containing block of the fixed menu panel */
  .nav.is-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: transparent; border-bottom-color: transparent; }
  .tt { height: 230vh; }
  :root { --stack: 3rem; }
  .manifesto { padding-top: 2rem; }
  .about { padding-top: 1.5rem; }
}

.hero { place-items: center; text-align: center; }
.hero__inner { max-width: 46rem; display: grid; justify-items: center; }
.hero__logo { width: min(70vw, 30rem); height: auto; filter: drop-shadow(0 0 40px rgba(12, 10, 8, 0.9)); }
.hero__title { margin-bottom: 0; }
.hero__actions { justify-content: center; }
.hero__photo {
  inset: 0;
  width: 100%;
  opacity: 0.42;
  object-position: 50% 35%;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 100%);
}
.hero__halo { left: 50%; top: 45%; }
.hero__scroll { left: 50%; translate: -50% 0; justify-items: center; }

.manifesto { text-align: center; }
.manifesto__cols { margin-inline: auto; text-align: left; }

.section-head { text-align: center; }
.section-head .rule { margin-bottom: 0; }

.card__img { border: 1px solid var(--hair); outline: 1px solid var(--hair-soft); outline-offset: 6px; }
.about__photo { border: 1px solid var(--hair); outline: 1px solid var(--hair-soft); outline-offset: 6px; }

.quote p { font-style: italic; }
.quote cite::before, .quote cite::after { content: " — "; color: var(--brass-dim); }

.collabs { text-align: center; }

.footer { text-align: center; }
.footer__cols { justify-content: center; text-align: center; }

.hero { padding-bottom: 10rem; }
.hero__scroll { bottom: 2rem; }

.nav__logo--emblem { height: 2.8rem; filter: sepia(1) saturate(0.7) brightness(1.15); }

/* desktop: instrument centred, each caption anchored beside the part it describes */
@media (min-width: 861px) {
  .tt__ring { left: 50%; }
  .tt__steps { position: absolute; inset: 0; width: auto; align-self: auto; }
  .tt__step {
    inset: auto;
    width: min(22rem, 30vw);
    translate: none;
    padding-left: 2.2rem;
  }
  .tt__step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 1.4rem;
    height: 1px;
    background: var(--brass-dim);
  }
  .tt__step--neck { left: 60%; top: 20%; }
  .tt__step--side { left: auto; right: 54%; top: 44%; text-align: right; padding-left: 0; padding-right: 2.2rem; }
  .tt__step--side::before { left: auto; right: 0; }
  .tt__step--back { left: 62%; top: 62%; }
  .tt__meter { width: 26%; margin-left: auto; }
}

/* the turntable frames carry their own black: the section matches it and the canvas is
   screened onto it, so the ring underneath shows through wherever the frame is black */
.tt, .tt__sticky { background: #000; }
.tt__canvas { mix-blend-mode: screen; }
.tt__ring { border-color: rgba(203, 164, 104, 0.28); }
@media (max-width: 860px) { .tt__step { background: linear-gradient(to top, #000 55%, transparent); } }
