/* LUCILLE CROFT — site styles */
:root {
  --ink: #050203;
  --ink-2: #120708;
  --bone: #F3EDEA;
  --mute: #B3A6A3;
  --faint: #8A7E7C;
  --red: #FF4A3D;
  --blood: #8E0406;
  --pale: #E3E6EA;
  --pale-2: #D3D7DC;
  --pale-ink: #0B0607;
  --xray: #8FD3F4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --script: 'Pinyon Script', cursive;
  --pad: clamp(20px, 4.4vw, 64px);
  --section: clamp(72px, 9vw, 130px);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--ink); color: var(--bone); font-family: var(--serif); font-size: 18px; line-height: 1.4; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; }
em { font-style: italic; }
p { margin: 0; }
:focus-visible { outline: 1px solid var(--red); outline-offset: 4px; }

.skip { position: absolute; left: -999px; top: 8px; z-index: 50; background: var(--bone); color: var(--ink); padding: 10px 14px; font-family: var(--sans); font-size: 12px; }
.skip:focus { left: 8px; }

.label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); }
.is-red { color: var(--red); }
.is-muted { color: var(--mute); }
.h2 { margin: 0; font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 6.2vw, 88px); line-height: 1; }
.lede { font-weight: 300; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.25; }

.line-link { display: inline-block; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; padding: 12px 0 6px; border-bottom: 1px solid currentColor; }
.line-link.is-muted { border-color: rgba(243,237,234,.4); }
.links-row { display: flex; gap: 40px; flex-wrap: wrap; }

.section { padding: var(--section) var(--pad); }
.section--rule { border-top: 1px solid rgba(243,237,234,.12); }
.section--pale { background: var(--pale); color: var(--pale-ink); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }

