@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --ink: #251914;
  --ink-soft: #43342c;
  --forest: #1f4d34;
  --forest-light: #2f6747;
  --sage: #8ca582;
  --cream: #fbf7ef;
  --cream-deep: #f2e8da;
  --paper: #fffdf9;
  --gold: #d6a54c;
  --terra: #a95136;
  --muted: #6b5d52;
  --line: rgba(37, 25, 20, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(49, 34, 25, 0.13);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(214, 165, 76, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(47, 103, 71, 0.10), transparent 32rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(37, 25, 20, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 25, 20, 0.018) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  border-radius: 5px;
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

section[id], footer[id] { scroll-margin-top: 96px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(37, 25, 20, 0.06); }

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 74px;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 77, 52, 0.18);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(31, 77, 52, 0.14);
  object-fit: cover;
}

.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.primary-nav a { position: relative; color: var(--muted); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--terra);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 4px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.hero { position: relative; min-height: 680px; overflow: hidden; padding: clamp(68px, 7vw, 96px) 0 clamp(82px, 8vw, 110px); }
.hero::after {
  position: absolute;
  right: -8%;
  bottom: -13rem;
  left: -8%;
  height: 19rem;
  border-radius: 50% 50% 0 0;
  background: var(--cream-deep);
  content: "";
  transform: rotate(-2deg);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { top: 10%; right: 3%; width: 32rem; height: 32rem; background: radial-gradient(circle, rgba(214, 165, 76, 0.22), transparent 68%); }
.hero-glow-two { bottom: 4%; left: -8%; width: 28rem; height: 28rem; background: radial-gradient(circle, rgba(47, 103, 71, 0.16), transparent 68%); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 6vw, 78px);
}

.eyebrow { margin: 0 0 14px; color: var(--terra); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.21em; text-transform: uppercase; }
.hero h1, .section-heading h2, .story-copy h2, .closing-card h2 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.hero h1 { max-width: 760px; font-size: clamp(4.15rem, 7.6vw, 7.1rem); }
.hero h1 em { color: var(--forest); font-weight: 700; }
.hero-lede { max-width: 610px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.68; }
.hero-actions, .closing-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-primary { background: var(--forest); box-shadow: 0 14px 30px rgba(31, 77, 52, 0.22); color: white; }
.button-secondary { border-color: var(--line); background: var(--paper); color: var(--ink); }
.hero-note { margin: 18px 0 0; color: var(--muted); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; }

.hero-art-wrap { position: relative; width: min(100%, 430px); justify-self: end; }
.hero-art {
  position: relative;
  display: block;
  overflow: hidden;
  border: 12px solid rgba(255, 253, 249, 0.86);
  border-radius: 220px 220px 32px 32px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.hero-art::after, .video-image::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17, 13, 12, 0.28), transparent 45%); content: ""; }
.hero-art img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

.play-button, .video-play {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  color: var(--forest);
  backdrop-filter: blur(8px);
}
.play-button { right: 26px; bottom: 26px; width: 68px; height: 68px; font-size: 1.15rem; }

