/* ============================================================
   Cara Paige — carapaigemusic.com
   Design system drawn from the "Light. Hope. Faith." album art:
   sunlit cream, meadow green, golden-hour warmth.
   ============================================================ */

:root {
  --cream: #faf7f0;
  --cream-2: #f3ede0;
  --white: #fffdf8;
  --ink: #2b2f24;
  --ink-soft: #4c5140;
  --green: #41552f;
  --green-deep: #2c3b20;
  --gold: #b98a2e;
  --gold-light: #d9b15c;
  --line: rgba(65, 85, 47, 0.18);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Open Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h2 { font-size: clamp(2rem, 4vw, 2.9rem); text-wrap: balance; }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); }

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(44, 59, 32, 0.18); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--ink); }

.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--green-deep); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-deep); color: var(--white); }

.btn-outline-dark { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

.btn-soon {
  background: transparent; border: 1.5px dashed var(--line); color: var(--ink-soft);
  cursor: default; opacity: 0.75;
}
.btn-soon:hover { transform: none; box-shadow: none; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(250, 247, 240, 0.96);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  position: relative;
  z-index: 110;
}

.site-header.scrolled .brand,
.site-header.solid .brand { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 253, 248, 0.92);
  transition: color 0.15s ease;
}

.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a { color: var(--ink-soft); }

.nav-links a:hover { color: var(--gold-light); }
.site-header.scrolled .nav-links a:hover,
.site-header.solid .nav-links a:hover { color: var(--gold); }

.nav-links a.active {
  color: var(--gold-light);
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}
.site-header.scrolled .nav-links a.active,
.site-header.solid .nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white) !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--ink) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span,
.site-header.nav-open .nav-toggle span { background: var(--ink); }

.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    display: none;
  }
  .site-header.nav-open .nav-links { display: flex; }
  .site-header.nav-open .brand { color: var(--ink); }
  .nav-links a { color: var(--ink-soft) !important; font-size: 1rem; }
  .nav-links a.active { color: var(--gold) !important; }
  .nav-links .nav-cta { color: var(--white) !important; }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(30, 40, 22, 0.35) 0%, rgba(30, 40, 22, 0.18) 45%, rgba(30, 40, 22, 0.55) 100%);
}

.hero-inner { position: relative; z-index: 2; padding: 120px 24px 90px; max-width: 900px; }

/* On phones, pan the hero photo toward Cara so her face isn't cropped */
@media (max-width: 880px) {
  .hero .hero-bg { background-position: 72% 30%; }
}

.hero .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-shadow: 0 1px 14px rgba(30, 40, 22, 0.8);
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(30, 40, 22, 0.45);
  margin-bottom: 10px;
}

.hero .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  color: rgba(255, 253, 248, 0.94);
  margin-bottom: 34px;
  text-shadow: 0 1px 14px rgba(30, 40, 22, 0.7);
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.countdown {
  display: flex;
  gap: clamp(14px, 4vw, 34px);
  justify-content: center;
  margin: 36px 0 6px;
  text-shadow: 0 1px 14px rgba(30, 40, 22, 0.8);
}
.countdown .unit { min-width: 64px; }
.countdown .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1;
}
.countdown .lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,253,248,0.8);
  font-size: 1.4rem;
  text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding: 170px 0 70px;
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.55; }
.page-hero .hero-bg::after {
  background: linear-gradient(to bottom, rgba(30, 40, 22, 0.5), rgba(30, 40, 22, 0.72));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
}
.page-hero .lede { color: rgba(255, 253, 248, 0.88); max-width: 640px; margin: 10px auto 0; }
.page-hero .eyebrow { color: var(--gold-light); }

/* ---------- Sections ---------- */

.section { padding: 90px 0; }
.section.tint { background: var(--cream-2); }
.section.dark {
  background: var(--green-deep);
  color: rgba(255, 253, 248, 0.92);
}
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: var(--gold-light); }

.section-head { text-align: center; max-width: 880px; margin: 0 auto 54px; }
.section-head .lede { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---------- Album feature ---------- */

.album-feature {
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.album-cover-img {
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(44, 59, 32, 0.28);
}

/* Column of photos that stretches to match the text beside it */
.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: stretch;
  min-width: 0;
}
.photo-stack .stack-fill {
  flex: 1 1 0;
  min-height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 880px) {
  .photo-stack { align-self: auto; max-width: min(100%, 440px); margin: 0 auto; }
  .photo-stack .stack-fill { flex: none; aspect-ratio: 4 / 3; min-height: 0; }
}

.tracklist {
  list-style: none;
  counter-reset: track;
  columns: 2;
  column-gap: 40px;
  margin: 26px 0 30px;
}
.tracklist li {
  counter-increment: track;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  break-inside: avoid;
}
.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 12px;
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .album-feature { grid-template-columns: 1fr; }
  .album-feature .album-cover-img { max-width: min(100%, 440px); margin: 0 auto; }
  .tracklist { columns: 1; }
}