/* NAV */
.nav { position: absolute; inset: 0 0 auto 0; z-index: 20; height: 96px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; }
.nav__mark img { width: 54px; height: auto; }
.nav__links { display: flex; gap: 40px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; }
.nav__toggle { display: none; width: 44px; height: 44px; background: none; border: 0; color: var(--bone); cursor: pointer; align-items: center; justify-content: center; }
.menu { position: fixed; inset: 0; z-index: 30; background: rgba(5,2,3,.96); display: flex; align-items: center; justify-content: center; }
.menu[hidden] { display: none; }
.menu nav { display: flex; flex-direction: column; align-items: center; gap: 22px; font-family: var(--serif); font-weight: 300; font-size: 44px; }
@media (max-width: 760px) {
  .nav { height: 64px; }
  .nav__mark img { width: 42px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* HERO */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 640px; max-height: 1100px; overflow: hidden; background: var(--ink); cursor: crosshair; touch-action: pan-y; }
.hero__stage { position: absolute; inset: 0; }
.hero__video { position: absolute; left: 50%; top: -4%; height: 124%; width: auto; aspect-ratio: 9 / 16; max-width: none; transform: translateX(-50%); object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 42%, #000 45%, transparent 100%);
          mask-image: radial-gradient(ellipse 50% 60% at 50% 42%, #000 45%, transparent 100%); }
.hero__video--xray { filter: invert(1) saturate(1.3); }
.hero__lens { position: absolute; inset: 0; background: #04121A; clip-path: circle(0 at -200px -200px); }
.hero.is-examining .hero__lens { clip-path: circle(var(--lr, 110px) at var(--lx) var(--ly)); }
.hero__ring { position: absolute; left: var(--lx); top: var(--ly); width: calc(var(--lr, 110px) * 2); height: calc(var(--lr, 110px) * 2); margin: calc(var(--lr, 110px) * -1) 0 0 calc(var(--lr, 110px) * -1); border: 1px solid rgba(143,211,244,.9); border-radius: 50%; pointer-events: none; opacity: 0; transition: opacity .2s; }
.hero.is-examining .hero__ring { opacity: 1; }
.secret { position: absolute; left: var(--x); top: var(--y); font-family: var(--sans); font-size: 12px; letter-spacing: .24em; color: var(--xray); white-space: nowrap; }
.secret--serif { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 34px); letter-spacing: 0; }
.hero__logo { position: absolute; left: calc(var(--pad) - 12px); bottom: 6%; width: min(640px, 86vw); margin: 0; pointer-events: none; z-index: 2; }
.hero__logo img { width: 100%; height: auto; }
.hero__cta { position: absolute; right: var(--pad); bottom: 7%; z-index: 3; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .24em; }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 32%; background: linear-gradient(180deg, rgba(5,2,3,0), var(--ink)); pointer-events: none; z-index: 1; }
@media (max-width: 760px) {
  .hero { min-height: 700px; }
  .hero__video { top: 0; height: 104%; -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 40%, #000 45%, transparent 100%); mask-image: radial-gradient(ellipse 62% 62% at 50% 40%, #000 45%, transparent 100%); }
  .hero__logo { bottom: 60px; }
  .hero__cta { left: var(--pad); right: auto; bottom: 24px; font-size: 10px; }
  .secret { font-size: 10px; }
}

/* MUSIC */
.music { display: grid; grid-template-columns: minmax(0, 640px) minmax(0, 1fr); gap: clamp(36px, 6.6vw, 96px); align-items: stretch; }
.music__cover { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; box-shadow: 0 40px 100px rgba(142,4,6,.35); }
.music__body { display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.tracks { list-style: none; margin: 36px 0 0; padding: 0; font-weight: 300; font-size: clamp(38px, 3.6vw, 52px); line-height: 1.1; display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 860px) { .music { grid-template-columns: 1fr; } }

/* EDITORIAL */
.editorial { display: grid; grid-template-columns: repeat(3, minmax(0, 400px)); gap: 40px; justify-content: center; }
.ed { position: relative; margin: 0; aspect-ratio: 614 / 873; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.6); container-type: inline-size; }
.ed > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ed__credit { position: absolute; left: 0; right: 0; bottom: -34px; font-family: var(--sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.ed:has(.ed__credit) { overflow: visible; }
.ed--seduce > img { object-position: 50% 20%; }
.ed__top { position: absolute; top: 3%; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--sans); font-size: 1.8cqw; letter-spacing: .26em; color: #2A0508; }
.ed__top .star { font-size: 3.6cqw; letter-spacing: 0; }
.ed__col { position: absolute; top: 3%; width: 24%; font-family: var(--sans); font-size: 1.5cqw; line-height: 1.3; letter-spacing: .04em; color: #2A0508; }
.ed__col--l { left: 4%; } .ed__col--r { right: 4%; text-align: right; }
.ed__script { position: absolute; left: -2%; right: -2%; top: 52%; text-align: center; font-family: var(--script); font-size: 33cqw; line-height: 1; color: var(--blood); }
.ed--destroy { background: #DDD9D5; }
.ed--destroy > img { object-position: 50% 10%; filter: grayscale(.35) contrast(1.05); }
.ed__frame { position: absolute; inset: 4.5%; border: 1px solid rgba(58,51,52,.45); }
.ed__name { position: absolute; left: calc(4.5% + 12px); top: calc(3% + 12px); font-family: var(--sans); font-size: 1.8cqw; letter-spacing: .3em; color: #3A3334; }
.ed__vertical { position: absolute; right: calc(4.5% + 6px); top: calc(3% + 10px); writing-mode: vertical-rl; font-family: var(--sans); font-stretch: 125%; font-weight: 900; font-size: 13.5cqw; line-height: 1; letter-spacing: .02em; color: #B80000; }
.ed__quote { position: absolute; left: calc(4.5% + 12px); top: calc(3% + 12px + 6cqw); width: 30%; font-style: italic; font-size: 5.5cqw; line-height: 1.15; color: #1A1516; }
@media (max-width: 1000px) { .editorial { grid-template-columns: minmax(0, 420px); gap: 64px; } }

/* TOUR */
.tour__list { list-style: none; margin: 48px 0 0; padding: 0; border-top: 1px solid rgba(243,237,234,.5); }
.tour__list li { display: grid; grid-template-columns: 140px 1fr 1fr auto; gap: 24px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid rgba(243,237,234,.2); font-size: 24px; font-weight: 300; }
.tour__list .tour__date { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; color: var(--red); }
.tour__list .tour__empty { display: flex; justify-content: space-between; }
.tour__empty > span { font-style: italic; color: var(--mute); font-size: 30px; }
@media (max-width: 760px) { .tour__list li { grid-template-columns: 1fr auto; } .tour__list .tour__venue { grid-column: 1; color: var(--mute); font-size: 18px; } }

/* SHOP */
.shop .line-link { color: var(--pale-ink); }
.shop__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.shop__soon { grid-column: 1 / -1; font-style: italic; font-size: 30px; font-weight: 300; color: #4A4445; }
.product { display: flex; flex-direction: column; gap: 14px; background: none; border: 0; padding: 0; text-align: left; color: inherit; cursor: pointer; font: inherit; }
.product img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--pale-2); }
.product__meta { display: flex; justify-content: space-between; gap: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
@media (max-width: 860px) { .shop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

/* PRESS */
.press, .bloodline { display: grid; grid-template-columns: 1fr minmax(0, 720px); gap: 48px 96px; }
.press__body, .bloodline__body { display: flex; flex-direction: column; gap: 44px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-top: 28px; border-top: 1px solid rgba(243,237,234,.5); }
.stats > div { display: flex; flex-direction: column; gap: 10px; }
.stat { font-weight: 300; font-size: clamp(34px, 3.4vw, 48px); line-height: 1; }
.facts { display: flex; flex-direction: column; gap: 12px; }
.facts p:last-child { font-weight: 300; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.35; }
.rows { border-top: 1px solid rgba(243,237,234,.5); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.rows a { display: flex; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid rgba(243,237,234,.2); }
@media (max-width: 860px) {
  .press, .bloodline { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 18px; }
  .stats > div { flex-direction: row; justify-content: space-between; align-items: baseline; }
}

/* BLOODLINE */
.bloodline { position: relative; background: var(--blood); overflow: hidden; }
.bloodline::before { content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E"); }
.bloodline > * { position: relative; }
.join { display: grid; grid-template-columns: 1fr auto; gap: 12px 24px; align-items: end; }
.join__field { display: flex; flex-direction: column; gap: 10px; }
.join label { font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.join input { height: 50px; background: transparent; border: 0; border-bottom: 1px solid var(--bone); color: var(--bone); font-family: var(--serif); font-size: 26px; padding: 0; border-radius: 0; }
.join input::placeholder { color: rgba(243,237,234,.55); }
.join input:focus { outline: none; border-bottom-color: #fff; }
.join button { height: 50px; background: none; border: 0; border-bottom: 1px solid var(--bone); color: var(--bone); font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; padding: 0 4px; }
.join button[disabled] { opacity: .5; cursor: wait; }
.join__status { grid-column: 1 / -1; min-height: 1.4em; font-style: italic; font-size: 20px; }
.legal { font-family: var(--sans); font-size: 10px; line-height: 1.7; letter-spacing: .12em; text-transform: uppercase; color: #F3D9D5; }
.legal a { text-decoration: underline; }
@media (max-width: 560px) { .join { grid-template-columns: 1fr; } .join button { justify-self: start; } }

/* FOOTER */
.footer { padding: 72px var(--pad) 48px; display: flex; flex-direction: column; gap: 64px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer__top img { width: 70px; height: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 36px; font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--sans); font-size: 10px; letter-spacing: .24em; color: var(--faint); }