.release-stamp {
  position: absolute;
  bottom: -24px;
  left: -34px;
  z-index: 3;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  min-width: 280px;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 14px 36px rgba(37, 25, 20, 0.12);
  backdrop-filter: blur(14px);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.release-stamp > img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.release-stamp-copy { min-width: 0; }
.release-stamp .stamp-kicker { display: block; color: var(--terra); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.release-stamp strong { display: block; overflow: hidden; margin-top: 1px; font-family: var(--font-display); font-size: 1.08rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.release-stamp small { display: block; margin-top: 2px; color: var(--forest); font-size: 0.67rem; font-weight: 800; }

.listen-strip { position: relative; z-index: 2; border-block: 1px solid var(--line); background: rgba(255, 253, 249, 0.82); padding: 32px 0; }
.listen-shell { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 42px; }
.listen-shell h2 { margin: 0; font-family: var(--font-display); font-size: 1.7rem; }
.listen-shell .eyebrow { margin-bottom: 3px; }
.platform-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }

.platform {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.platform .platform-mark { display: block; flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; }
.platform-spotify .platform-mark { background: #1db954; }
.platform-apple .platform-mark { background: #9d315b; }
.platform-youtube .platform-mark { background: #d72b2b; }
.platform-jio .platform-mark { background: #14796e; }
.platform-amazon .platform-mark { background: #243d55; }

.section { padding: clamp(76px, 8vw, 108px) 0; }
.section-heading { margin-bottom: 42px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr); align-items: end; gap: 56px; }
.section-heading h2, .story-copy h2 { font-size: clamp(2.75rem, 5vw, 4.7rem); }
.section-heading > p, .story-copy > p, .closing-card > p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }

.release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 26px; }
.release-card a { display: block; text-decoration: none; }
.release-image { position: relative; overflow: hidden; border-radius: 20px; background: var(--cream-deep); box-shadow: 0 18px 45px rgba(37, 25, 20, 0.09); }
.release-image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 350ms ease; }
.card-arrow { position: absolute; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: rgba(255, 253, 249, 0.9); box-shadow: 0 8px 24px rgba(37, 25, 20, 0.14); color: var(--forest); font-size: 1.1rem; backdrop-filter: blur(8px); }
.release-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 17px; color: var(--muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.release-card h3 { margin: 5px 0 0; font-family: var(--font-display); font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.2; }
.section-action { margin-top: 40px; text-align: center; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 10px; color: var(--forest); font-weight: 800; text-underline-offset: 6px; }

.watch-section { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 10%, rgba(214, 165, 76, 0.18), transparent 30rem), linear-gradient(135deg, #173c29, #1f4d34 55%, #173923); color: white; }
.watch-section::before { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, transparent 0 7rem, rgba(255, 255, 255, 0.025) 7.1rem 7.2rem, transparent 7.3rem), radial-gradient(circle at 80% 70%, transparent 0 11rem, rgba(255, 255, 255, 0.025) 11.1rem 11.2rem, transparent 11.3rem); content: ""; }
.watch-section .container { position: relative; }
.light-heading h2, .light-heading .eyebrow { color: white; }
.light-heading > p { color: rgba(255, 255, 255, 0.76); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.video-card { overflow: hidden; border: 1px solid var(--line-light); border-radius: 22px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); }
.video-card a { display: block; height: 100%; text-decoration: none; }
.video-image { position: relative; overflow: hidden; }
.video-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 350ms ease; }
.video-play { top: 50%; left: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); }
.video-copy { padding: 20px 22px 24px; }
.video-copy span { color: #f2c46d; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.video-copy h3 { margin: 5px 0 2px; font-family: var(--font-display); font-size: 1.7rem; }
.video-card-featured .video-copy h3 { font-size: 1.7rem; }
.video-copy p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 0.86rem; }
.section-action-light .text-link { color: white; }

.story-section { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 6vw, 82px); }
.story-portrait { position: relative; width: min(100%, 440px); }
.story-portrait::before { position: absolute; top: -26px; right: -26px; bottom: 62px; left: 26px; border: 1px solid rgba(31, 77, 52, 0.22); border-radius: 220px 220px 28px 28px; content: ""; }
.story-portrait img { position: relative; width: 100%; aspect-ratio: 2 / 3; border-radius: 220px 220px 28px 28px; box-shadow: var(--shadow); object-fit: cover; }
.story-portrait blockquote { position: relative; width: fit-content; margin: -34px -28px 0 auto; padding: 18px 24px; border-radius: 15px; background: var(--forest); box-shadow: 0 14px 34px rgba(31, 77, 52, 0.2); color: white; font-family: var(--font-display); font-size: 1.35rem; font-style: italic; font-weight: 700; }
.story-copy > p { margin-top: 20px; }
.story-copy strong { color: var(--ink); }
.story-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.story-tags span { padding: 8px 14px; border: 1px solid rgba(31, 77, 52, 0.2); border-radius: 999px; background: rgba(140, 165, 130, 0.10); color: var(--forest); font-size: 0.79rem; font-weight: 700; }

.closing-section { padding: 0 0 clamp(76px, 8vw, 104px); background: var(--paper); }
.closing-card { position: relative; overflow: hidden; padding: clamp(48px, 6vw, 70px); border-radius: 30px; background: radial-gradient(circle at 15% 85%, rgba(214, 165, 76, 0.24), transparent 28rem), radial-gradient(circle at 90% 15%, rgba(140, 165, 130, 0.2), transparent 25rem), var(--forest); box-shadow: 0 30px 80px rgba(31, 77, 52, 0.22); color: white; text-align: center; }
.closing-card::before, .closing-card::after { position: absolute; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; content: ""; }
.closing-card::before { top: -9rem; left: -5rem; width: 25rem; height: 25rem; }
.closing-card::after { right: -8rem; bottom: -12rem; width: 30rem; height: 30rem; }
.closing-card > * { position: relative; z-index: 1; }
.closing-card .eyebrow { color: #f2c46d; }
.closing-card h2 { max-width: 760px; margin-inline: auto; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.04; }
.closing-card > p { max-width: 590px; margin: 24px auto 32px; color: rgba(255, 255, 255, 0.78); }
.closing-actions { justify-content: center; }
.button-light { background: white; color: var(--forest); }
.button-ghost-light { border-color: rgba(255, 255, 255, 0.38); color: white; }

.site-footer { border-top: 1px solid var(--line); background: var(--cream-deep); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 42px; }
.footer-brand p, .footer-column p { margin: 18px 0 0; color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-column h2 { margin: 0 0 4px; color: var(--ink); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.footer-column a { min-height: 30px; color: var(--muted); font-size: 0.88rem; font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--forest); font-weight: 800; text-underline-offset: 4px; }

@media (hover: hover) {
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: var(--forest-light); box-shadow: 0 16px 34px rgba(31, 77, 52, 0.28); }
  .hero-art:hover { box-shadow: 0 30px 82px rgba(49, 34, 25, 0.2); transform: rotate(0deg) translateY(-4px); }
  .release-stamp:hover { box-shadow: 0 18px 44px rgba(37, 25, 20, 0.18); transform: translateY(-2px); }
  .platform:hover { border-color: rgba(31, 77, 52, 0.35); box-shadow: 0 10px 22px rgba(37, 25, 20, 0.08); transform: translateY(-2px); }
  .release-card a:hover .release-image img, .video-card a:hover .video-image img { transform: scale(1.035); }
  .footer-column a:hover { color: var(--forest); }
}

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: 1fr auto; gap: 14px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 0 0 18px 18px; background: rgba(255, 253, 249, 0.98); box-shadow: 0 24px 50px rgba(37, 25, 20, 0.13); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 48px; padding: 12px 14px; border-radius: 10px; }
  .primary-nav a::after { display: none; }
  .primary-nav a:hover { background: var(--cream-deep); color: var(--ink); }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 760px; }
  .hero-art-wrap { width: min(72%, 430px); justify-self: center; }
  .listen-shell { grid-template-columns: 1fr; gap: 20px; }
  .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: minmax(260px, 0.65fr) 1fr; gap: 48px; }
  .story-portrait blockquote { margin-right: -10px; }
  .footer-grid { grid-template-columns: 1.6fr repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 620px); }
  .nav-shell { min-height: 68px; }
  .brand { font-size: 1.02rem; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: auto; padding: 46px 0 90px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
  .hero-lede { margin-top: 22px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-art-wrap { width: min(calc(100% - 40px), 390px); }
  .hero-art { border-width: 8px; border-radius: 190px 190px 24px 24px; }
  .release-stamp { right: 0; bottom: -30px; left: 0; min-width: 0; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform:last-child { grid-column: 1 / -1; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 34px; }
  .split-heading { grid-template-columns: 1fr; gap: 14px; }
  .section-heading h2, .story-copy h2 { font-size: clamp(2.65rem, 13vw, 3.9rem); }
  .release-grid { grid-template-columns: 1fr; gap: 30px; }
  .release-card h3 { font-size: 1.85rem; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-portrait { width: min(86%, 440px); margin-inline: auto; }
  .closing-section { padding-inline: 0; }
  .closing-section { padding-bottom: 72px; }
  .closing-card { width: min(100% - 24px, 620px); padding: 46px 22px; border-radius: 24px; }
  .closing-card h2 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .closing-actions { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-bottom: 32px; }
}

@media (max-width: 440px) {
  .platform-grid, .footer-grid { grid-template-columns: 1fr; }
  .platform:last-child, .footer-brand { grid-column: auto; }
  .release-stamp { right: 0; left: 0; min-width: 0; }
  .story-portrait blockquote { margin-right: 0; font-size: 1.12rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
