/* =====================
   CSS Variables
   ===================== */
:root {
  --rw-red: #8b2626;
  --rw-red-dark: #681a1a;
  --rw-blue: #133a63;
  --rw-blue-deep: #0c243d;
  --rw-cream: #e7ddc8;
  --rw-cream-deep: #d2c5a6;
  --rw-offwhite: #f6f2e9;
  --rw-ink: #111317;
}

/* =====================
   Reset
   ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

/* =====================
   Base Styles
   ===================== */
body {
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #1c426f 0, #050811 70%);
  color: var(--rw-offwhite);
  text-rendering: geometricPrecision;
}

/* =====================
   Global Grain Texture
   ===================== */
.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 0
  );
  background-size: 3px 3px;
  z-index: 0;
}

/* =====================
   Layout Helpers
   ===================== */
.inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 4rem 0;
  position: relative;
}

/* =====================
   Header
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 10, 20, 0.96);
  border-bottom: 2px solid rgba(231, 221, 200, 0.18);
  backdrop-filter: blur(10px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.25rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
}

.wordmark {
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--rw-cream);
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246, 242, 233, 0.78);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--rw-red);
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

/* =====================
   Hero
   ===================== */
.hero {
  padding: 4.5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      circle at top left,
      rgba(231, 221, 200, 0.06),
      transparent 58%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(139, 38, 38, 0.16),
      transparent 60%
    );
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 3rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 260px;
  max-width: 80vw;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.64));
}

.hero-copy {
  color: var(--rw-offwhite);
}

.hero-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.hero-tagline {
  font-size: 1.05rem;
  max-width: 30rem;
  color: rgba(246, 242, 233, 0.85);
  margin-bottom: 1.6rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease-out,
    color 0.15s ease-out,
    border-color 0.15s ease-out,
    transform 0.12s ease-out;
}

.btn-primary {
  background: var(--rw-red);
  border-color: var(--rw-red-dark);
  color: var(--rw-cream);
}

.btn-primary:hover {
  background: var(--rw-red-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(231, 221, 200, 0.7);
  color: var(--rw-cream);
}

.btn-outline:hover {
  background: rgba(231, 221, 200, 0.08);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--rw-cream);
  color: var(--rw-blue);
  border-color: transparent;
}

.btn-secondary:hover {
  background: var(--rw-cream-deep);
}

.btn-success {
  background: #2e8b57 !important;
  border-color: #1f5e3b !important;
  color: var(--rw-cream) !important;
  line-height: 1;
}

.btn-full-width {
  width: 100%;
}

/* =====================
   Text Links
   ===================== */
.text-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-size: 0.9rem;
  color: rgba(246, 242, 233, 0.8);
}

.text-link:hover {
  color: var(--rw-cream);
}

/* =====================
   Section Variants
   ===================== */
.section-light {
  background:
    radial-gradient(circle at top, rgba(12, 36, 61, 0.16), transparent 55%),
    var(--rw-cream);
  color: var(--rw-ink);
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(231, 221, 200, 0.08), transparent 48%),
    linear-gradient(135deg, var(--rw-blue-deep), #050811);
  color: var(--rw-offwhite);
}

.section-strip {
  background: repeating-linear-gradient(
    -45deg,
    var(--rw-red-dark) 0,
    var(--rw-red-dark) 6px,
    var(--rw-red) 6px,
    var(--rw-red) 12px
  );
  color: var(--rw-cream);
}

/* =====================
   Section Headers
   ===================== */
