/* goofieseyes — shared token layer and chrome.
 *
 * Ported from the record-crate design brief. Palette and type are locked there.
 *
 * NAMESPACE CONTRACT: every selector in this file is `.gf-*`, `body.gf-body`,
 * or a descendant of one. Nothing here may use a bare element selector
 * (`body`, `h1`, `a`), because this stylesheet is loaded by pages that have not
 * been converted yet — a bare selector would restyle them instantly. Adding a
 * `gf-` class to a page is what opts it in.
 */

:root {
  --gf-paper: #f7f4ee;
  --gf-paper-2: #efeae1;
  --gf-ink: #12110f;
  --gf-ink-soft: #55524b;
  --gf-line: #d9d3c8;
  --gf-coral: #d8452f;
  --gf-sakura: #e7a3b8;
  --gf-chartreuse: #a8be4a;
  --gf-teal: #1f6f73;
  --gf-serif: "Instrument Serif", "Times New Roman", serif;
  --gf-sans: "Inter Tight", system-ui, sans-serif;
  --gf-mono: "IBM Plex Mono", ui-monospace, monospace;
  --gf-nav-h: 4.2rem;
}

body.gf-body {
  margin: 0;
  background-color: var(--gf-ink);
  color: var(--gf-ink);
  font-family: var(--gf-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.gf {
  font-family: var(--gf-sans);
  color: var(--gf-ink);
}

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

.gf ::selection {
  background: var(--gf-chartreuse);
  color: var(--gf-ink);
}

.gf :focus-visible {
  outline: 2px solid var(--gf-coral);
  outline-offset: 3px;
}

/* Skip link — the crate is a long scroll before any nav target. */
.gf-skip {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 0.8rem 1.2rem;
  background: var(--gf-paper);
  color: var(--gf-ink);
  font-family: var(--gf-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.gf-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- shared type ---------- */
.gf-meta {
  font-family: var(--gf-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gf-display {
  font-family: var(--gf-serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.gf-lede {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--gf-ink-soft);
}

/* ---------- fixed nav ---------- */
.gf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.6rem);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}

.gf-nav a,
.gf-nav span,
.gf-nav button {
  pointer-events: auto;
}

.gf-wordmark {
  font-family: var(--gf-serif);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: inherit;
}

.gf-nav-links {
  display: none;
  gap: 1.6rem;
}

@media (min-width: 800px) {
  .gf-nav-links {
    display: flex;
  }
}

.gf-nav-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.gf-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gf-nav-links a:hover::after,
.gf-nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.gf-nav-est {
  display: none;
}

@media (min-width: 800px) {
  .gf-nav-est {
    display: block;
  }
}

/* ---------- mobile nav ----------
 * The source design simply hides .gf-nav-links below 800px, leaving phones with
 * no navigation at all. This restores the hamburger the site already had.
 */
.gf-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

@media (min-width: 800px) {
  .gf-burger {
    display: none;
  }
}

.gf-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gf-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gf-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.gf-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 59;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--gf-paper);
}

.gf-mobile-menu.is-open {
  display: flex;
}

.gf-mobile-menu a {
  color: var(--gf-ink);
  text-decoration: none;
  font-family: var(--gf-serif);
  font-size: 1.8rem;
  line-height: 1;
}

.gf-mobile-menu a:hover {
  color: var(--gf-coral);
}

/* ---------- CTA garments (each its own interaction identity) ---------- */

/* catalogue tab — slides its underline rail right */
.gf-cta-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--gf-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentColor;
  overflow: hidden;
}

.gf-cta-tab svg {
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gf-cta-tab:hover svg {
  transform: translateX(0.5rem);
}

/* disc button — ring rotates on hover */
.gf-cta-disc {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--gf-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gf-ink);
  text-decoration: none;
}

.gf-cta-disc i {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid var(--gf-ink);
  position: relative;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gf-cta-disc i::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.5;
}

.gf-cta-disc i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--gf-coral);
}

.gf-cta-disc:hover i {
  transform: rotate(180deg);
}

