/* Guava Records — guavarecords.com
   Dark ground, guava purple accent, Figtree throughout. No JS. */

@font-face { font-family: "Figtree"; src: url("/fonts/figtree-latin.woff2") format("woff2"); font-weight: 300 900; font-display: swap; }

:root {
  --ground: #141216;
  --panel: #1d1a20;
  --panel-2: #262229;
  --ink: #f0eae5;
  --ink-2: #b8afaa;
  --ink-3: #847b80;
  --rule: #2c2730;
  --guava: #9c30a3;
  --guava-2: #c973cf;
  --guava-soft: #f0c8f3;
  --sans: "Figtree", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 64px);
  --max: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { background: var(--ground); color-scheme: dark; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.5; color: var(--ink); background: var(--ground); font-variant-numeric: tabular-nums; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--guava-2); text-decoration: none; }
a { transition: color .25s var(--ease); }
a:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--guava-soft); }
:focus-visible { outline: 2px solid var(--guava-2); outline-offset: 3px; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
p { margin: 0 0 12px; }
.eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--guava-2); font-weight: 600; margin-bottom: 12px; }
.kicker { font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* header */
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 22px var(--gutter); max-width: var(--max); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; }
.brand:hover { text-decoration: none; }
.brand img { height: 30px; width: auto; }
.site-nav { display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.site-nav a { color: var(--ink-2); padding: 8px 0; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--guava-2); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--ink); text-decoration: none; }

/* buttons */
.button { display: inline-block; background: var(--guava); color: #fff; padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }
.button { transition: transform .3s var(--ease), background .3s, box-shadow .3s var(--ease), color .3s; will-change: transform; }
.button:hover { background: #b03cb8; text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(156,48,163,.7); }
.button:active { transform: translateY(0) scale(.98); transition-duration: .1s; }
.button.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink-3); }
.button.ghost:hover { box-shadow: inset 0 0 0 1px var(--ink), 0 10px 24px -14px rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* hero */
.hero { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center; padding: 40px var(--gutter) 72px; max-width: var(--max); margin: 0 auto; }
.hero h1 { font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -0.025em; }
.hero .lede { font-size: 18px; color: var(--ink-2); margin-top: 20px; max-width: 46ch; }
.hero-art { border-radius: 10px; overflow: hidden; background: var(--panel); aspect-ratio: 4 / 3; position: relative; display: block; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-video .hero-art { aspect-ratio: 16 / 9; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.hero-video .hero-art img { transition: transform .9s var(--ease); }
.hero-video .hero-art:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(156,48,163,.6); }
.hero-video .hero-art:hover img { transform: scale(1.04); }
.hero-video .hero-art .play-btn { width: 72px; height: 72px; right: auto; bottom: auto; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.hero-video .hero-art:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.hero-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 14px; color: var(--ink); font-size: 14px; background: linear-gradient(to top, rgba(20,18,22,.85), rgba(20,18,22,0)); }
.hero-cap strong { font-weight: 700; }

/* sections */
.section { padding: 56px var(--gutter); max-width: var(--max); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: end; border-bottom: 1px solid var(--rule); padding-bottom: 18px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }
.section-head p { color: var(--ink-2); margin: 0; max-width: 60ch; }
.section-head .more { justify-self: end; font-size: 14px; }

/* release grid */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; list-style: none; padding: 0; margin: 0; }
.card a.cover { display: block; border-radius: 8px; overflow: hidden; background: var(--panel); aspect-ratio: 1; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.card a.cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover a.cover, .card:focus-within a.cover { transform: translateY(-4px) rotate(-.4deg); box-shadow: 0 18px 40px -18px rgba(156,48,163,.55), 0 8px 24px -12px rgba(0,0,0,.7); }
.card:hover a.cover img { transform: scale(1.06); }
.card h3 { font-size: 16px; margin-top: 12px; }
.card h3 a { color: var(--ink); background-image: linear-gradient(var(--guava-2), var(--guava-2)); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .35s var(--ease); }
.card:hover h3 a { background-size: 100% 1px; }
.card h3 a:hover { text-decoration: none; }
.card .sub { color: var(--ink-3); font-size: 14px; margin: 2px 0 0; }

/* video grid */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; list-style: none; padding: 0; margin: 0; }
.vcard a.thumb { display: block; border-radius: 8px; overflow: hidden; background: var(--panel); aspect-ratio: 16 / 9; position: relative; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.vcard a.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); }
.vcard:hover a.thumb, .vcard:focus-within a.thumb { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(156,48,163,.55), 0 8px 24px -12px rgba(0,0,0,.7); }
.vcard:hover a.thumb img, .vcard:focus-within a.thumb img { transform: scale(1.05); filter: brightness(1.06); }
.vcard a.thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,22,.55), rgba(20,18,22,0) 55%); opacity: 0; transition: opacity .45s var(--ease); }
.vcard:hover a.thumb::before { opacity: 1; }
.vcard h3 { font-size: 15px; margin-top: 12px; font-weight: 600; }
.vcard h3 a { color: var(--ink); background-image: linear-gradient(var(--guava-2), var(--guava-2)); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .35s var(--ease), color .3s; }
.vcard:hover h3 a { background-size: 100% 1px; }
.vcard h3 a:hover { text-decoration: none; color: var(--guava-soft); }
.vcard .sub { color: var(--ink-3); font-size: 13px; margin: 2px 0 0; }

