@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --burgundy: #821431;
  --burgundy-dark: #5c0e23;
  --burgundy-soft: #a61d42;
  --cream: #f7f2eb;
  --cream-dark: #ebe3d6;
  --ink: #1a1412;
  --ink-soft: #4a3f3a;
  --muted: #6b5e57;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 20, 18, 0.12);
  --shadow-soft: 0 4px 16px rgba(26, 20, 18, 0.08);
  --radius: 14px;
  --header-h: 72px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at top, rgba(130, 20, 49, 0.06), transparent 55%),
    linear-gradient(180deg, #faf6f1 0%, var(--cream) 40%, #f3ebe2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover,
a:focus {
  color: var(--burgundy-soft);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
  margin-top: 0;
}

p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========== Site header / nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(130, 20, 49, 0.1);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(247, 242, 235, 0.97);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: none;
  background: var(--burgundy);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background var(--transition), transform 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--burgundy-dark);
  outline: none;
}

.nav-toggle:active {
  transform: scale(0.96);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  background: rgba(130, 20, 49, 0.1);
  color: var(--burgundy-dark);
}

.site-nav a.is-active {
  background: var(--burgundy);
  color: var(--white);
}

.site-nav a.is-active:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

/* ========== Hero ==========
   Photo only — welcome copy lives below in #welcome.
   “More below” floats at the bottom edge so faces stay clear. */
.hero {
  display: block;
  overflow: hidden;
  background: #2a1a18;
}

.hero-media {
  position: relative;
  width: 100%;
  /* Tall enough for impact, short enough that welcome peeks on phones */
  height: min(58vh, 520px);
  min-height: 240px;
  overflow: hidden;
  background: #2a1a18;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the duo fully framed (they sit lower-center in the photo) */
  object-position: center 70%;
}

/* Soft fade only at the very bottom so the scroll cue is readable */
.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 18, 0.45) 100%);
}

.hero-overlay {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--cream);
  color: var(--burgundy-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: rgba(130, 20, 49, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(130, 20, 49, 0.08);
  color: var(--burgundy-dark);
  border-color: var(--burgundy);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.btn-burgundy:hover,
.btn-burgundy:focus {
  background: var(--burgundy-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: rgba(130, 20, 49, 0.35);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(130, 20, 49, 0.08);
  color: var(--burgundy-dark);
  border-color: var(--burgundy);
}

/* Floating “More below” — bottom left, clear of the singers */
.scroll-cue {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: auto;
  transform: none;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px 6px;
  border-radius: 999px;
  background: rgba(26, 20, 18, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  animation: cue-bounce 2.2s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.scroll-cue:hover,
.scroll-cue:focus {
  color: #fff;
  background: rgba(26, 20, 18, 0.58);
}

.scroll-cue i {
  font-size: 1rem;
  line-height: 1;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* Compact hero on inner pages: photo only (page title is in main) */
.hero--compact .hero-media {
  height: min(34vh, 300px);
  min-height: 160px;
}

.hero--compact .hero-media::after {
  height: 18%;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 20, 18, 0.2) 100%);
}

/* ========== Main content ========== */
.page-main {
  padding: 36px 0 48px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--burgundy-dark);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 40rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(130, 20, 49, 0.08);
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.sidebar-card a {
  display: block;
}

.sidebar-card img {
  margin: 0 auto 12px;
  border-radius: 10px;
}

.sidebar-card .side-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.side-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.side-thumbs img {
  width: 100%;
  border-radius: 8px;
  opacity: 0.92;
}

.about-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(130, 20, 49, 0.08);
}

.about-panel p {
  font-size: 1.12rem;
  margin-bottom: 1rem;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.mission-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--burgundy);
  border-left: 3px solid var(--burgundy);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
  line-height: 1.35;
}

/* Feature cards under welcome */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(130, 20, 49, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(130, 20, 49, 0.1);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--burgundy-dark);
}

.feature-card p {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

/* Album / music cards */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.album-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(130, 20, 49, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.album-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.album-card:hover > a {
  color: inherit;
}

.album-card-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}

.album-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-card:hover .album-card-cover img {
  transform: scale(1.05);
}

.album-card-cover .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 20, 18, 0.0);
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}

.album-card:hover .play-badge {
  opacity: 1;
  background: rgba(26, 20, 18, 0.35);
}

.album-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.album-card-body h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.album-card-body .listen-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Product panel */
.product-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(130, 20, 49, 0.08);
  text-align: center;
}

.product-panel img {
  margin: 0 auto 16px;
  max-width: 280px;
  border-radius: 8px;
}

.product-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 10px;
}

.product-panel .status-pill {
  display: inline-block;
  background: rgba(204, 0, 0, 0.1);
  color: #a30000;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* Mailing list iframe */
.form-frame-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(130, 20, 49, 0.08);
  overflow: hidden;
  min-height: 720px;
}

.form-frame-wrap iframe {
  width: 100%;
  min-height: 1600px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(130, 20, 49, 0.05));
  border-top: 1px solid rgba(130, 20, 49, 0.12);
  padding: 28px 0 36px;
  margin-top: 20px;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
}

.footer-nav li a:hover {
  background: rgba(130, 20, 49, 0.08);
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Legacy class compatibility (product leftovers) */
.wrapper-product-info {
  text-align: center;
}

.wrapper-product-info h4 {
  color: #cc0000;
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

.wrapper-product-info-text a {
  color: var(--burgundy);
  text-decoration: underline;
  font-size: 1.05rem;
}

.cd-info-wrapper h3 {
  font-size: 1.3rem;
}

.cd-info-wrapper h5 {
  font-size: 1.5rem;
  color: #cc0000;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.music-list-wrapper {
  margin-bottom: 12px;
}

.view-details-btn a {
  color: var(--burgundy);
  font-size: 0.95rem;
}

/* Hide old structure bits if present */
.header-wrapper {
  display: none;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar-card {
    position: static;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    text-align: left;
    align-items: center;
  }

  .sidebar-card > a {
    margin: 0;
  }

  .side-thumbs {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    grid-column: 1 / -1;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 64px;
  }

  .site-logo img {
    height: 36px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(247, 242, 235, 0.98);
    border-bottom: 1px solid rgba(130, 20, 49, 0.12);
    box-shadow: var(--shadow);
    padding: 10px 16px 16px;
    gap: 4px;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .hero-media {
    height: min(50vh, 420px);
  }

  .hero--compact .hero-media {
    height: min(30vh, 240px);
  }

  .page-main {
    padding: 24px 0 40px;
  }

  .sidebar-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .side-thumbs {
    max-width: 280px;
    margin: 12px auto 0;
  }

  .form-frame-wrap {
    min-height: 640px;
  }

  .form-frame-wrap iframe {
    min-height: 1400px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 380px) {
  .hero-actions .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-cue,
  .album-card,
  .feature-card,
  .album-card-cover img {
    animation: none;
    transition: none;
  }
}