/* sleeve-lip bar — lifts to reveal the pigment behind it */
.gf-cta-sleeve {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  font-family: var(--gf-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
}

.gf-cta-sleeve span {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.gf-cta-sleeve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gf-teal);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gf-cta-sleeve:hover::before {
  transform: translateY(0);
}

/* order slip — dashed edge, tears on hover */
.gf-cta-slip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.6rem;
  border: 1px dashed var(--gf-ink);
  background: var(--gf-paper);
  color: var(--gf-ink);
  font-family: var(--gf-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease;
}

.gf-cta-slip:hover:not(:disabled) {
  transform: translate(3px, -3px);
  background: var(--gf-sakura);
}

.gf-cta-slip:disabled {
  opacity: 0.55;
  cursor: progress;
}

/* ---------- the crate ---------- */
.gf-crate {
  background: var(--gf-paper);
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.gf-crate-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 2.6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.gf-crate-head h2 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.92;
  max-width: 14ch;
  margin: 0;
}

.gf-rail {
  display: flex;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  padding: 0 clamp(1rem, 4vw, 2.6rem);
  will-change: transform;
}

.gf-rail + .gf-rail {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.gf-shelf {
  position: relative;
  height: 1px;
  background: var(--gf-line);
  margin: clamp(1.6rem, 3vw, 2.6rem) clamp(1rem, 4vw, 2.6rem) 0;
}

/* one record */
.gf-record {
  flex: 0 0 auto;
  width: clamp(190px, 24vw, 320px);
  text-decoration: none;
  color: inherit;
  display: block;
}

.gf-record-disc {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gf-label, var(--gf-coral));
  transform: rotate(-4deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 18px 40px -28px rgba(18, 17, 15, 0.9);
}

.gf-record:nth-child(even) .gf-record-disc {
  transform: rotate(5deg);
}

.gf-record-disc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-record-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gf-paper) 0 4.5%, transparent 4.6%),
    radial-gradient(circle at 50% 50%, transparent 0 15%, rgba(18, 17, 15, 0.14) 15.2%, transparent 15.6%),
    radial-gradient(circle at 50% 50%, transparent 0 27%, rgba(18, 17, 15, 0.12) 27.2%, transparent 27.6%),
    radial-gradient(circle at 50% 50%, transparent 0 39%, rgba(18, 17, 15, 0.1) 39.2%, transparent 39.6%);
  pointer-events: none;
}

.gf-record-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 34%;
  margin: -17% 0 0 -17%;
  border-radius: 50%;
  background: var(--gf-label, var(--gf-coral));
  mix-blend-mode: multiply;
  opacity: 0.9;
}

/* Placeholder disc for a collection with no cover and no photos. */
.gf-record-disc[data-empty="true"] {
  display: grid;
  place-items: center;
}

.gf-record-disc[data-empty="true"] span {
  position: relative;
  z-index: 2;
  font-family: var(--gf-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gf-paper);
}

.gf-record:hover .gf-record-disc {
  transform: rotate(0deg) scale(1.03);
}

.gf-record-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  border-top: 1px solid var(--gf-line);
  padding-top: 0.7rem;
}

.gf-record-meta h3 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.05;
  margin: 0;
}

.gf-record-meta p {
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-ink-soft);
  margin: 0.3rem 0 0;
}

.gf-record-cat {
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--gf-ink-soft);
  white-space: nowrap;
}

/* ---------- disc rotation, switchable ----------
 * [data-gf-spin] on <html> chooses the mode:
 *   "label" (default) — photographs stay still, only the pigment label turns.
 *   "full"            — the whole cover photograph rotates, as the design drew it.
 *   "hover"           — full spin, but only while pointed at.
 */
@keyframes gf-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gf-spin-label {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(0, 0) rotate(360deg); }
}

/* Cover art turns inside a circle exactly as wide as the artwork is square, so
 * the square's four edges are tangent to the circle rather than clear of it.
 * At tangency subpixel antialiasing can flash a hairline of whatever is behind
 * — here the disc's pigment background — once per quarter turn. The 2% overfill
 * puts the edge permanently outside the clip. Invisible at any disc size; only
 * the labels and the 45 keep the plain rotation, because they are already
 * circles and scaling those would just make them bigger. */
@keyframes gf-spin-cover {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.02); }
}

[data-gf-spin="label"] .gf-record-label,
[data-gf-spin="label"] .gf-now-label {
  animation: gf-spin-label 26s linear infinite;
}

[data-gf-spin="full"] .gf-record-disc img {
  animation: gf-spin-cover 26s linear infinite;
}

[data-gf-spin="full"] .gf-record-label {
  animation: gf-spin 26s linear infinite;
}

