:root {
  --ink: #061d23;
  --deep: #082a31;
  --lake: #155364;
  --gold: #f7c86b;
  --gold-bright: #ffe4a1;
  --mist: #edf6f4;
  --white: #fffdfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
  padding: 0.7rem clamp(1.1rem, 4vw, 4.5rem);
  background: linear-gradient(180deg, rgb(2 15 19 / 88%), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(0.9rem, 3vw, 2.3rem);
}

nav a {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgb(2 17 22 / 40%) 0%, rgb(2 17 22 / 5%) 42%, rgb(2 17 22 / 82%) 100%),
    linear-gradient(90deg, rgb(1 17 22 / 48%), transparent 45%, rgb(1 17 22 / 20%));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 2rem));
  padding: 7rem 1rem 5rem;
  text-align: center;
  text-shadow: 0 3px 28px rgb(0 0 0 / 55%);
}

.hero-mark {
  width: clamp(110px, 15vw, 170px);
  height: auto;
  margin: 0 auto -0.4rem;
  filter: drop-shadow(0 0 24px rgb(255 212 117 / 38%));
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  color: var(--gold-bright);
  font-size: clamp(3rem, 8.6vw, 7.8rem);
  letter-spacing: 0.025em;
}

h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

.hero-copy {
  max-width: 660px;
  margin: 1.2rem auto 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.button {
  display: inline-block;
  border: 1px solid rgb(255 228 161 / 72%);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  background: rgb(5 32 39 / 72%);
  box-shadow: 0 12px 36px rgb(0 0 0 / 22%);
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.3rem;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span:last-child {
  color: var(--gold);
  font-size: 1.4rem;
}

.music-section,
.story-preview {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 7vw, 8rem);
}

.music-section {
  background: linear-gradient(145deg, #061d23, #0b3540 60%, #0f4651);
}

.social-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 9vw, 10rem);
  background: #031418;
}

.social-links {
  display: grid;
  gap: 0.8rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  border: 1px solid rgb(247 200 107 / 22%);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: rgb(255 255 255 / 3%);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgb(247 200 107 / 62%);
  background: rgb(247 200 107 / 8%);
}

.social-links span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links strong {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  text-align: right;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  align-items: end;
  gap: 2rem 4rem;
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.section-heading > p:last-child {
  margin: 0;
  color: rgb(255 253 250 / 72%);
  font-size: 1.1rem;
}

.music-player {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(200px, 0.5fr);
  align-items: end;
  gap: 1.5rem;
}

.now-playing {
  padding: 1.4rem 0;
  border-block: 1px solid rgb(247 200 107 / 28%);
}

.now-playing span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-playing strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.track-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 2rem;
}

.track {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 0.7rem;
  padding: 0.65rem 0.9rem;
  background: rgb(1 19 24 / 34%);
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.track span {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.track:hover,
.track:focus-visible,
.track.active {
  border-color: rgb(247 200 107 / 62%);
  background: rgb(247 200 107 / 10%);
  color: var(--gold-bright);
}

.story-preview p:last-child,
.journal-heading > p:last-child {
  max-width: 580px;
  color: rgb(255 253 250 / 78%);
  font-size: 1.1rem;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgb(247 200 107 / 46%);
  border-radius: 1.1rem;
  background: #000;
  box-shadow: 0 28px 70px rgb(0 0 0 / 42%);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.story-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--mist);
  color: var(--ink);
}

.story-preview img {
  width: 100%;
  border-radius: 50% 50% 1.2rem 1.2rem;
  box-shadow: 0 25px 65px rgb(5 36 43 / 22%);
}

.story-preview .eyebrow {
  color: #916510;
}

.story-preview p:last-child {
  color: #31535a;
}

.journal-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  min-height: 72vh;
  align-items: center;
  padding: clamp(5rem, 11vw, 10rem) clamp(1.2rem, 12vw, 14rem);
  background:
    linear-gradient(90deg, rgb(2 24 30 / 94%), rgb(2 24 30 / 48%)),
    url("camp-rowboat.png") center / cover;
}

.journal-heading h2 {
  max-width: 760px;
}

.journal-cards {
  display: grid;
  gap: 1rem;
}

.journal-cards article {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgb(255 228 161 / 24%);
  border-radius: 1rem;
  background: rgb(1 22 27 / 72%);
  backdrop-filter: blur(10px);
}

