:root {
  --accent: #0e9599;
  --accent-hover: #0a5f62;
  --accent-deep: #0a6b6e;
  --accent-soft: #daf0ee;
  --ink: #1c1e1e;
  --ink-soft: #4a4f4e;
  --ink-muted: #6b6f6f;
  --ink-faint: #8a8f8e;
  --border: #dcdad5;
  --bg: #fbfaf8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { color: var(--accent-hover); }

button { font-family: inherit; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 32px;
}

.nav-logo {
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 28px; font-size: 15px; }

.nav-link { color: var(--ink-muted); }
.nav-link:hover { color: var(--ink); }
.nav-link-active { color: var(--ink); font-weight: 500; }
.nav-link-active:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1120px;
  width: 100%;
  margin: 24px auto 56px;
  padding: 0 32px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(120% 160% at 15% 0%, #16554f 0%, #0f403c 45%, #0b2e2c 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 64px 56px;
}

.hero-letters, .hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-letters { font-family: 'Space Grotesk', Helvetica, sans-serif; }

.hero-letter {
  position: absolute;
  font-weight: 700;
  animation-name: drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-star {
  position: absolute;
  border-radius: 50%;
  animation-name: twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #bfeeea;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-title {
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 16px;
  color: #ffffff;
}

.hero-tagline {
  font-size: 19px;
  color: #a8c5c3;
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 440px;
  text-wrap: pretty;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover { background: #ffffff; color: #0f403c; }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.32);
}
.btn-outline:hover { border-color: #ffffff; color: #ffffff; }

.play-glyph {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 9px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.hero-thumbs {
  position: relative;
  min-height: 320px;
}

.hero-thumb {
  position: absolute;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.16);
  cursor: pointer;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-thumb-1 { top: 4%; right: 22%; width: 62%; z-index: 1; animation: floatB 6s ease-in-out infinite; }
.hero-thumb-2 { top: 38%; right: 0%; width: 56%; z-index: 2; animation: floatA 7s ease-in-out 0.8s infinite; }
.hero-thumb-3 { top: 58%; right: 48%; width: 48%; z-index: 3; animation: floatC 5.5s ease-in-out 0.4s infinite; }

/* ---------- Filters ---------- */
.filters {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #ffffff;
  color: var(--ink-soft);
  transition: all 0.15s;
}

.chip:hover { border-color: var(--ink); }

.chip.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.chip.active:hover { border-color: var(--ink); }


/* ---------- Video grid ---------- */
.grid-section {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 24px;
}

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

.video-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s;
}
.video-card:hover { transform: translateY(-2px); }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #e6e4df;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(20,40,40,0.18);
}

.video-play-btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 16px solid var(--accent-deep);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-title {
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.35;
}

.video-meta {
  font-size: 13.5px;
  color: var(--ink-faint);
}

.video-lyrics-credit {
  font-size: 12.5px;
  color: var(--accent-deep);
  font-style: italic;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 24px;
}

.btn-load-more {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.btn-load-more:hover { border-color: var(--ink); }

/* ---------- Closing CTA ---------- */
.closing {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto 88px;
  padding: 0 32px;
}

.closing-card {
  background: #10403f;
  border-radius: 20px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.closing-title {
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.closing-text {
  font-size: 16px;
  color: #a8c5c3;
  margin: 0;
  max-width: 400px;
  line-height: 1.5;
  text-wrap: pretty;
}

.btn-closing { margin-top: 6px; }
.btn-closing:hover { color: #10403f; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid #e8e6e1;
  padding: 28px 32px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16,24,24,0.72);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.modal-backdrop[hidden] { display: none; }

.modal {
  width: min(880px, 100%);
  background: #0e1414;
  border-radius: 18px;
  overflow: hidden;
  animation: modalIn 0.18s ease-out;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.modal-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.modal-title {
  font-family: 'Space Grotesk', Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
}

.modal-meta { font-size: 13px; color: #8fa5a3; }

.modal-lyrics-credit {
  font-size: 12px;
  color: #8fd4d1;
  font-style: italic;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.modal-yt-link {
  font-size: 14px;
  font-weight: 600;
  color: #8fd4d1;
  padding: 9px 8px;
}
.modal-yt-link:hover { color: #ffffff; }

.btn-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-close:hover { background: rgba(255,255,255,0.2); }

/* ---------- Animations ---------- */
@keyframes modalIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
@keyframes floatA { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-10px); } }
@keyframes floatB { 0%, 100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-14px); } }
@keyframes floatC { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
@keyframes twinkle { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.25; } }
@keyframes drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 48px 28px;
  }
  .hero-thumbs {
    min-height: 220px;
    margin-top: 24px;
  }
  .nav-links { gap: 18px; font-size: 14px; }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .modal-footer { flex-direction: column; align-items: flex-start; }
  .modal-actions { width: 100%; justify-content: space-between; }
}