/* ============================================================
   VELA MOR — Stylesheet
   Palette: deep forest night, warm parchment, copper gold
   ============================================================ */

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

:root {
  --ink:       #0e0d0b;
  --deep:      #1a1812;
  --bark:      #2e2920;
  --copper:    #b07a3e;
  --copper-lt: #c99550;
  --parchment: #e8e0cc;
  --mist:      #a09880;
  --white:     #f5f0e8;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  background: var(--deep);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Focus visible ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* ── Skip nav ──────────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--copper);
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-nav:focus { top: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: background 0.35s, backdrop-filter 0.35s;
}

.nav.scrolled {
  background: rgba(14, 13, 11, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176, 122, 62, 0.2);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-logo span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--copper-lt); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--copper);
  color: var(--ink);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?w=1600&h=1000&fit=crop');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45) saturate(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 13, 11, 0.1) 0%,
    rgba(14, 13, 11, 0.0) 40%,
    rgba(14, 13, 11, 0.7) 75%,
    rgba(14, 13, 11, 1)   100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--copper-lt);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--ink);
  border: none;
  padding: 0.9rem 2rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--copper-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(232, 224, 204, 0.4);
  padding: 0.9rem 2rem;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--parchment);
  color: var(--white);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: var(--section-pad) 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--copper-lt);
}

/* ============================================================
   ALBUM SECTION
   ============================================================ */
.album {
  background: var(--ink);
  border-top: 1px solid rgba(176, 122, 62, 0.15);
  border-bottom: 1px solid rgba(176, 122, 62, 0.15);
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.album-cover {
  position: relative;
}

.album-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.album-cover::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(176, 122, 62, 0.3);
  border-radius: 2px;
  z-index: -1;
}

.album-body .section-label { margin-top: 0; }

.album-body p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.album-meta {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.album-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.stream-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  border: 1px solid rgba(232, 224, 204, 0.25);
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.stream-link:hover {
  border-color: var(--copper);
  color: var(--copper-lt);
}

/* ============================================================
   TOUR DATES
   ============================================================ */
.tour {
  background: var(--deep);
}

.tour-intro {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  margin-bottom: 3rem;
  max-width: 500px;
}

.tour-list {
  border-top: 1px solid rgba(176, 122, 62, 0.2);
}

.tour-date {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(232, 224, 204, 0.07);
  transition: background 0.2s;
}

.tour-date:hover {
  background: rgba(176, 122, 62, 0.04);
}

.tour-date.sold-out {
  opacity: 0.5;
}

.date-day {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--copper-lt);
  line-height: 1;
}

.date-month {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.15rem;
}

.date-venue {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.date-city {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--mist);
  margin-top: 0.2rem;
}

.tour-ticket {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tour-ticket:hover {
  background: var(--copper);
  color: var(--ink);
}

.tour-ticket.sold-out-label {
  border-color: rgba(160, 152, 128, 0.4);
  color: var(--mist);
  cursor: default;
  pointer-events: none;
}

/* ============================================================
   ABOUT / PRESS QUOTE
   ============================================================ */
.about {
  background: var(--bark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.7);
}

.about-body p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--copper);
}

blockquote p {
  font-family: var(--serif);
  font-size: 1.35rem !important;
  font-style: italic;
  color: var(--parchment) !important;
  line-height: 1.6 !important;
}

blockquote cite {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-style: normal;
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(176, 122, 62, 0.15);
}

.newsletter .section-inner {
  max-width: 600px;
}

.newsletter p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(232, 224, 204, 0.06);
  border: 1px solid rgba(232, 224, 204, 0.2);
  border-right: none;
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder { color: var(--mist); }
.newsletter-form input[type="email"]:focus { border-color: var(--copper); }

.newsletter-form button {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--ink);
  border: none;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--copper-lt); }

#newsletter-msg {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--copper-lt);
  min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(176, 122, 62, 0.12);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mist);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--copper-lt); }

.footer-copy {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(160, 152, 128, 0.5);
}

/* ============================================================
   DECORATIVE RULE
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(176, 122, 62, 0.25);
}
.ornament-icon {
  color: var(--copper);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 13, 11, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 100; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }

  /* Album */
  .album-grid { grid-template-columns: 1fr; gap: 3rem; }
  .album-cover::before { display: none; }

  /* Tour */
  .tour-date {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }
  .tour-date > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] {
    border-right: 1px solid rgba(232, 224, 204, 0.2);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }
  .newsletter-form button { border-radius: 0 0 2px 2px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