[data-gf-spin="full"] .gf-now-disc img {
  animation: gf-spin-cover 40s linear infinite;
}

[data-gf-spin="full"] .gf-now-label {
  animation: gf-spin 40s linear infinite;
}

[data-gf-spin="hover"] .gf-record:hover .gf-record-disc img {
  animation: gf-spin-cover 26s linear infinite;
}

[data-gf-spin="hover"] .gf-record:hover .gf-record-label {
  animation: gf-spin 26s linear infinite;
}

/* ---------- now playing ---------- */
.gf-now {
  background: var(--gf-paper-2);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2.6rem);
}

.gf-now-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .gf-now-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.gf-now-disc {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gf-label, var(--gf-coral));
  box-shadow: 0 40px 70px -50px rgba(18, 17, 15, 1);
}

.gf-now-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-now-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  margin: -15% 0 0 -15%;
  border-radius: 50%;
  background: var(--gf-label, var(--gf-coral));
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.gf-now h2 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin: 0;
}

/* ---------- track rows (photo strip) ---------- */
.gf-tracks {
  margin: 2rem 0;
  border-top: 1px solid var(--gf-line);
}

.gf-track {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gf-line);
  font-size: 0.98rem;
  color: inherit;
  text-decoration: none;
}

.gf-track span:first-child,
.gf-track span:last-child {
  font-family: var(--gf-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--gf-ink-soft);
}

.gf-track-thumb {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gf-track:hover .gf-track-thumb {
  transform: scale(1.08);
}

/* ---------- the b-side ---------- */
.gf-bside {
  background: var(--gf-ink);
  color: var(--gf-paper);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2.6rem);
}

.gf-bside h2 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.94;
  max-width: 16ch;
  margin: 1rem 0 0;
}

.gf-bside-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .gf-bside-grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.gf-45 {
  width: min(320px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 238, 0.25);
  position: relative;
}

[data-gf-spin="full"] .gf-45,
[data-gf-spin="label"] .gf-45 {
  animation: gf-spin 18s linear infinite;
}

.gf-45::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: var(--gf-coral);
}

.gf-45::after {
  content: "";
  position: absolute;
  inset: 48%;
  border-radius: 50%;
  background: var(--gf-ink);
}

.gf-bside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gf-bside li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(247, 244, 238, 0.16);
  font-family: var(--gf-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gf-bside-soon {
  color: rgba(247, 244, 238, 0.55);
}

/* ---------- liner notes ---------- */
.gf-liner {
  background: var(--gf-paper);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2.6rem);
}

.gf-liner-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  max-width: 1100px;
}

@media (min-width: 900px) {
  .gf-liner-inner {
    grid-template-columns: 1fr 1.4fr;
  }
}

.gf-liner p {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0;
}

.gf-liner p + p {
  margin-top: 1.2rem;
}

.gf-pull {
  font-family: var(--gf-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  max-width: 22ch;
  margin: 0 0 1.8rem;
}

.gf-credits {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  border-top: 1px solid var(--gf-line);
  padding-top: 1.4rem;
}

.gf-credits dt {
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-ink-soft);
}

.gf-credits dd {
  margin: 0.35rem 0 0;
  font-family: var(--gf-serif);
  font-size: 1.25rem;
}

/* ---------- request a pressing ---------- */
.gf-press {
  background: var(--gf-paper-2);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2.6rem) clamp(3rem, 6vw, 5rem);
}

.gf-slip {
  max-width: 760px;
  border: 1px dashed var(--gf-ink);
  background: var(--gf-paper);
  padding: clamp(1.6rem, 4vw, 2.8rem);
}

.gf-slip h2 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  margin: 0.8rem 0 0;
}

.gf-field {
  display: block;
  margin-top: 1.4rem;
}

.gf-field > span {
  display: block;
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-ink-soft);
  margin-bottom: 0.5rem;
}

.gf-field input,
.gf-field textarea,
.gf-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gf-ink);
  padding: 0.55rem 0;
  font-family: var(--gf-sans);
  font-size: 1rem;
  color: var(--gf-ink);
  border-radius: 0;
}

.gf-field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.gf-field input:focus,
.gf-field textarea:focus,
.gf-field select:focus {
  outline: none;
  border-bottom-color: var(--gf-coral);
}

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.gf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gf-slip-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.gf-slip-note {
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gf-ink-soft);
}

.gf-slip-note[data-state="error"] {
  color: var(--gf-coral);
}

