/*
Theme Name: Wet Socket Records
Theme URI: https://wetsocketrecords.com
Author: Wet Socket Records
Author URI: https://wetsocketrecords.com
Description: One-page luxury cinematic landing theme for Wet Socket Records.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: wet-socket-records
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&family=Sora:wght@500;600;700&display=swap');

:root {
  --bg: #040506;
  --bg-soft: #0a0c0f;
  --ink: #eef1f5;
  --ink-soft: rgba(232, 236, 243, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --glass: rgba(10, 12, 15, 0.46);
  --card: rgba(255, 255, 255, 0.04);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: min(1240px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.wsr-shell {
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #040506 0%, #050608 32%, #06080b 100%);
}

.wsr-wrap {
  width: var(--max);
  margin-inline: auto;
}

.wsr-nav-wrap {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 2.4rem));
  z-index: 40;
  pointer-events: none;
}

.wsr-nav {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 8, 11, 0.74);
  -webkit-backdrop-filter: blur(10px) saturate(105%);
  backdrop-filter: blur(10px) saturate(105%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 0.56rem 0.78rem;
}

.wsr-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
  z-index: 0;
}

.wsr-nav > * {
  position: relative;
  z-index: 1;
}

.wsr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.wsr-brand-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  object-fit: cover;
}

.wsr-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsr-nav-links a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4rem 0.56rem;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}

.wsr-nav-links a:hover,
.wsr-nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.wsr-hero {
  position: relative;
  min-height: 98svh;
  isolation: isolate;
  overflow: hidden;
}

.wsr-hero-media {
  position: absolute;
  inset: 0;
}

.wsr-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform-origin: center center;
  animation: wsr-hero-zoom 24s ease-in-out infinite alternate;
}

.wsr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.3) 54%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
}

.wsr-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 15vh;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0) 0%, #06080b 92%);
  z-index: 2;
}

.wsr-brand-strip {
  position: relative;
  margin-top: -24px;
  padding: clamp(1.2rem, 3.8vw, 2.8rem) 0 1.1rem;
}

.wsr-brand-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(11, 13, 16, 0.9), rgba(9, 11, 14, 0.66));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wsr-brand-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
}

.wsr-brand-copy {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.wsr-eyebrow {
  margin: 0 0 0.8rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  font-size: 0.68rem;
  color: rgba(239, 244, 255, 0.78);
}

.wsr-brand-copy p {
  margin: 0;
  color: rgba(235, 240, 248, 0.9);
  font-size: 1.06rem;
  line-height: 1.64;
  max-width: 44ch;
}

.wsr-releases {
  padding: clamp(2.2rem, 5vw, 4.1rem) 0;
}

.wsr-releases h2,
.wsr-about h2 {
  margin: 0 0 0.7rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.wsr-section-lead {
  margin: 0;
  color: var(--ink-soft);
}

.wsr-release-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.wsr-release-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  min-height: 260px;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.wsr-release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.46);
}

.wsr-release-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.66) contrast(1.06) brightness(0.52);
}

.wsr-release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.15) 0%, rgba(2, 3, 4, 0.78) 85%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 40%);
}

.wsr-release-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem;
}

.wsr-release-meta h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  font-weight: 600;
}

.wsr-release-meta p {
  margin: 0.32rem 0 0;
  color: rgba(235, 239, 247, 0.72);
  font-size: 0.83rem;
}

.wsr-divider {
  height: clamp(9vh, 13vh, 16vh);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #070a0e 0%, #05070a 100%);
}

.wsr-divider img {
  display: none !important;
}

.wsr-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 11, 0.04) 0%, rgba(6, 8, 11, 0.58) 54%, rgba(6, 8, 11, 0.92) 100%);
}

.wsr-divider::after {
  content: none;
}

.wsr-about {
  position: relative;
  padding: clamp(2.6rem, 5.2vw, 4.6rem) 0;
  background: linear-gradient(180deg, #05070a 0%, #040507 100%);
}

.wsr-about-bg {
  display: none !important;
}

.wsr-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.62) contrast(1.05) brightness(0.38);
}

.wsr-about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 8, 0.78) 0%, rgba(4, 6, 8, 0.88) 100%);
}

.wsr-about-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(7, 10, 13, 0.74);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 3vw, 2.8rem);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
}

.wsr-about p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 74ch;
}

.wsr-about p + p {
  margin-top: 1rem;
}

.wsr-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.4rem 0 2.8rem;
}

.wsr-footer-inner {
  width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.58rem;
  color: rgba(226, 231, 240, 0.38);
}

.wsr-footer-inner img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.42;
}

.wsr-footer-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[data-wsr-reveal] {
  opacity: 0;
  transform: translateY(12px);
  animation: wsr-fade-up 900ms ease forwards;
}

[data-wsr-reveal="2"] {
  animation-delay: 120ms;
}

[data-wsr-reveal="3"] {
  animation-delay: 180ms;
}

@keyframes wsr-hero-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

@keyframes wsr-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .wsr-nav-wrap {
    top: 0.95rem;
    width: min(920px, calc(100% - 1.2rem));
  }

  .wsr-hero {
    min-height: 92svh;
  }

  .wsr-brand-strip {
    margin-top: -18px;
    padding-top: clamp(1rem, 3vw, 2rem);
  }

  .wsr-brand-panel {
    grid-template-columns: 1fr;
  }

  .wsr-brand-panel img {
    min-height: 240px;
  }

  .wsr-release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wsr-hero-media img,
  .wsr-divider img,
  .wsr-about-bg img {
    object-position: center 48%;
  }
}

@media (max-width: 760px) {
  :root {
    --max: min(1240px, calc(100% - 1.25rem));
  }

  .wsr-hero {
    min-height: 84svh;
  }

  .wsr-brand-strip {
    margin-top: -10px;
    padding-top: 0.8rem;
    padding-bottom: 0.75rem;
  }

  .wsr-brand-copy p {
    font-size: 1rem;
  }

  .wsr-nav {
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0.58rem;
  }

  .wsr-brand {
    justify-content: center;
  }

  .wsr-nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .wsr-nav-links a {
    font-size: 0.62rem;
  }

  .wsr-release-grid {
    grid-template-columns: 1fr;
  }

  .wsr-divider {
    height: 14vh;
  }

  .wsr-hero-media img,
  .wsr-divider img,
  .wsr-about-bg img {
    object-position: center 52%;
  }

  .wsr-footer {
    padding-top: 1.8rem;
  }
}