/* play button */
.play-btn { position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(20,18,22,.72); box-shadow: 0 0 0 1px rgba(255,255,255,.18); backdrop-filter: blur(6px); transition: transform .4s var(--ease), background .3s, box-shadow .4s var(--ease); }
.play-btn::after { content: ""; position: absolute; left: 55%; top: 50%; width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; transform: translate(-50%,-50%); }
a.play:hover .play-btn, a.play:focus-visible .play-btn { transform: scale(1.12); background: var(--guava); box-shadow: 0 0 0 6px rgba(156,48,163,.25), 0 0 0 1px rgba(255,255,255,.25); }
.center { text-align: center; margin-top: 32px; }

/* teaser */
.teaser { border-top: 1px solid var(--rule); }
.teaser-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center; }
.teaser h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.02em; }
.teaser .lede { color: var(--ink-2); font-size: 17px; margin-top: 14px; max-width: 48ch; }
.teaser-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.teaser-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; transition: transform .7s var(--ease); }
.teaser-photos img:first-child { transform: translateY(24px); }
.teaser:hover .teaser-photos img { transform: translateY(0) scale(1.02); }
.teaser:hover .teaser-photos img:first-child { transform: translateY(12px) scale(1.02); }

/* reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } * { transition-duration: .01ms !important; animation: none !important; } }

/* theater */
body.theater-open { overflow: hidden; }
.theater[hidden] { display: none; }
.theater { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 24px; background: rgba(10,8,12,.86); backdrop-filter: blur(10px); opacity: 0; transition: opacity .28s var(--ease); }
.theater.on { opacity: 1; }
.theater-frame { width: min(1180px, 100%); transform: translateY(14px) scale(.98); transition: transform .32s var(--ease); }
.theater.on .theater-frame { transform: none; }
.theater-stage { aspect-ratio: 16 / 9; background: #000; border-radius: 10px; overflow: hidden; box-shadow: 0 40px 100px -30px rgba(156,48,163,.45), 0 30px 60px -20px rgba(0,0,0,.9); }
.theater-stage iframe { width: 100%; height: 100%; border: 0; display: block; }
.theater-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 4px 0; color: var(--ink-2); font-size: 15px; }
.theater-title { color: var(--ink); font-weight: 600; }
.theater-nav { display: flex; align-items: center; gap: 8px; }
.theater-nav button, .theater-nav a { font: inherit; color: var(--ink); background: rgba(255,255,255,.06); border: 0; border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: background .25s, transform .25s var(--ease); font-size: 14px; }
.theater-nav button:hover, .theater-nav a:hover { background: var(--guava); text-decoration: none; transform: translateY(-1px); }
.theater-nav button:disabled { opacity: .35; cursor: default; transform: none; background: rgba(255,255,255,.06); }
.theater-nav .t-close { font-size: 20px; line-height: 1; padding: 6px 13px; }