.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.section-kicker {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* =====================
   Music Section
   ===================== */
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: start;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 1.8rem;
  align-items: center;
  background: linear-gradient(145deg, #f0e6d1, #e0d4bc);
  border-radius: 18px;
  border: 2px solid rgba(12, 36, 61, 0.22);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.fake-artwork {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(139, 38, 38, 0.36),
      transparent 58%
    ),
    radial-gradient(circle at bottom right, rgba(19, 58, 99, 0.86), #0b1731);
  color: var(--rw-cream);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
}

.fake-artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 1px,
    transparent 0
  );
  background-size: 3px 3px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.fake-artwork-title {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.fake-artwork-sub {
  font-size: 1.4rem;
  font-weight: 700;
}

.feature-body {
  padding: 1.4rem 1.4rem 1.4rem 0;
  font-size: 0.95rem;
  color: #3a3529;
}

.listen-links {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.platform-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 36, 61, 0.22);
  background: rgba(246, 242, 233, 0.8);
  font-size: 0.8rem;
  text-decoration: none;
  color: #1d2233;
}

/* =====================
   Tour Section
   ===================== */
.tour-list {
  margin-top: 0.5rem;
}

.tour-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(231, 221, 200, 0.2);
  background: radial-gradient(
    circle at top left,
    rgba(231, 221, 200, 0.1),
    transparent 55%
  );
  margin-bottom: 0.75rem;
}

.tour-row--placeholder {
  opacity: 0.8;
}

.tour-date {
  border-radius: 10px;
  border: 1px solid rgba(231, 221, 200, 0.4);
  padding: 0.45rem 0.75rem;
  text-align: center;
  line-height: 1.1;
}

.tour-month {
  display: block;
  text-transform: uppercase;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.tour-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.tour-details {
  font-size: 0.95rem;
}

.tour-city {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.8rem;
}

.tour-venue {
  opacity: 0.9;
}

.tour-cta {
  justify-self: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Oswald", system-ui, sans-serif;
}

.badge-muted {
  background: rgba(231, 221, 200, 0.12);
  border: 1px solid rgba(231, 221, 200, 0.5);
  color: rgba(231, 221, 200, 0.9);
}

.tour-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =====================
   Store Section
   ===================== */
.store-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.store-card {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.5),
    rgba(230, 219, 198, 0.98)
  );
  border-radius: 18px;
  border: 2px solid rgba(139, 38, 38, 0.4);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  padding: 1.1rem 1.2rem 1.4rem 1.2rem;
  font-size: 0.92rem;
}

.store-art {
  height: 130px;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  position: relative;
  overflow: hidden;
}

.store-art--tee {
  background: radial-gradient(
    circle at center,
    var(--rw-cream) 0,
    var(--rw-cream) 52%,
    var(--rw-blue) 53%,
    var(--rw-blue) 100%
  );
}

.store-art--hoodie {
  background:
    linear-gradient(135deg, var(--rw-blue-deep), var(--rw-blue)),
    radial-gradient(
      circle at top left,
      rgba(139, 38, 38, 0.36),
      transparent 60%
    );
  background-blend-mode: overlay;
}

.store-art--vinyl {
  background: radial-gradient(
    circle at center,
    var(--rw-ink) 0,
    #1c1f26 58%,
    #050811 100%
  );
}

.store-art--vinyl::after {
  content: "";
  position: absolute;
  inset: 18% 18%;
  border-radius: 50%;
  border: 2px solid rgba(246, 242, 233, 0.25);
}

