
:root {
  --bg: #090b11;
  --bg-2: #10141d;
  --bg-3: #171d28;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(217, 183, 122, 0.35);
  --text: #f7f4ef;
  --muted: #cdc5b7;
  --muted-2: #9f9689;
  --accent: #d9b77a;
  --accent-2: #b78943;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --wrap: min(1220px, calc(100% - 40px));
  --header-h: 86px;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 183, 122, 0.16), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(70, 88, 121, 0.22), transparent 22%),
    linear-gradient(180deg, #07090e 0%, #0a0d13 22%, #101522 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), transparent 88%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 17, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #f2d9a4);
  color: #12161d;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(217, 183, 122, 0.25);
}
.brand__mark--small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 20px;
  flex-shrink: 0;
}
.brand__text strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand__text em {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: 0.24s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  outline: none;
}
.nav-cta {
  margin-left: 10px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slides {
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,7,11,0.22) 0%, rgba(5,7,11,0.2) 20%, rgba(5,7,11,0.78) 72%, rgba(5,7,11,0.95) 100%),
    linear-gradient(90deg, rgba(5,7,11,0.72) 0%, rgba(5,7,11,0.3) 45%, rgba(5,7,11,0.12) 100%);
}
.hero-home__content {
  position: relative;
  z-index: 2;
  padding: 110px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(217,183,122,0.1);
  color: #f0dbaf;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-home h1,
.page-hero h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 780px;
}
.hero-home h1 span,
.page-hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2.7vw, 34px);
  color: #f2d8aa;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-lead,
.page-lead {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 42px;
}
.hero-bullets {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: 0.24s ease;
}
.hero-bullet.is-active {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(217,183,122,0.12);
}
.hero-note {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}
.btn--accent {
  background: linear-gradient(135deg, var(--accent), #f2d8aa);
  color: #10131a;
  box-shadow: 0 18px 46px rgba(217,183,122,0.18);
}
.btn--ghost {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,0.09);
}
.btn--small {
  padding: 12px 16px;
  font-size: 14px;
}
.btn--outline {
  border-color: rgba(217,183,122,0.38);
  background: rgba(217,183,122,0.08);
  color: #f3deaf;
}

main {
  padding-bottom: 40px;
}

.section {
  padding: 84px 0;
}
.section--tight {
  padding: 58px 0;
}
.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section__head--stack {
  display: block;
}
.section__label {
  display: block;
  color: #f1d8a8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 12px;
}
.section__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section__text {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.quick-card,
.card,
.panel,
.contact-card,
.release-card,
.timeline-card,
.gallery-tile,
.platform-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-card {
  padding: 24px;
  min-height: 220px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.quick-card:hover,
.quick-card:focus-visible,
.card:hover,
.card:focus-within,
.gallery-tile:hover,
.gallery-tile:focus-visible,
.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(217,183,122,0.32);
  outline: none;
}
.quick-card__eyebrow,
.card__eyebrow,
.small-caps {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(217,183,122,0.08);
  border: 1px solid rgba(217,183,122,0.24);
  color: #f0d9af;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quick-card h3,
.card h3,
.release-card h3,
.contact-card h3,
.timeline-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.quick-card p,
.card p,
.release-card p,
.contact-card p,
.timeline-card p,
.platform-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.74;
}
.quick-card__link,
.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2dcac;
  font-weight: 600;
}
.text-link::after {
  content: "→";
  transition: transform 0.24s ease;
}
.quick-card:hover .quick-card__link::after,
.text-link:hover::after {
  transform: translateX(4px);
}
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 26px;
  min-height: 100%;
  position: relative;
}
.card__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--muted);
}
.card__footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.panel {
  overflow: hidden;
}
.panel--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel--copy {
  padding: 36px;
}
.panel--copy .section__title {
  font-size: clamp(30px, 3.4vw, 46px);
}
.quote-box {
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(217,183,122,0.18);
  background: rgba(217,183,122,0.08);
  color: var(--text);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.home-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.home-gallery__large,
.home-gallery__stack a {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.home-gallery__large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-gallery__stack {
  display: grid;
  gap: 18px;
}

.page-hero {
  position: relative;
  padding: 88px 0 54px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.32), rgba(6,8,12,0.82)),
    var(--hero-image, linear-gradient(135deg, rgba(217,183,122,0.1), rgba(60,72,98,0.1)));
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero__content {
  max-width: 860px;
  padding: 40px 0 36px;
}
.page-hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 14px;
}