/* eras */
.eras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; padding: 0; margin: 0; }
.era .ph { border-radius: 6px; overflow: hidden; background: var(--panel); aspect-ratio: 4 / 3; }
.era .ph img { width: 100%; height: 100%; object-fit: cover; }
.era h3 { font-size: 20px; margin-top: 14px; }
.era .years { color: var(--guava-2); font-weight: 600; font-size: 14px; letter-spacing: .06em; }
.era p { color: var(--ink-2); font-size: 15px; margin-top: 6px; }

/* release page */
.release { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; padding: 24px var(--gutter) 56px; max-width: var(--max); margin: 0 auto; }
.release .cover { border-radius: 8px; overflow: hidden; background: var(--panel); }
.release h1 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.02em; }
.release .artist { font-size: 22px; color: var(--ink-2); margin-top: 6px; }
.release .note { color: var(--ink-2); margin-top: 18px; max-width: 56ch; }
.tracks { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--rule); }
.tracks li { display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.tracks .n { color: var(--ink-3); }
.tracks .t { color: var(--ink); }
.tracks .d { color: var(--ink-3); }
.meta { display: grid; grid-template-columns: repeat(3, auto); gap: 8px 32px; margin-top: 24px; font-size: 14px; color: var(--ink-2); justify-content: start; }
.meta dt { color: var(--ink-3); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.meta dd { margin: 0; }
.meta div { display: grid; gap: 2px; }

/* prose */
.prose { max-width: 66ch; font-size: 17px; color: var(--ink-2); }
.prose p { margin-bottom: 18px; }
.prose strong { color: var(--ink); font-weight: 600; }
.two-col { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--rule); }
.two-col h2 { font-size: 22px; }
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 8px; }
.photo-strip figure { margin: 0; border-radius: 6px; overflow: hidden; background: var(--panel); aspect-ratio: 4/3; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip.wide { grid-template-columns: 1fr; }
.photo-strip.wide figure { aspect-ratio: 3 / 1; }

/* contact */
.contact-primary { font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.02em; word-break: break-word; }
.contact-primary a { color: var(--ink); }
.details { list-style: none; padding: 0; margin: 0; font-size: 17px; color: var(--ink-2); }
.details li { padding: 10px 0; border-bottom: 1px solid var(--rule); }

/* footer */
.site-footer { border-top: 1px solid var(--rule); margin-top: 48px; padding: 36px var(--gutter) 48px; }
.site-footer .inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 16px 40px; align-items: start; color: var(--ink-3); font-size: 14px; }
.site-footer .inner img { height: 72px; width: auto; margin-bottom: 12px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer nav a { color: var(--ink-2); }
.site-footer .aut a { color: var(--ink-2); }

@media (max-width: 860px) {
  .teaser-inner { grid-template-columns: 1fr; gap: 24px; }
  .theater { padding: 12px; }
  .theater-bar { flex-wrap: wrap; font-size: 13px; }
  .hero-video .hero-art { aspect-ratio: 16 / 9; }
  .hero-video .hero-art .play-btn { width: 56px; height: 56px; }
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 16px; }
  .hero-art { order: -1; margin: 0 calc(-1 * var(--gutter)); border-radius: 0; aspect-ratio: 16 / 10; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .vgrid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .eras { grid-template-columns: 1fr; }
  .release { grid-template-columns: 1fr; gap: 24px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .more { justify-self: start; }
  .two-col { grid-template-columns: 1fr; gap: 8px; }
  .site-footer .inner { grid-template-columns: 1fr; }
  .site-nav { gap: 18px; }
  .brand img { height: 26px; }
  .brand span { font-size: 13px; }
  .photo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vgrid { grid-template-columns: 1fr; }
  .meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 16px var(--gutter); }
  .brand span { display: none; }
  .brand img { height: 30px; }
  .site-nav { gap: 16px; font-size: 11.5px; letter-spacing: .08em; }
}
