:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6b6b6b;
  --gold: #b3892f;
  --gold-soft: #f2e8d5;
  --border: #e6e6e6;
  --max: 720px;
  --header-pad-top: 32px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", var(--font-body);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-pad-top) 24px 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

.wordmark-logo {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-logo {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 16px;
}

.wordmark:hover {
  color: var(--gold);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 64px;
}

/* ---------- Landing bubbles ---------- */

.intro {
  text-align: center;
  margin-bottom: 56px;
}

.intro h1 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}

.intro p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}

.bubbles {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tiny-link {
  display: block;
  margin-top: 40px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.tiny-link:hover {
  color: var(--ink);
}

.bubble {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.bubble span {
  padding: 0 20px;
}

.bubble:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (max-width: 560px) {
  .bubbles { gap: 24px; }
  .bubble { width: 148px; height: 148px; font-size: 12px; }
}

/* ---------- Simple sub-page layout ---------- */

.page-title {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.link-list a {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.link-list a:hover {
  background: var(--ink);
  color: #fff;
}

.subtext {
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  max-width: 340px;
  line-height: 1.6;
}

/* ---------- Music page (blonded-style) ---------- */

.music-body main.music-main {
  justify-content: flex-start;
  padding-top: 24px;
}

.hero-cover {
  display: block;
  width: min(70vw, 460px);
  margin: 0 auto;
}

.hero-cover .cover-art {
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.hero-cover .cover-art img {
  border-radius: 0;
}

.hero-cover:hover .cover-art {
  opacity: 0.85;
}

.hero-caption {
  width: min(70vw, 460px);
  margin: 8px auto 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
}

/* ---------- Music grid ---------- */

.music-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: var(--max);
}

.cover-card {
  display: block;
  flex: 0 1 150px;
}

.cover-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-art--placeholder {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  padding: 16px;
}

.cover-art span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.cover-card:hover .cover-art {
  transform: scale(1.03);
}

.cover-label {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.03em;
}

.cover-label .kind {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

/* ---------- Track page ---------- */

.track-cover {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}

.track-cover--placeholder {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  padding: 20px;
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.track-cover span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.track-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin: 0 0 4px;
  text-align: center;
}

.track-sub {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 32px;
  text-align: center;
}

.back-link {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.back-link:hover {
  color: var(--ink);
}

/* ---------- Content / UGC page (La Frame Media style) ---------- */

body.ugc-body {
  background: #0a0a0a;
  color: #f5f5f5;
}

.ugc-header {
  padding: var(--header-pad-top) 24px 0;
}

.ugc-header .wordmark {
  color: #f5f5f5;
}

.ugc-header .wordmark:hover {
  color: #cfa955;
}

main.ugc-main {
  justify-content: flex-start;
  width: 100%;
  padding: 40px 24px 80px;
}

.ugc-intro {
  text-align: center;
  margin-bottom: 48px;
}

.ugc-intro h1 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
}

.ugc-intro p {
  font-size: 13px;
  color: #a8a8a8;
  margin: 0;
  font-style: italic;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.ugc-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ugc-tile:hover {
  opacity: 0.85;
}

.ugc-tile--disabled {
  cursor: default;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  opacity: 0.55;
}

.ugc-tile--disabled:hover {
  opacity: 0.55;
}

.ugc-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ugc-tile-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 0;
  opacity: 0.9;
}

.ugc-tile--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 55%);
  z-index: 1;
}

.ugc-label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.ugc-soon {
  position: relative;
  z-index: 1;
  color: #cfcfcf;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ugc-automobile {
  background: linear-gradient(160deg, #3a3a3a, #111111);
}

.ugc-immobilier {
  background: linear-gradient(160deg, #2b2416, #111111);
}

@media (max-width: 640px) {
  .ugc-grid { grid-template-columns: 1fr; }
}
