/* =========================
   HUAMBO RECORDS - GLOBAL
   ========================= */

* {
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --bg-soft: #101010;
  --bg-card: #151515;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-soft: rgba(255, 255, 255, 0.48);
  --accent: #ff7a2f;
  --accent-dark: #471c02;
  --accent-soft: rgba(255, 122, 47, 0.16);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);
  --radius: 22px;
  --max-width: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 47, 0.11), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 35%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), 90%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #111111;
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.button.small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}


/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}


/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.78) 42%, rgba(7, 7, 7, 0.32) 100%),
    radial-gradient(circle at 72% 30%, rgba(255, 122, 47, 0.24), transparent 34%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0) 0%, rgba(7,7,7,0.25) 50%, rgba(7,7,7,1) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 670px;
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.hero-pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
}


/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 95px 0;
}

.section.compact {
  padding: 70px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-title {
  max-width: 760px;
}

.section h2,
.section-title h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section p,
.section-title p {
  color: var(--text-muted);
  max-width: 760px;
}

.section-title p {
  font-size: 18px;
  margin: 18px 0 0;
}


/* =========================
   CARDS
   ========================= */

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.card .button {
  margin-top: 22px;
}


/* =========================
   SERVICES
   ========================= */

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.service-price {
  margin-top: 20px;
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
}

.service-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.service-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border-soft);
}

.service-list li:last-child {
  border-bottom: 0;
}


/* =========================
   RELEASES
   ========================= */

.releases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.release-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.release-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.release-card:hover img {
  transform: scale(1.06);
  opacity: 0.72;
}

.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.82) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.release-card:hover::after {
  opacity: 1;
}

.release-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.release-card:hover .release-info {
  transform: translateY(0);
  opacity: 1;
}

.release-info strong {
  display: block;
  font-size: 14px;
}

.release-info span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 3px;
}


/* =========================
   SOUNDCLOUD
   ========================= */

.soundcloud-block {
  margin-top: 36px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.soundcloud-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 20px;
}

.soundcloud-header h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.soundcloud-player {
  overflow: hidden;
  border-radius: 18px;
  background: #111111;
  border: 1px solid var(--border-soft);
}

.soundcloud-player iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* =========================
   VINYL
   ========================= */

.vinyl-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 520px));
  gap: 24px;
}

.vinyl-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.vinyl-image-link {
  display: block;
  overflow: hidden;
  background: #111111;
}

.vinyl-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.vinyl-card:hover img {
  transform: scale(1.035);
  opacity: 0.88;
}

.vinyl-content {
  padding: 26px;
}

.vinyl-label {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

.vinyl-content h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.vinyl-content p {
  margin: 0;
  color: var(--text-muted);
}

.vinyl-content .button {
  margin-top: 22px;
}


/* =========================
   SAMPLES / BANDCAMP
   ========================= */

.samples-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.sample-tags span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
}

.bandcamp-card {
  overflow: hidden;
}

.bandcamp-card .button {
  margin-top: 22px;
}

.bandcamp-widget {
  margin-top: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
}

.bandcamp-widget iframe {
  display: block;
  border: 0;
  width: 100%;
  max-width: 350px;
  height: 470px;
}

.sample-image-card {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.sample-image-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.sample-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.32) 100%);
}


/* =========================
   CTA
   ========================= */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 56px;
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.24), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}

.cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.cta p {
  margin: 20px 0 0;
  max-width: 650px;
  color: var(--text-muted);
  font-size: 18px;
}


/* =========================
   CONTACT
   ========================= */

.contact-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--text-muted);
}


/* =========================
   LEGAL PAGES
   ========================= */

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0 0 30px;
}

.legal-page h2 {
  margin-top: 42px;
}

.legal-page h3 {
  margin-top: 30px;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page a {
  color: var(--accent);
}

.legal-page ul {
  padding-left: 22px;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 42px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: rgba(255,255,255,0.75);
}

.site-footer a:hover {
  color: #ffffff;
}


/* =========================
   COOKIE CONSENT
   ========================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.16), transparent 35%),
    rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cookie-banner p,
.cookie-modal p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cookie-banner a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 14px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
}

.cookie-modal-box {
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #101010;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
}

.cookie-option {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cookie-option strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.cookie-required {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}


/* =========================
   EMBEDS BLOCKED UNTIL CONSENT
   ========================= */

.cookie-embed-wrapper {
  position: relative;
}

.cookie-embed-wrapper iframe {
  display: none;
}

.cookie-embed-wrapper.cookies-accepted iframe {
  display: block;
}

.cookie-embed-placeholder {
  padding: 28px;
  min-height: 220px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.cookie-embed-wrapper.cookies-accepted .cookie-embed-placeholder {
  display: none;
}

.cookie-embed-placeholder h3 {
  margin: 0;
  font-size: 22px;
  color: #ffffff;
}

.cookie-embed-placeholder p {
  margin: 0;
  color: var(--text-muted);
}

.cookie-embed-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .grid.three,
  .grid.two,
  .samples-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .releases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-header,
  .soundcloud-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-image-card img {
    min-height: auto;
    max-height: 680px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
  }

  .logo img {
    height: 38px;
  }

  .hero {
    min-height: 76vh;
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.86) 0%, rgba(7, 7, 7, 0.78) 45%, rgba(7, 7, 7, 1) 100%),
      radial-gradient(circle at 72% 30%, rgba(255, 122, 47, 0.18), transparent 34%),
      url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero .container {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .soundcloud-block {
    padding: 20px;
  }

  .bandcamp-widget iframe {
    max-width: 100%;
    height: 470px;
  }

  .sample-image-card img {
    max-height: none;
  }

  .cta {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .releases-grid {
    grid-template-columns: 1fr;
  }

  .hero-pill {
    width: 100%;
  }
}