/* ---------- Stats / accolades ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  text-align: center;
}

.stat .big {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.stat p { font-size: 0.92rem; margin-top: 10px; }

.award-group { margin-bottom: 44px; }
.award-group > h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.award-group .group-note {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.award-list { list-style: none; }
.award-list a { color: inherit; text-decoration: none; }
.award-list a:hover { color: var(--gold); }
.award-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.award-list .year-tag {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 88px;
}
.award-list .win { font-weight: 700; }
.badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.badge.winner { background: var(--gold); color: var(--white); }
.badge.finalist { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.badge.pending { background: transparent; border: 1px dashed var(--line); color: var(--ink-soft); }
.section.dark .badge.pending { border-color: rgba(255,253,248,0.4); color: rgba(255,253,248,0.75); }

/* ---------- Streaming platforms ---------- */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.platform-grid a {
  display: block;
  padding: 22px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  background: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.platform-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(44, 59, 32, 0.14);
  border-color: var(--gold);
}

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.video-card { text-decoration: none; color: inherit; }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-deep) center/cover no-repeat;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(44, 59, 32, 0.16);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.video-thumb:hover img { transform: scale(1.04); }
.video-thumb .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-thumb .play::after {
  content: "";
  width: 0; height: 0;
  border-left: 22px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
  position: relative;
  z-index: 1;
  transition: border-left-color 0.15s ease;
}
.video-thumb .play::before {
  content: "";
  position: absolute;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(44, 59, 32, 0.72);
  transition: background 0.15s ease, transform 0.15s ease;
}
.video-thumb:hover .play::before { background: var(--cream); transform: scale(1.08); }
.video-thumb:hover .play::after { border-left-color: var(--green-deep); }
.video-thumb iframe { width: 100%; height: 100%; border: 0; }

.video-card h3 { margin-top: 14px; font-size: 1.2rem; }
.video-card .vmeta { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* ---------- Press ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.section.dark .quote-card { background: rgba(255, 253, 248, 0.06); border-color: rgba(255, 253, 248, 0.16); }

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}
.quote-card cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(44, 59, 32, 0.14);
  border-color: var(--gold);
}
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-card .ac-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card .eyebrow { margin-bottom: 8px; font-size: 0.7rem; }
.article-card h3 { font-size: 1.25rem; line-height: 1.3; flex: 1; }
.article-card .ac-cta {
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.press-feature img { height: 100%; object-fit: cover; }
.press-feature .pf-body { padding: 36px; }
@media (max-width: 780px) {
  .press-feature { grid-template-columns: 1fr; }
  .press-feature img { max-height: 320px; width: 100%; }
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-grid img {
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}
.about-grid .bio p + p { margin-top: 1.2em; }
.about-photo { border-radius: 14px; box-shadow: 0 20px 50px rgba(44, 59, 32, 0.2); position: sticky; top: 110px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: min(100%, 480px); margin: 0 auto; }
}

/* ---------- FYC ---------- */

.fyc-banner {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(185, 138, 46, 0.08), rgba(185, 138, 46, 0.02));
  max-width: 760px;
  margin: 0 auto 60px;
}
.fyc-banner .cat {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--gold);
}

/* ---------- Forms ---------- */

.subscribe-band { text-align: center; }
.form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 26px auto 0;
}
.form-row input[type="email"],
.form-row input[type="text"] {
  flex: 1 1 260px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.section.dark .form-row input[type="email"],
.section.dark .form-row input[type="text"] {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.3);
  color: var(--white);
}
.section.dark .form-row input::placeholder { color: rgba(255, 253, 248, 0.6); }
.form-row input:focus { outline: 2px solid var(--gold); border-color: transparent; }

.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-deep);
  color: rgba(255, 253, 248, 0.8);
  padding: 60px 0 34px;
  text-align: center;
}
.site-footer .brand { color: var(--white); font-size: 1.8rem; }
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 24px 0;
}
.footer-links a {
  color: rgba(255, 253, 248, 0.8);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--gold-light); }
.site-footer .fineprint { font-size: 0.78rem; color: rgba(255, 253, 248, 0.5); margin-top: 18px; }
.site-footer .fineprint a { color: inherit; }
