/* The Golden Hour Collective — Ember Dusk theme */

:root {
  --ink: #241f38;
  --ink-darker: #191527;
  --cream: #f0ebe4;
  --card: #f7f3ec;
  --accent: #d96e3f;
  --accent-dark: #b8552a;
  --teal: #6fa6ab;
  --muted-1: #565073;
  --muted-2: #7c7690;
  --muted-3: #948eaa;
  --on-dark-1: #cbc5d8;
  --on-dark-2: #ece7f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--cream); }
input, textarea, select, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #918ba3; }

a { color: inherit; }

/* Utility */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow-teal { color: var(--teal); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
}
.section-title-light { color: var(--cream); }

.lede { font-size: 16.5px; color: var(--muted-1); margin: 0; }
.lede-light { color: var(--on-dark-1); }
.lede-contact { color: rgba(240,235,228,0.82); max-width: 420px; margin: 0 0 34px; }
.body-light { font-size: 16.5px; color: var(--on-dark-1); margin: 0; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px,10vw,140px) clamp(24px,5vw,56px);
}

.section-heading { text-align: center; margin-bottom: clamp(40px,6vw,64px); }

.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  color: var(--cream);
  background: var(--accent);
  border: 0;
  padding: 15px 30px;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(36,31,56,0.28);
  padding: 15px 30px;
  font-size: 14.5px;
  font-weight: 600;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-nav { padding: 10px 20px; font-size: 13px; white-space: nowrap; }

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240,235,228,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,31,56,0.12);
}
.nav {
  margin: 0 auto;
  padding: 16px clamp(28px,5vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-right { display: flex; align-items: center; gap: clamp(14px,2.4vw,38px); flex-wrap: wrap; }
.nav-links { display: flex; align-items: center; gap: clamp(14px,2.4vw,38px); }
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--muted-1);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
}
.nav-links a.active { color: var(--ink); }
.nav-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a.active .nav-underline { transform: scaleX(1); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px,7vw,104px) clamp(28px,5vw,80px);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(42px,5.4vw,82px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(24px,3vw,40px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  color: var(--accent);
}
.hero-copy {
  font-size: 17.5px;
  color: var(--muted-1);
  max-width: 460px;
  margin: 0 0 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(36,31,56,0.14);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-2);
  text-align: center;
  justify-content: center;
}
.hero-tags .tag-sep { color: var(--accent); }
.hero-right {
  position: relative;
  min-height: 52vh;
  background-size: cover;
  background-position: center;
}
.hero-right-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(240,235,228,0.42) 0%, rgba(240,235,228,0) 26%);
}

/* ABOUT */
.about { background-color: var(--ink); }
.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px,10vw,150px) clamp(24px,5vw,56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}
.about-media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 70px -30px rgba(36,31,56,0.5);
}
.about-copy p { margin: 0 0 18px; }
.about-copy p:last-child { margin-bottom: 0; }

/* WATCH */
.watch { background: var(--cream); }
.watch-player-wrap { max-width: 900px; margin: 0 auto; }
.watch-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -26px rgba(36,31,56,0.55);
  background: var(--ink);
}
.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.watch-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px,3vw,28px);
  margin-top: clamp(18px,2.6vw,26px);
}
.video-arrow {
  flex: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-1);
}
.video-arrow:hover { color: var(--accent); }
.video-dots { display: flex; align-items: center; gap: 11px; }
.video-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: rgba(36,31,56,0.22);
  transition: all 0.25s ease;
}
.video-dots button.active { width: 26px; background: var(--accent); }
.watch-more { text-align: center; margin-top: 40px; }
.watch-more a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

/* SONGS */
.songs { background: var(--ink); color: var(--on-dark-2); }
.songs-heading { max-width: 760px; margin-bottom: clamp(28px,4vw,40px); }
.songs-heading .section-title { margin-bottom: 22px; }
.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(34px,5vw,52px);
}
.genre-chips button {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid rgba(236,231,240,0.28);
  background: transparent;
  color: var(--on-dark-1);
}
.genre-chips button:hover { border-color: rgba(236,231,240,0.6); color: var(--cream); }
.genre-chips button.active {
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--cream);
}
.genre-chips button.active:hover { border-color: var(--accent); color: var(--cream); }

.song-list { columns: 3 240px; column-gap: clamp(24px,4vw,56px); }
.song-row {
  break-inside: avoid;
  padding: 11px 0;
  border-bottom: 1px solid rgba(236,231,240,0.12);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.song-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--teal);
  min-width: 22px;
  flex: none;
}
.song-title { font-size: 14.5px; color: var(--cream); font-weight: 500; display: block; line-height: 1.3; }
.song-artist { font-size: 12.5px; color: var(--muted-3); }
.song-count { margin: clamp(34px,5vw,48px) 0 0; font-size: 14px; color: var(--muted-3); }

/* TESTIMONIALS */
.testimonials {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px,10vw,150px) clamp(24px,5vw,56px);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px,3vw,36px);
}
.testimonial-card {
  margin: 0;
  background: var(--card);
  border: 1px solid rgba(36,31,56,0.1);
  border-radius: 6px;
  padding: 34px 30px;
}
.testimonial-card .stars { color: var(--teal); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card blockquote {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  line-height: 1.32;
  color: var(--ink);
}
.testimonial-card figcaption { font-size: 13px; color: var(--muted-1); }

/* CONTACT */
.contact {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px,10vw,150px) clamp(24px,5vw,56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,90px);
  align-items: start;
}
.contact-copy .section-title { margin: 0 0 26px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contact-icon { color: var(--teal); }

.contact-form {
  background: rgba(240,235,228,0.97);
  border-radius: 8px;
  padding: clamp(28px,3vw,40px);
  color: var(--ink);
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-1);
  font-weight: 600;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(36,31,56,0.2);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  color: var(--ink);
}
.form-field textarea { resize: vertical; }
.btn-submit { margin-top: 4px; padding: 15px 28px; border: 0; }

/* FOOTER */
.site-footer { background: var(--ink-darker); color: var(--muted-3); padding: 44px clamp(24px,5vw,56px); }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-wordmark { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--on-dark-2); }
.site-footer span { font-size: 13px; }
.footer-inner span:last-child { font-size: 12.5px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 46vh; order: -1; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .song-list { columns: 2 220px; }
}

@media (max-width: 640px) {
  .nav { justify-content: center; text-align: center; }
  .nav-right { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .song-list { columns: 1; }
  .footer-inner { justify-content: center; text-align: center; }
}