.store-title {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.store-copy {
  font-size: 0.9rem;
  color: #40382b;
}

.store-cta-wrap {
  margin-top: 2.2rem;
  text-align: center;
}

/* =====================
   Mailing List Strip
   ===================== */
.strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.strip-title {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.strip-text {
  font-size: 0.95rem;
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.email-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.6rem 0.7rem;
  border-radius: 999px;
  border: 2px solid rgba(231, 221, 200, 0.9);
  background: rgba(21, 7, 7, 0.18);
  color: var(--rw-cream);
  font-size: 0.92rem;
}

.email-form input::placeholder {
  color: rgba(231, 221, 200, 0.75);
}

/* =====================
   Footer
   ===================== */
.site-footer {
  background: #050811;
  color: rgba(246, 242, 233, 0.75);
  padding: 1.8rem 0 2.2rem 0;
  border-top: 1px solid rgba(231, 221, 200, 0.16);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  font-size: 0.85rem;
}

.footer-sub {
  margin-top: 0.2rem;
  opacity: 0.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(246, 242, 233, 0.82);
}

.footer-links a:hover {
  color: var(--rw-cream);
}

/* =====================
   Responsive (Tablet)
   ===================== */
@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-copy {
    text-align: center;
    margin-top: 1.4rem;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-body {
    padding-right: 1.4rem;
  }

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

  .strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header .inner {
    gap: 0.6rem;
  }

  .main-nav {
    gap: 0.9rem;
  }
}

/* =====================
   Responsive (Mobile)
   ===================== */
@media (max-width: 600px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .tour-row {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }

  .tour-cta {
    grid-column: 1 / -1;
    justify-self: flex-start;
    margin-top: 0.4rem;
  }

  .store-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================
   Dropdown Components
   ===================== */
.dropdown-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.dropdown-list.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-list li a {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: rgba(246, 242, 233, 0.78);
  text-decoration: none;
  padding: 0.45rem 0;
  display: block;
  transition:
    color 0.25s ease,
    text-shadow 0.35s ease;
}

.dropdown-list li a:hover {
  color: var(--rw-cream);
  text-shadow:
    0 0 10px rgba(231, 221, 200, 1),
    0 0 22px rgba(139, 38, 38, 0.9),
    0 0 38px rgba(19, 58, 99, 0.9),
    0 0 64px rgba(19, 58, 99, 0.7);
}

.dropdown-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0.8rem 0;
  margin: 0;
  border-radius: 14px;
  background: rgba(5, 10, 20, 0.96);
  border: 2px solid var(--rw-cream);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  text-align: center;
}

/* =====================
   Animations
   ===================== */
@keyframes pop-check {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =====================
   Homepage Container
   ===================== */
.homepage-container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding-top: 4rem;
}

/* =====================
   Homepage Logo
   ===================== */
.homepage-logo {
  width: 140px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

/* =====================
   Homepage Title
   ===================== */
.homepage-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 2.2rem;
  color: var(--rw-cream);
  margin-bottom: 0.4rem;
}

/* =====================
   Homepage Tagline
   ===================== */
.homepage-tagline {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* =====================
   Homepage Navigation
   ===================== */
.homepage-nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

/* =====================
   Homepage Mailing List
   ===================== */
.mailing-list-section {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.mailing-list-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
  color: var(--rw-cream);
  margin-bottom: 0.8rem;
}

.mailing-list-description {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.4rem;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.mailing-list-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mailing-list-input {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--rw-cream);
  background: rgba(255, 255, 255, 0.05);
  color: var(--rw-offwhite);
  flex: 1 1 220px;
  max-width: 260px;
  font-size: 0.9rem;
}

.mailing-list-submit {
  padding: 0.7rem 1.6rem;
}

.mailing-list-success {
  display: none;
  margin-top: 1rem;
  color: var(--rw-cream);
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* =====================
   Homepage Footer
   ===================== */
.homepage-footer {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =====================
   Homepage Responsive
   ===================== */
@media (max-width: 768px) {
  .homepage-container {
    max-width: 90%;
    padding-top: 3rem;
  }

  .homepage-nav {
    gap: 0.75rem;
  }

  .btn-full-width {
    max-width: 320px;
    margin: 0 auto;
  }

  .dropdown-box {
    left: 25%;
    right: 25%;
  }

  .homepage-logo {
    width: 120px;
  }

  .homepage-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .homepage-container {
    max-width: 95%;
    padding-top: 2rem;
  }

  .btn-full-width {
    max-width: 280px;
  }

  .dropdown-box {
    left: 10%;
    right: 10%;
  }

  .homepage-logo {
    width: 100px;
  }

  .homepage-title {
    font-size: 1.5rem;
  }
}