.journal-cards h3 {
  margin: 0.2rem 0 0.8rem;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.journal-cards h3 a {
  color: inherit;
  text-decoration-color: rgb(247 200 107 / 42%);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.journal-cards h3 a:hover,
.journal-cards h3 a:focus-visible {
  color: #fff4c9;
  text-decoration-color: var(--gold-bright);
}

.journal-cards p {
  margin: 0;
}

.journal-cards article > p:last-child {
  color: rgb(255 253 250 / 74%);
}

.journal-cards article > .byline {
  margin-top: 1.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

.article-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-all {
  justify-self: start;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.journal-all:hover,
.journal-all:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

/* Journal pages */
.journal-page {
  background: #f7f2e5;
  color: var(--ink);
}

.single-release-stage {
  min-height: 100vh;
  padding-top: clamp(8rem, 14vw, 13rem);
}

.single-release-stage .now-playing p {
  margin: 0.7rem 0 0;
  color: rgb(255 253 250 / 66%);
  font-size: 0.9rem;
}

.article-story-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid rgb(8 42 49 / 16%);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.article-story-heading h1 {
  margin: 0.4rem 0 0.8rem;
  color: #082a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.article-story-heading .article-deck {
  margin: 0 0 1rem;
  color: #72500c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.article-story-heading .article-meta {
  color: #6b7776;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.journal-page .site-header {
  background: rgb(2 24 30 / 96%);
}

.journal-page main {
  min-height: 70vh;
}

.journal-index-hero,
.article-hero {
  position: relative;
  display: grid;
  min-height: 54vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(7rem, 14vw, 11rem) clamp(1.25rem, 10vw, 9rem) clamp(4rem, 8vw, 7rem);
  background: #062a33;
  color: var(--paper);
}

.journal-index-hero img,
.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.journal-index-hero::after,
.article-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(2 24 30 / 20%), rgb(2 24 30 / 94%));
  content: "";
}

.journal-index-hero > div,
.article-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.journal-index-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin: 0.35rem 0 1rem;
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.article-meta,
.article-deck {
  max-width: 760px;
  color: rgb(255 253 250 / 80%);
  font-size: 1.05rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 8vw, 8rem);
}

.journal-grid article {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border: 1px solid rgb(8 42 49 / 14%);
  border-radius: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: #fffdf7;
  box-shadow: 0 18px 50px rgb(5 36 43 / 9%);
}

.journal-grid h2 {
  margin: 0.7rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.journal-grid p {
  color: #31535a;
}

.journal-grid .read-link {
  margin-top: auto;
  color: #72500c;
  font-weight: 700;
  text-decoration: none;
}

.article-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 1.25rem;
}

.article-body {
  color: #173f47;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2.2vw, 1.25rem);
  line-height: 1.82;
}

.article-body p {
  margin: 0 0 1.5em;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  color: #082a31;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.article-body blockquote {
  margin: 2.2rem 0;
  border-left: 4px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: #72500c;
  font-size: 1.28em;
  font-style: italic;
}

.release-video {
  width: min(1080px, calc(100vw - 2.5rem));
  margin: clamp(3rem, 7vw, 5rem) 50%;
  border-top: 1px solid rgb(8 42 49 / 16%);
  border-bottom: 1px solid rgb(8 42 49 / 16%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  transform: translateX(-50%);
}

.release-video h2 {
  margin: 0.35rem 0 1.25rem;
}

.release-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(154 107 19 / 36%);
  border-radius: 1rem;
  background: #020b0e;
  box-shadow: 0 24px 65px rgb(5 36 43 / 20%);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
  border-top: 1px solid rgb(8 42 49 / 16%);
  padding-top: 2rem;
}

.article-actions a {
  border: 1px solid rgb(8 42 49 / 22%);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: #0b4550;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.article-actions a:first-child {
  border-color: #9a6b13;
  background: #9a6b13;
  color: #fffdf7;
}

.live-section,
.shop-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 9vw, 10rem);
}

.live-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  background: var(--white);
  color: var(--ink);
}

.live-section .eyebrow,
.shop-section .eyebrow {
  color: #93650d;
}

.live-section > p,
.shop-section p:last-of-type {
  margin: 0;
  color: #31535a;
  font-size: 1.1rem;
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  background: linear-gradient(135deg, #dfeeee, #f9f6ed 58%, #efd9a3);
  color: var(--ink);
}

.shop-mark {
  display: grid;
  place-items: center;
  min-height: 370px;
  border: 1px solid rgb(8 42 49 / 16%);
  border-radius: 1.3rem;
  background: radial-gradient(circle at 50% 40%, #155364, #061d23 72%);
  box-shadow: 0 25px 65px rgb(5 36 43 / 20%);
}

.shop-mark img {
  width: min(250px, 72%);
  height: auto;
  filter: drop-shadow(0 10px 30px rgb(0 0 0 / 36%));
}

.shop-mark span {
  margin-top: -4rem;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.coming-soon {
  display: inline-block;
  margin-top: 1.5rem;
  border: 1px solid rgb(8 42 49 / 28%);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  color: #72500c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  display: grid;
  place-items: center;
  padding: 3.5rem 1rem;
  background: #031418;
  color: rgb(255 253 250 / 62%);
  text-align: center;
}

footer img {
  width: 72px;
  height: auto;
}

footer p {
  margin: 0.5rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand span {
    max-width: 165px;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  nav a:nth-child(2),
  nav a:nth-child(3) {
    display: none;
  }

  .section-heading,
  .social-section,
  .music-player,
  .journal-preview,
  .live-section,
  .shop-section,
  .story-preview {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .now-playing {
    text-align: center;
  }

  .track-list {
    grid-template-columns: 1fr;
  }

  .social-section {
    text-align: center;
  }

  .social-links a {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links strong {
    text-align: left;
  }

  .story-preview img {
    max-width: 520px;
    margin: 0 auto;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-index-hero,
  .article-hero {
    min-height: 48vh;
  }
}

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