.rich-text {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}
.rich-text__body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.92;
}
.rich-text__body p {
  margin: 0 0 18px;
}
.rich-text__body p:last-child { margin-bottom: 0; }

.direction-list,
.timeline {
  display: grid;
  gap: 16px;
}
.timeline {
  margin-top: 24px;
}
.timeline-card {
  padding: 22px 24px;
}
.timeline-card strong {
  display: block;
  color: #f0d9ac;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.timeline-card p {
  margin-top: 12px;
}

.work-group {
  margin-top: 32px;
}
.work-group:first-of-type {
  margin-top: 0;
}
.work-group__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.work-group__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
}
.work-group__head p {
  margin: 0;
  color: var(--muted);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}
.release-cover {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-card {
  padding: 30px;
}
.release-card ul,
.tracklist,
.link-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.tracklist li,
.link-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.tracklist li:last-child,
.link-list li:last-child {
  border-bottom: none;
}
.tracklist strong {
  color: var(--text);
  display: inline-block;
  min-width: 30px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.platform-card {
  padding: 22px;
  min-height: 180px;
}
.platform-card h3 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-tile {
  overflow: hidden;
  position: relative;
  border-radius: 26px;
  display: block;
  cursor: zoom-in;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img {
  transform: scale(1.04);
}
.gallery-tile--wide { grid-column: span 7; min-height: 460px; }
.gallery-tile--tall { grid-column: span 5; min-height: 460px; }
.gallery-tile--half { grid-column: span 4; min-height: 380px; }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 74px;
  background: linear-gradient(180deg, transparent, rgba(4,6,9,0.72));
  border-radius: 18px;
  pointer-events: none;
}
.gallery-tile__caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  color: #f7f2e8;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,4,8,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 120;
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  max-width: min(1200px, 100%);
  max-height: min(92vh, 100%);
}
.lightbox__image {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.lightbox__caption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.contact-card {
  padding: 30px;
}
.contact-card__list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.contact-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-item span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-item strong,
.contact-item a {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  font-family: var(--serif);
  letter-spacing: -0.03em;
}
.contact-item a:hover { color: #f2d8aa; }
.contact-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,11,17,0.72);
  margin-top: 40px;
}
.footer-grid {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: start;
}
.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links,
.footer-contacts {
  display: grid;
  gap: 10px;
}
.footer-links a,
.footer-contacts a,
.footer-socials a {
  color: var(--muted);
}
.footer-links a:hover,
.footer-contacts a:hover,
.footer-socials a:hover {
  color: #f2d8aa;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .quick-links,
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .release-grid,
  .contact-layout,
  .rich-text,
  .home-gallery,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--half {
    grid-column: span 12;
  }
}
@media (max-width: 840px) {
  :root { --wrap: min(1220px, calc(100% - 28px)); }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(8, 11, 17, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-link, .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero-home__content { padding: 82px 0 58px; }
  .hero-caption {
    flex-direction: column;
    align-items: start;
  }
  .quick-links {
    margin-top: 24px;
  }
  .page-hero {
    padding: 58px 0 36px;
  }
}
@media (max-width: 640px) {
  .hero-home h1, .page-hero h1 {
    font-size: clamp(40px, 14vw, 58px);
    line-height: .98;
  }
  .hero-home h1 span, .page-hero h1 span {
    font-size: 22px;
    margin-top: 14px;
  }
  .hero-lead, .page-lead, .section__text {
    font-size: 16px;
  }
  .btn { width: 100%; }
  .quick-links, .grid-4, .platform-grid { grid-template-columns: 1fr; }
  .quote-box {
    font-size: 24px;
  }
  .card, .quick-card, .release-card, .contact-card, .panel--copy {
    padding: 22px;
  }
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--half {
    min-height: 320px;
  }
}