/* ---------- footer ---------- */
.gf-foot {
  background: var(--gf-ink);
  color: var(--gf-paper);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
}

.gf-foot a {
  color: inherit;
}

.gf-foot-mark {
  font-family: var(--gf-serif);
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.8;
}

.gf-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 0.9rem;
  justify-content: flex-end;
}

/* ---------- album / collection detail ---------- */
.gf-album {
  background: var(--gf-paper);
  min-height: 100vh;
  padding: clamp(6rem, 12vw, 9rem) clamp(1rem, 4vw, 2.6rem) clamp(4rem, 8vw, 6rem);
}

.gf-album h1 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  margin: 1rem 0 0;
}

.gf-album-figure {
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.gf-album-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.gf-album-figure figcaption {
  font-family: var(--gf-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gf-ink-soft);
  margin-top: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .gf-record-disc img,
  .gf-record-label,
  .gf-now-disc img,
  .gf-now-label,
  .gf-45 {
    animation: none !important;
  }

  .gf-rail {
    transform: none !important;
  }

  .gf-cta-tab svg,
  .gf-cta-disc i,
  .gf-cta-sleeve::before,
  .gf-cta-slip,
  .gf-track-thumb,
  .gf-record-disc {
    transition: none !important;
  }
}

/* ---------- nav: seven links ----------
 * The link row was laid out for six. "Portfolio" makes seven, which overruns
 * the wordmark between 800px (where .gf-nav-links appears) and roughly 1000px.
 * Tighten the row across that window rather than pushing the burger breakpoint
 * up, which would take the full nav away from pages that still fit.
 */
@media (min-width: 800px) and (max-width: 1010px) {
  .gf-nav-links {
    gap: 1rem;
  }

  .gf-nav-links.gf-meta {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }
}

/* ---------- the reel: the film portfolio, previewed ----------
 * Sits between the scroll-scrub film and the crate, so it is the first thing
 * under the hero. Full-bleed clip, muted and looping, with the copy laid over
 * it. The <video> carries no src in the markup — assets/site.js picks the
 * weight by viewport and skips the fetch entirely under reduced motion, where
 * the poster is left standing on its own.
 */
.gf-reel {
  position: relative;
  background: var(--gf-ink);
  color: var(--gf-paper);
  isolation: isolate;
  overflow: hidden;
}

.gf-reel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gf-reel-media img,
.gf-reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The footage is high-key beach, so paper-coloured type needs a scrim to hold
   contrast. Weighted to the left, where the copy sits, and eased rather than
   stepped so the grade of the sky survives on the right. */
.gf-reel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(18, 17, 15, 0.92) 0%, rgba(18, 17, 15, 0.72) 38%,
                    rgba(18, 17, 15, 0.28) 68%, rgba(18, 17, 15, 0.42) 100%),
    linear-gradient(to top, rgba(18, 17, 15, 0.7) 0%, rgba(18, 17, 15, 0) 45%);
}

.gf-reel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.4rem);
  align-content: center;
  min-height: clamp(30rem, 78svh, 46rem);
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2.6rem);
  max-width: 1400px;
  margin: 0 auto;
}

.gf-reel-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(247, 244, 238, 0.72);
}

/* A recording light, because this is the moving-picture half of the site. */
.gf-reel-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gf-coral);
  flex: none;
  animation: gf-reel-pulse 2.4s ease-in-out infinite;
}

@keyframes gf-reel-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.gf-reel h2 {
  font-family: var(--gf-serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 7.4vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 15ch;
}

.gf-reel-lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  max-width: 44ch;
  margin: 0;
  color: rgba(247, 244, 238, 0.8);
}

.gf-reel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-top: 0.4rem;
}

/* The three films named in the open, so the section reads as a portfolio and
   not a decorative video band. */
.gf-reel-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 244, 238, 0.62);
}

.gf-reel-index li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.gf-reel-index b {
  font-weight: 500;
  color: var(--gf-paper);
}

.gf-reel-index li + li::before {
  content: "";
  width: 1px;
  height: 0.8em;
  background: rgba(247, 244, 238, 0.28);
  align-self: center;
  margin-right: 1rem;
}

/* The sound is off by design; say so rather than leaving a visitor hunting for
   a control that is not there. */
.gf-reel-muted {
  color: rgba(247, 244, 238, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .gf-reel-kicker::before {
    animation: none;
  }
}
