/* ADAM — Official Website
   Palette and type follow the approved design canvas. Mobile-first; breakpoints at 768 and 1024. */

:root {
  --bg: #0B0B0C;
  --bg-alt: #101012;
  --surface: #141416;
  --text: #F2EFE9;
  --text-soft: #C9C4BB;
  --muted: #9A968F;
  --faint: #6F6B65;
  --line: rgba(242, 239, 233, .1);
  --line-strong: rgba(242, 239, 233, .35);
  /* Accent taken from the warm studio lights in the hero video */
  --gold: #D8B08C;
  --gold-hi: #EAC9A6;
  --gold-soft: rgba(216, 176, 140, .6);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-ar: "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;

  --container: 1312px;
  --gutter: 20px;
  --header-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 64px; --header-h: 96px; } }

/* ---------- Base ---------- */
*, *::before, *::after { 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(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-hi); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd { margin: 0; }
strong { color: var(--text); font-weight: 600; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; background: var(--gold); color: var(--bg); padding: 10px 16px; border-radius: 2px; font-weight: 600; }
.skip-link:focus { top: 16px; color: var(--bg); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 80px 0 72px; }
.section-alt { background: var(--bg-alt); }
.hero + .section, .section + .section { border-top: 1px solid rgba(242, 239, 233, .06); }
@media (min-width: 768px) { .section { padding: 96px 0 88px; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

/* ---------- Type ---------- */
.display, .brand-name, .section-title, .hero-title, .pull, .fact-value, .phone-number { font-family: var(--font-display); }
.ar { font-family: var(--font-ar); direction: rtl; unicode-bidi: isolate; font-weight: 700; }
.kicker { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.kicker.muted { color: var(--muted); }
.section-title { font-size: clamp(44px, 6vw, 64px); line-height: 1.02; font-weight: 500; margin-top: 14px; text-wrap: balance; }
.rule { width: 72px; height: 1px; margin-top: 18px; background: linear-gradient(90deg, var(--gold), rgba(216, 176, 140, 0)); transform-origin: left; }
@media (min-width: 1024px) { .rule { width: 96px; } }
.section-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.section-note { color: var(--muted); max-width: 380px; }
/* Second row inside a section (e.g. live performances under the music videos) */
.section-sub { display: flex; flex-direction: column; gap: 24px; margin: 56px 0 40px; padding-top: 48px; border-top: 1px solid rgba(242, 239, 233, .06); }
.section-sub .section-title { margin-top: 0; }
@media (min-width: 768px) {
  .section-sub { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 32px; margin: 72px 0 56px; padding-top: 64px; }
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 2px;
  font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: background .12s ease-out, border-color .12s ease-out, color .12s ease-out, transform .12s ease-out;
}
.btn:active { transform: scale(.97); transition-duration: .08s; }
.btn-primary { background: var(--gold); color: var(--bg); font-weight: 600; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--bg); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(242, 239, 233, .4); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold-hi); background: rgba(216, 176, 140, .08); color: var(--text); }
.btn-sm { min-height: 44px; padding: 0 20px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 44px; min-height: 44px; padding: 0 12px; border-radius: 2px;
  border: 1px solid rgba(242, 239, 233, .3); color: var(--text);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transition: border-color .12s ease-out, background .12s ease-out, transform .12s ease-out;
}
.icon-btn:hover { border-color: var(--gold-hi); background: rgba(216, 176, 140, .08); color: var(--text); }
.icon-btn:active { transform: scale(.95); transition-duration: .08s; }
.icon-btn-accent { border-color: var(--gold-soft); color: var(--gold); }
.icon-btn-accent:hover { color: var(--gold-hi); }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid rgba(242, 239, 233, .12); border-radius: var(--radius); transition: transform .15s ease-out, border-color .15s ease-out; }
.card:hover { transform: translateY(-3px); border-color: var(--gold-soft); color: inherit; }
a.card:active, button.card:active { transform: scale(.985); border-color: var(--gold-soft); transition-duration: .08s; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(11, 11, 12, .8), rgba(11, 11, 12, 0));
  transition: background .4s ease, backdrop-filter .4s ease;
}
.site-header.is-scrolled { background: rgba(11, 11, 12, .82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(242, 239, 233, .06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { color: var(--text); }
.brand-mark { width: 34px; height: auto; }
.brand-name { font-size: 20px; font-weight: 600; letter-spacing: .28em; }
@media (min-width: 1024px) { .brand-mark { width: 44px; } .brand-name { font-size: 26px; } .brand { gap: 14px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: none; border: 1px solid rgba(242, 239, 233, .25); border-radius: 2px; color: var(--text); cursor: pointer;
  transition: transform .12s ease-out, border-color .12s ease-out;
}
.nav-toggle:active { transform: scale(.94); border-color: rgba(242, 239, 233, .5); transition-duration: .08s; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.site-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 40;
  background: rgba(11, 11, 12, .97);
  padding: 32px var(--gutter);
  transform: translateY(-6px); opacity: 0; visibility: hidden;
  transition: opacity .16s ease-out, transform .18s ease-out, visibility 0s linear .18s;
}
.site-nav.is-open { opacity: 1; transform: none; visibility: visible; transition: opacity .16s ease-out, transform .18s ease-out, visibility 0s; }
.nav-list { display: flex; flex-direction: column; gap: 8px; }
.nav-list a { display: flex; align-items: center; min-height: 52px; font-size: 18px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.nav-list a.is-active:not(.btn) { color: var(--gold-hi); }
.nav-list .btn { margin-top: 16px; }
body.nav-open { overflow: hidden; }
/* Open menu: header strip and panel go fully solid so nothing light behind them bleeds through. */
body.nav-open .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid rgba(242, 239, 233, .08); transition: none; }
.site-nav.is-open { background: var(--bg); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; inset: auto; background: none; padding: 0; transform: none; opacity: 1; visibility: visible; transition: none; }
  .nav-list { flex-direction: row; align-items: center; gap: 36px; }
  .nav-list a { min-height: 0; font-size: 14px; }
  .nav-list .btn { margin: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--bg); }
.hero-media { position: absolute; inset: 0; }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 66% 30%; }
.hero-video { opacity: 0; transition: opacity 1s linear; }
.hero.video-ready .hero-video.is-front { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; }
.hero-scrim-x { background: linear-gradient(180deg, rgba(11, 11, 12, .1) 0%, rgba(11, 11, 12, .15) 40%, rgba(11, 11, 12, .9) 72%, var(--bg) 100%); }
.hero-scrim-y { display: none; }
.grain { position: absolute; inset: 0; opacity: .5; pointer-events: none; background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 3px 3px; }

.hero-content { position: relative; z-index: 1; padding-top: calc(var(--header-h) + 32px); padding-bottom: 88px; display: flex; flex-direction: column; gap: 18px; }
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.eyebrow-line { display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-title { font-size: clamp(72px, 21vw, 168px); line-height: .9; font-weight: 500; letter-spacing: .015em; }
.hero-lede { color: var(--text-soft); max-width: 480px; font-size: 16px; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding-top: 6px; }
.hero-actions .btn-primary { grid-column: span 2; }

.scroll-cue { position: absolute; right: var(--gutter); bottom: 32px; z-index: 1; display: none; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; animation: bob 2.2s ease-in-out infinite; }
.scroll-cue-label { writing-mode: vertical-rl; }
.scroll-cue-line { display: block; width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold), rgba(216, 176, 140, 0)); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.video-toggle {
  position: absolute; left: var(--gutter); bottom: 32px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: rgba(11, 11, 12, .5); border: 1px solid rgba(242, 239, 233, .25); border-radius: 50%; color: var(--text); cursor: pointer;
}
.video-toggle[hidden] { display: none; }
.video-toggle .icon-play { display: none; }
.video-toggle[aria-pressed="false"] .icon-pause { display: none; }
.video-toggle[aria-pressed="false"] .icon-play { display: block; }

@media (min-width: 768px) {
  .hero-poster, .hero-video { object-position: 67% 25%; }
  .hero-content { gap: 24px; padding-bottom: 96px; }
  .hero-lede { font-size: 18px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
  .hero-actions .btn-primary { padding: 0 28px; }
  .scroll-cue { display: flex; }
}
@media (min-width: 1024px) {
  .hero { min-height: 100vh; }
  .hero-poster, .hero-video { object-position: 60% 30%; }
  .hero-scrim-x { background: linear-gradient(90deg, rgba(11, 11, 12, .92) 0%, rgba(11, 11, 12, .72) 34%, rgba(11, 11, 12, .15) 62%, rgba(11, 11, 12, 0) 100%); }
  .hero-scrim-y { display: block; background: linear-gradient(180deg, rgba(11, 11, 12, 0) 55%, rgba(11, 11, 12, .95) 100%); }
  .hero-content { max-width: 100%; padding-bottom: 120px; gap: 28px; }
  .hero-content > * { max-width: 640px; }
  .hero-actions { max-width: 760px; }
  .eyebrow { font-size: 13px; letter-spacing: .32em; }
  .eyebrow-line { width: 40px; }
  .scroll-cue { bottom: 48px; }
  .video-toggle { bottom: 48px; }
}

/* ---------- About ---------- */
.about-grid { display: flex; flex-direction: column; gap: 28px; }
/* About: a faint calligraphy watermark (the vector mark) spanning the whole section */
.about { position: relative; overflow: hidden; }
.about::before { content: ""; position: absolute; left: -4%; top: 50%; height: 118%; aspect-ratio: 600 / 1655; transform: translateY(-50%); background: url("/assets/mark.svg") center / contain no-repeat; opacity: .045; pointer-events: none; }
.about > .container { position: relative; }
@media (min-width: 1024px) { .about::before { left: 6%; } }
.pull { font-size: 22px; line-height: 1.4; font-style: italic; color: var(--text-soft); font-weight: 500; margin-top: 24px; }
.about-body { display: flex; flex-direction: column; gap: 20px; color: var(--text-soft); }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.fact-value { font-size: 24px; line-height: 1.2; color: var(--text); font-weight: 500; }
.fact-year { font-size: 34px; line-height: 1; }
.facts dd { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stage { display: flex; flex-direction: column; gap: 12px; }
.stage-list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); font-size: 15px; }
.stage-list li::before { content: ""; display: block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
@media (min-width: 768px) {
  .about-body { font-size: 18px; gap: 28px; }
  .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding-top: 24px; }
  .fact-value { font-size: 28px; } .fact-year { font-size: 40px; }
  .stage-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; }
  .stage-list li { font-size: 16px; }
}
@media (min-width: 1024px) {
  .about-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
  .about-intro { grid-column: span 4; }
  .about-body { grid-column: 6 / span 7; }
  .pull { font-size: 26px; }
}

/* Phones held upright: a full-height cover crop shows only ~¼ of a 16:9 photo's width, so the subject gets cut.
   Let the photo fill the upper part instead (the scrim already fades the bottom to the page colour) — it shows ~40% more. */
@media (max-width: 767px) and (orientation: portrait) {
  .hero-poster, .hero-video { height: 72%; bottom: auto; }
  .hero-scrim-x { background: linear-gradient(180deg, rgba(11, 11, 12, .1) 0%, rgba(11, 11, 12, .12) 35%, rgba(11, 11, 12, .85) 62%, var(--bg) 74%); }
}

/* Phones held sideways: the whole photo width is visible and the 20vw title would sit on the face. */
@media (max-height: 520px) and (orientation: landscape) {
  .hero-poster, .hero-video { object-position: 60% 30%; }
  .hero-title { font-size: clamp(56px, 16vh, 84px); }
  .hero-content { gap: 12px; padding-top: calc(var(--header-h) + 8px); padding-bottom: 48px; }
  .hero-lede { font-size: 15px; }
  .hero-scrim-x { background: linear-gradient(90deg, rgba(11, 11, 12, .9) 0%, rgba(11, 11, 12, .7) 30%, rgba(11, 11, 12, .15) 58%, rgba(11, 11, 12, 0) 100%); }
  .hero-scrim-y { display: block; background: linear-gradient(180deg, rgba(11, 11, 12, 0) 50%, rgba(11, 11, 12, .95) 100%); }
}

/* ---------- Music ---------- */
.music-grid { display: flex; flex-direction: column; gap: 20px; }
.player-card { display: flex; flex-direction: column; gap: 16px; padding: 20px; background: var(--surface); border: 1px solid rgba(242, 239, 233, .12); border-radius: var(--radius); }
.featured-text { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.featured-title { font-size: 30px; line-height: 1.3; color: var(--text); }
.featured-title-en { font-family: var(--font-display); font-size: 30px; line-height: 1.2; color: var(--text); font-weight: 500; }
.featured-meta { font-size: 13px; color: var(--muted); }
/* color-scheme: light matches Spotify's embed document; with the page on dark, Chrome would otherwise paint an opaque
   white backing behind the iframe that shows at the rounded corners. */
.spotify { display: block; width: 100%; height: 352px; border: 0; border-radius: 12px; background: #1A1A1D; color-scheme: light; }
.player-link { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; min-height: 44px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.player-link:hover { color: var(--gold-hi); }
/* Popular on Spotify: artwork + compact player for the chosen track, ranked list to pick from */
.popular-body { display: flex; flex-direction: column; gap: 18px; }
.popular-player { display: block; min-width: 0; }
.popular-player .spotify { transition: opacity .3s ease; }
.popular-player.is-switching .spotify { opacity: .35; }
.popular-list { list-style: none; margin: 0; padding: 0 6px 0 0; display: flex; flex-direction: column; min-width: 0; max-height: 352px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(242, 239, 233, .25) transparent; }
.popular-list::-webkit-scrollbar { width: 6px; }
.popular-list::-webkit-scrollbar-thumb { background: rgba(242, 239, 233, .25); border-radius: 3px; }
.popular-list::-webkit-scrollbar-track { background: transparent; }
.popular-track { display: grid; grid-template-columns: 20px 44px minmax(0, 1fr) auto; gap: 12px; align-items: center; width: 100%; min-height: 56px; padding: 8px 8px; background: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--text); text-align: left; font: inherit; cursor: pointer; transition: background .12s ease-out, color .12s ease-out; }
.popular-list li:first-child .popular-track { border-top: 1px solid var(--line); }
.popular-track:hover, .popular-track:focus-visible { background: rgba(242, 239, 233, .05); }
.popular-track:active { background: rgba(242, 239, 233, .1); transition-duration: .05s; }
.popular-track[aria-pressed="true"] { color: var(--gold-hi); }
.popular-track[aria-pressed="true"] .popular-rank { color: var(--gold); }
.popular-rank { font-size: 12px; color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.popular-thumb { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; background: #1A1A1D; }
.popular-track-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.popular-track-title { font-size: 15px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popular-track-title.ar { text-align: left; font-size: 17px; font-weight: 500; line-height: 1.3; }
.popular-track-meta { font-size: 12px; color: var(--muted); }
.popular-track-length { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.platforms { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.platform { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding: 0 18px; }
.platform-left { display: flex; align-items: center; gap: 14px; }
.platform-left span { display: flex; flex-direction: column; }
.platform strong { font-size: 16px; }
.platform small { display: none; font-size: 13px; color: var(--muted); }
.platform .arrow { color: var(--gold); flex-shrink: 0; }
@media (min-width: 768px) {
  .player-card { padding: 24px; }
  .featured-title { font-size: 34px; }
  .featured-title-en { font-size: 34px; }
  .platforms { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
  .platform { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 18px; min-height: 0; padding: 20px 18px; }
  .platform-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .platform strong { font-size: 16px; }
  .platform small { display: block; font-size: 12px; }
  .platform .arrow { align-self: flex-end; margin-top: auto; }
}
@media (min-width: 1024px) {
  .music-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 32px; align-items: stretch; }
  .player-card .spotify { margin-top: auto; }
  .popular-body { display: grid; grid-template-columns: minmax(280px, 2fr) minmax(0, 3fr); gap: 28px; align-items: stretch; margin-top: auto; }
  .popular-player .spotify { margin-top: 0; }
  .popular-track { padding: 10px 8px; }
  .platforms { gap: 16px; margin-top: 32px; }
  .platform { padding: 24px; }
  .platform strong { font-size: 17px; }
}

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.video { display: flex; flex-direction: column; gap: 12px; background: none; border: 0; }
.video:hover { transform: none; }
.video-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(242, 239, 233, .12); background: linear-gradient(160deg, #1A1A1D, #0E0E10); transition: border-color .35s ease; }
.video:hover .video-thumb { border-color: var(--gold-soft); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(11, 11, 12, .25); transition: background .15s ease-out; }
.video:hover .video-thumb::after { background: rgba(11, 11, 12, .1); }
.video:active .video-thumb::after { background: rgba(11, 11, 12, .4); }
.video:active .play { transform: translate(-50%, -50%) scale(.94); }
.play { position: absolute; left: 50%; top: 50%; z-index: 1; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(216, 176, 140, .7); background: rgba(11, 11, 12, .6); color: var(--gold); transition: transform .15s ease-out, background .15s ease-out; }
.video:hover .play { transform: translate(-50%, -50%) scale(1.06); background: rgba(11, 11, 12, .8); }
.video-text { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.video-title { font-size: 18px; line-height: 1.4; }
.video-meta { font-size: 13px; color: var(--muted); }
.video-grid .btn { margin-top: 8px; }
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } .play { width: 64px; height: 64px; } .video-title { font-size: 20px; } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } .video { gap: 16px; } .video-title { font-size: 18px; } }
/* Music videos and live performances: six videos each, two per row on phones, three per row from tablet up */
.video-grid-six { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
.video-grid-six .video { gap: 10px; }
.video-grid-six .video-title { font-size: 15px; line-height: 1.35; }
.video-grid-six .video-meta { font-size: 11px; }
.video-grid-six .play { width: 40px; height: 40px; }
.video-grid-six .play svg { width: 16px; height: 16px; }
@media (min-width: 768px) {
  .video-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 20px; }
  .video-grid-six .video-title { font-size: 18px; }
  .video-grid-six .video-meta { font-size: 12px; }
  .video-grid-six .play { width: 56px; height: 56px; }
  .video-grid-six .play svg { width: 22px; height: 22px; }
}
@media (min-width: 1024px) { .video-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; } .video-grid-six .video-title { font-size: 20px; } }

/* ---------- Social: centred amber tiles ----------
   Six equal columns keep one row on every screen. Each tile floats on a soft amber shadow; two faint amber
   shapes sit in opposite corners of the section. */
.social { position: relative; overflow: hidden; }
.social::before, .social::after { content: ""; position: absolute; width: min(38vw, 440px); aspect-ratio: 1.4; background: linear-gradient(135deg, rgba(216, 176, 140, .14), rgba(216, 176, 140, .02)); transform: rotate(-38deg); pointer-events: none; }
.social::before { top: -14vw; left: -12vw; border-radius: 0 0 48px 0; }
.social::after { bottom: -16vw; right: -12vw; border-radius: 48px 0 0 0; background: linear-gradient(315deg, rgba(216, 176, 140, .1), rgba(216, 176, 140, .02)); }
@media (min-width: 1200px) { .social::before { top: -170px; left: -150px; } .social::after { bottom: -190px; right: -150px; } }
.social > .container { position: relative; text-align: center; }
.social .kicker { letter-spacing: .42em; }
.social .rule { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, rgba(216, 176, 140, 0), var(--gold), rgba(216, 176, 140, 0)); }
.js .social .rule[data-reveal] { transform-origin: center; }
.social-stage { margin-top: 40px; }
.social-icons { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; max-width: calc(6 * 88px + 5 * 34px); margin: 0 auto; }
.social-icons li { --c: var(--gold); display: grid; justify-items: center; }  /* all tiles in the site's amber, upright */
.social-icon { display: grid; place-items: center; width: 100%; max-width: 88px; aspect-ratio: 1; border-radius: 22%; color: var(--c); background: color-mix(in srgb, var(--c) 17%, #141416); border: 1px solid color-mix(in srgb, var(--c) 28%, transparent); transition: background .25s ease-out, border-color .25s ease-out, box-shadow .25s ease-out; }
.social-icon svg { width: 44%; height: 44%; }
.social-icon:hover, .social-icon:focus-visible, .social-icon.is-lit { color: var(--c); background: color-mix(in srgb, var(--c) 28%, #141416); border-color: color-mix(in srgb, var(--c) 55%, transparent); box-shadow: 0 0 28px -6px color-mix(in srgb, var(--c) 55%, transparent); }
.social-glow { width: 78%; height: 14px; margin-top: 16px; border-radius: 50%; background: radial-gradient(closest-side, color-mix(in srgb, var(--c) 30%, rgba(0, 0, 0, .7)), rgba(0, 0, 0, 0)); filter: blur(2px); }
.social-mail { margin-top: 30px; font-size: 14px; color: var(--muted); }
.social-mail a { color: var(--text-soft); text-decoration: underline; text-decoration-color: var(--gold-soft); text-underline-offset: 3px; overflow-wrap: anywhere; }
.social-mail a:hover { color: var(--gold-hi); }
@media (max-width: 360px) { .social-icons { gap: 5px; } }
@media (min-width: 768px) { .social-stage { margin-top: 52px; } .social-icons { gap: 26px; } .social-mail { margin-top: 36px; } }
@media (min-width: 1024px) { .social-stage { margin-top: 64px; } .social-icons { gap: 34px; } }

/* ---------- Contact ---------- */
.contact-grid { display: flex; flex-direction: column; gap: 32px; }
.booking { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.phones { display: flex; flex-direction: column; gap: 10px; }
.phone { display: flex; flex-direction: column; gap: 14px; padding: 18px; }
.phone:hover { transform: none; }
.phone-text { display: flex; flex-direction: column; gap: 4px; }
.phone-text small { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.phone-number { font-size: 26px; line-height: 1.2; font-weight: 500; letter-spacing: .02em; }
.phone-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 768px) {
  .phone { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 24px; }
  .phone-number { font-size: 28px; }
  .phone-actions { display: flex; gap: 8px; }
  .icon-btn { padding: 0; width: 44px; }
  .icon-btn-label { display: none; }
}
/* Email address under the Contact heading: the address set large in the display face, a gold underline
   that draws in on hover, and a small copy button */
.contact-email { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); container-type: inline-size; }
.contact-email-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-email-link { position: relative; display: inline-flex; align-items: flex-start; gap: 10px; max-width: 100%; padding-bottom: 8px; font-family: var(--font-display); font-size: 24px; font-size: min(40px, calc((100cqi - 36px) / 11)); line-height: 1.1; font-weight: 500; letter-spacing: .01em; color: var(--text); }
/* sized to the column so the address always sits on one line (text is ~10.9em wide) */
.contact-email-link span { min-width: 0; white-space: nowrap; }
.contact-email-link svg { flex-shrink: 0; margin-top: .12em; color: var(--gold); transition: transform .25s var(--ease); }
.contact-email-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(216, 176, 140, .15)); transform: scaleX(.28); transform-origin: left; transition: transform .45s var(--ease); }
.contact-email-link:hover { color: var(--text); }
.contact-email-link:hover::after, .contact-email-link:focus-visible::after { transform: scaleX(1); }
.contact-email-link:hover svg { transform: translate(3px, -3px); }
.contact-copy { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid rgba(242, 239, 233, .22); border-radius: 999px; background: none; color: var(--text-soft); font: inherit; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: border-color .15s ease-out, color .15s ease-out, transform .12s ease-out; }
.contact-copy:hover { border-color: var(--gold-soft); color: var(--gold-hi); }
.contact-copy:active { transform: scale(.96); transition-duration: .08s; }
.contact-copy.is-copied { border-color: var(--gold); color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .contact-email-link::after, .contact-email-link svg, .contact-copy { transition: none; } }
@media (min-width: 1024px) {
  .contact-email { margin-top: 44px; padding-top: 32px; }
}

@media (min-width: 1024px) {
  .contact-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
  .contact-intro { grid-column: span 5; }
  .contact-form { grid-column: 7 / span 6; }
  .booking { margin-top: 40px; gap: 20px; }
}

.contact-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  background: var(--bg-alt); color: var(--text); border: 1px solid rgba(242, 239, 233, .18); border-radius: 2px;
  font: inherit; font-size: 16px; transition: border-color .12s ease-out;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:hover, .contact-form textarea:hover { border-color: var(--gold-soft); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: #C9613D; }
.form-note { color: var(--muted); font-size: 14px; }
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.form-error { color: #E08A6A; font-size: 14px; }
.form-actions { display: flex; }
.form-actions .btn { width: 100%; }
@media (min-width: 768px) {
  .contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .contact-form .span-2 { grid-column: span 2; }
  .contact-form textarea { min-height: 160px; }
  .form-actions .btn { width: auto; padding: 0 32px; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(242, 239, 233, .08); padding: 48px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-inner .brand-mark { width: 34px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 20px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-legal { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(242, 239, 233, .06); font-size: 12px; color: var(--faint); }
.footer-credit { display: inline-flex; align-items: center; gap: 12px; margin: 8px 0 4px; }
.footer-credit img { height: 40px; width: auto; opacity: .8; }
@media (min-width: 1024px) {
  .site-footer { padding: 56px 0 40px; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; gap: 32px; }
  .footer-inner .brand-mark { width: 40px; }
  .footer-nav { gap: 28px; font-size: 13px; }
  .footer-nav a { min-height: 0; }
  /* three columns so the Replay Web credit sits exactly in the middle */
  .footer-legal { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; font-size: 13px; }
  .footer-legal > :first-child { justify-self: start; }
  .footer-legal > :last-child { justify-self: end; }
  .footer-credit { margin: 0; }
}

/* ---------- Design pass: brand lockup, facts, cover card, editorial social ---------- */
/* Hero lockup: the calligraphic mark stands beside the Latin name at cap height and draws in from the base. */
.hero-lockup { display: inline-flex; align-items: flex-end; gap: .12em; }
.hero-mark { height: 1.15em; width: auto; margin-bottom: .02em; filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .45)); }
.js .hero-mark { clip-path: inset(100% 0 0 0); animation: mark-draw 1.5s var(--ease) .35s forwards; }
.has-gsap .hero-mark, .has-gsap .reveal { animation: none; }
@keyframes mark-draw { to { clip-path: inset(0 0 0 0); } }

/* Music: featured release as a cover-art card (the one Spotify player sits in the top-tracks card) */
.featured-cover { position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; border: 0; border-radius: 10px; overflow: hidden; background: #1A1A1D; cursor: pointer; }
.featured-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.featured-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 11, 12, 0) 55%, rgba(11, 11, 12, .7) 100%); }
.featured-play { position: absolute; left: 16px; bottom: 16px; z-index: 1; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 18px 0 14px; border-radius: 999px; background: var(--gold); color: var(--bg); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: transform .12s ease-out, background .12s ease-out; }
.featured-cover:hover img { transform: scale(1.03); }
.featured-cover:hover .featured-play { background: var(--gold-hi); }
.featured-cover:active .featured-play { transform: scale(.95); transition-duration: .08s; }
@media (min-width: 1024px) { .featured .featured-cover { margin-top: auto; } }

/* Section titles: word-by-word reveal by GSAP SplitText (masked words; SplitText keeps an aria-label with the full text) */
.js .section-title.is-split { opacity: 1 !important; transform: none !important; transition: none !important; }


/* ---------- Lenis smooth scroll (from lenis.css 1.3.26) ---------- */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Opening intro: ink writes the mark, then the curtain opens (first visit per session) ---------- */
.intro { display: none; }
.intro-on .intro { display: block; position: fixed; inset: 0; z-index: 200; overflow: hidden; cursor: pointer; animation: intro-bail .4s ease 5s forwards; }
.intro-panel { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--bg); }
.intro-panel-l { left: 0; }
.intro-panel-r { right: 0; }
.intro-mark { position: absolute; inset: 0; margin: auto; width: auto; height: min(52vh, 440px); overflow: visible; color: var(--gold); will-change: transform; }
.intro-ink { fill: currentColor; }
.ink-stroke { fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1 2; stroke-dashoffset: 1; }
.ink-cut { stroke: #000; } /* a crossing stroke cutting its gap into the alef as it passes over */
/* Safety net: if the script never takes over, the overlay steps aside on its own. */
@keyframes intro-bail { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .intro-on .intro { display: none; } }

/* ---------- Motion: reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.hero-content > .reveal:nth-child(1) { animation-delay: .1s; }
.hero-content > .reveal:nth-child(2) { animation-delay: .3s; }
.hero-content > .reveal:nth-child(3) { animation-delay: .5s; }
.hero-content > .reveal:nth-child(4) { animation-delay: .7s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].in-view { opacity: 1; transform: none; }
.js .rule[data-reveal] { transform: scaleX(0); }
.js .rule[data-reveal].in-view { transform: scaleX(1); transition-duration: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-cue, .reveal { animation: none !important; }
  .reveal, .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card, .video-thumb img, .play, .btn { transition: none !important; }
  .card:hover, .btn-primary:hover { transform: none; }
  .js .hero-mark { animation: none; clip-path: none; }
  .featured-cover img, .social-icon { transition: none; }
}

/* ---------- Utility pages ---------- */
.page-simple { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: calc(var(--header-h) + 40px) var(--gutter) 80px; }
.page-simple .inner { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 560px; }
.page-simple p { color: var(--text-soft); font-size: 18px; }
