:root {
  color-scheme: light;
  --ink: #251822;
  --muted: #746a70;
  --plum: #39142f;
  --plum-light: #5b234c;
  --coral: #e75a4c;
  --gold: #f3a54a;
  --cream: #fbf7f0;
  --paper: #fffdf9;
  --rose: #f7e9e2;
  --line: rgba(57, 20, 47, .13);
  --shadow: 0 22px 60px rgba(57, 20, 47, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans Tamil", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(57, 20, 47, .045) .7px, transparent .7px);
  background-size: 11px 11px;
  content: "";
  pointer-events: none;
}

a { color: inherit; }

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

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

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--plum);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(57, 20, 47, .08);
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(18px);
}

.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--plum);
  color: white;
  box-shadow: 0 8px 20px rgba(57, 20, 47, .19);
}

.brand-mark svg { width: 31px; height: 31px; }
.brand-type { display: grid; line-height: 1; }
.brand-name { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.brand-tamil { margin-top: 5px; color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .25em; }

.desktop-nav { display: flex; align-items: center; gap: 28px; }

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: .2s ease;
}

.nav-link:hover, .nav-link.is-active { color: var(--plum); }
.nav-link:hover::after, .nav-link.is-active::after { opacity: 1; transform: scaleX(1); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  box-shadow: 0 10px 28px rgba(57, 20, 47, .17);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { background: var(--plum-light); box-shadow: 0 14px 32px rgba(57, 20, 47, .24); transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.search-icon { width: 19px; height: 19px; flex: 0 0 auto; }
.button-light { border-color: white; background: white; color: var(--plum); box-shadow: none; }
.button-light:hover { background: var(--cream); }
.text-link { color: var(--plum); font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { display: grid; width: 44px; height: 44px; cursor: pointer; list-style: none; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--plum); }
.mobile-menu nav { position: absolute; top: 54px; right: 0; display: grid; width: 210px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
.mobile-menu nav a { padding: 11px 12px; border-radius: 9px; font-weight: 600; text-decoration: none; }
.mobile-menu nav a:hover { background: var(--rose); color: var(--plum); }

.eyebrow { margin: 0 0 13px; color: var(--coral); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #ffc685; }

.display-title,
.page-title,
.section-title {
  margin: 0;
  font-family: "Playfair Display", "Noto Sans Tamil", serif;
  color: var(--plum);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.display-title { max-width: 720px; font-size: clamp(46px, 7vw, 88px); }
.display-title em { color: var(--coral); font-weight: 600; }
.page-title { font-size: clamp(38px, 5vw, 66px); }
.section-title { font-size: clamp(31px, 4vw, 48px); }
.section-title-small { font-size: clamp(27px, 3vw, 36px); }

.hero { position: relative; overflow: hidden; padding: clamp(66px, 10vw, 126px) 0 76px; }
.hero::after { position: absolute; top: 36px; right: max(-80px, calc((100vw - 1180px) / 2 - 100px)); width: 360px; height: 360px; border: 1px solid rgba(231, 90, 76, .17); border-radius: 50%; content: ""; box-shadow: 0 0 0 42px rgba(243, 165, 74, .04), 0 0 0 86px rgba(57, 20, 47, .025); }
.hero-grid { position: relative; z-index: 1; display: grid; align-items: end; gap: 45px; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr); }
.hero-copy { position: relative; }
.hero-copy::before { display: block; width: 64px; height: 5px; margin-bottom: 28px; border-radius: 99px; background: linear-gradient(90deg, var(--coral), var(--gold)); content: ""; }
.hero-dek { max-width: 600px; margin: 26px 0 32px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

.hero-search {
  display: grid;
  max-width: 650px;
  min-height: 62px;
  align-items: center;
  margin: 0 0 23px;
  padding: 6px 6px 6px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(57, 20, 47, .09);
  color: var(--muted);
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.hero-search input::placeholder { color: #9b9197; }

.hero-search:focus-within { border-color: rgba(231, 90, 76, .65); box-shadow: 0 14px 42px rgba(57, 20, 47, .12), 0 0 0 4px rgba(231, 90, 76, .08); }

.hero-search button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.hero-search button:hover { background: #d94c40; transform: translateY(-1px); }

.quote-card { position: relative; padding: 34px 31px 30px; overflow: hidden; border-radius: 28px 28px 28px 6px; background: var(--plum); box-shadow: var(--shadow); color: white; transform: rotate(1.5deg); }
.quote-mark { position: absolute; top: -12px; right: 18px; color: rgba(255, 255, 255, .08); font-family: Georgia, serif; font-size: 120px; line-height: 1; }
.quote-tamil { position: relative; margin: 0; font-family: "Noto Sans Tamil", sans-serif; font-size: 21px; font-weight: 600; line-height: 1.8; }
.quote-translation { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.67); font-family: "Playfair Display", serif; font-size: 14px; font-style: italic; }

.feature-strip { position: relative; z-index: 2; margin-top: -26px; }
.feature-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 14px 50px rgba(57,20,47,.07); grid-template-columns: repeat(3, 1fr); }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; padding: 22px 25px; }
.feature + .feature { border-left: 1px solid var(--line); }
.feature-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--rose); color: var(--coral); font-size: 18px; }
.feature strong { display: block; color: var(--plum); font-size: 14px; }
.feature span:last-child { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

.content-section { padding: 100px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading-copy { max-width: 630px; }
.section-dek { max-width: 500px; margin: 15px 0 0; color: var(--muted); }

.movie-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.movie-card { position: relative; overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 8px 30px rgba(57, 20, 47, .055); transition: transform .25s ease, box-shadow .25s ease; }
.movie-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.poster-wrap { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--plum); }
.poster-wrap::after { position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(30,10,25,.55)); content: ""; }
.poster { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.movie-card:hover .poster { transform: scale(1.055); }
.poster-fallback { display: grid; height: 100%; place-items: center; padding: 28px; background: radial-gradient(circle at 75% 20%, rgba(243,165,74,.4), transparent 28%), linear-gradient(140deg, var(--plum), #7a2f55); color: white; font-family: "Playfair Display", serif; font-size: 24px; text-align: center; }
.year-pill { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 5px 10px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(37,24,34,.72); backdrop-filter: blur(8px); color: white; font-size: 11px; font-weight: 700; }
.hits-pill { position: absolute; bottom: 12px; left: 12px; z-index: 2; padding: 5px 10px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(37,24,34,.72); backdrop-filter: blur(8px); color: white; font-size: 11px; font-weight: 700; }
.movie-card-body { padding: 19px 19px 20px; }
.movie-card-title { margin: 0; color: var(--plum); font-family: "Playfair Display", "Noto Sans Tamil", serif; font-size: 21px; line-height: 1.25; }
.movie-card-title a { text-decoration: none; }
.movie-card-title a::after { position: absolute; inset: 0; content: ""; }
.movie-card:hover .movie-card-title { color: var(--coral); }
.movie-card-tamil { min-height: 22px; margin: 7px 0 0; color: var(--muted); font-family: "Noto Sans Tamil", sans-serif; font-size: 12px; }
.movie-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.movie-card-meta span:last-child { color: var(--coral); font-weight: 700; }

.manifesto { overflow: hidden; background: var(--plum); color: white; }
.manifesto-inner { position: relative; display: grid; align-items: center; gap: 70px; padding-block: 76px; grid-template-columns: .8fr 1.2fr; }
.manifesto-inner::after { position: absolute; right: -160px; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; box-shadow: 0 0 0 60px rgba(255,255,255,.025); }
.manifesto-word { color: rgba(255,255,255,.06); font-family: "Noto Sans Tamil", sans-serif; font-size: clamp(70px, 11vw, 138px); font-weight: 700; line-height: 1; white-space: nowrap; }
.manifesto-copy { position: relative; z-index: 1; }
.manifesto-copy h2 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(32px, 4vw, 50px); line-height: 1.15; }
.manifesto-copy p { max-width: 600px; margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }

.page-hero { padding: 74px 0 42px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { font-weight: 600; text-decoration: none; }
.breadcrumbs a:hover { color: var(--coral); }
.page-intro { max-width: 610px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }

.movies-page { padding: 0 0 100px; }
.movie-filters { display: flex; align-items: end; gap: 13px; margin-bottom: 30px; padding: 18px; border: 1px solid var(--line); border-radius: 19px; background: var(--paper); box-shadow: 0 10px 35px rgba(57,20,47,.055); }
.filter-field { display: grid; min-width: 210px; gap: 6px; }
.filter-field label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.filter-field select { min-height: 44px; padding: 0 40px 0 13px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: var(--cream); color: var(--plum); cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; }
.filter-field select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(231,90,76,.09); }
.filter-submit { min-height: 44px; padding: 0 19px; border: 0; border-radius: 11px; background: var(--plum); color: white; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.filter-submit:hover { background: var(--plum-light); }
.filter-reset { min-height: 44px; padding: 12px 8px; color: var(--coral); font-size: 13px; font-weight: 700; text-decoration: none; }
.filter-reset:hover { text-decoration: underline; }
.movies-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.movies-toolbar strong { color: var(--plum); }
.movie-grid-wide { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.page-meta { color: var(--muted); font-size: 13px; }
.page-links { display: flex; flex-wrap: wrap; gap: 10px; }
.page-link { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--plum); font-size: 13px; font-weight: 700; text-decoration: none; }
.page-link:hover { border-color: var(--coral); color: var(--coral); }

.search-page { padding: 70px 0 100px; }
.search-page-header { max-width: 760px; margin: 0 auto; text-align: center; }
.search-page-header .page-intro { margin-inline: auto; }
.search-page-header .hero-search { max-width: 760px; margin: 30px auto 0; text-align: left; }
.search-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 60px 0 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.search-summary p { margin: 0; color: var(--muted); }
.search-summary strong { color: var(--plum); }
.result-section + .result-section { margin-top: 72px; }
.result-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.result-heading h2 { margin: 0; color: var(--plum); font-family: "Playfair Display", serif; font-size: 32px; }
.result-heading span { color: var(--muted); font-size: 13px; }
.song-result-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.song-result-card { position: relative; display: grid; min-width: 0; align-items: center; gap: 17px; padding: 13px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); grid-template-columns: 82px minmax(0,1fr) auto; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.song-result-card:hover { border-color: rgba(231,90,76,.42); box-shadow: 0 12px 35px rgba(57,20,47,.08); transform: translateY(-3px); }
.song-result-art { display: block; overflow: hidden; width: 82px; aspect-ratio: 1; border-radius: 12px; background: var(--plum); }
.song-result-art img { width: 100%; height: 100%; object-fit: cover; }
.song-result-art .poster-fallback { padding: 9px; font-size: 13px; }
.song-result-copy { min-width: 0; }
.song-result-title { margin: 0; color: var(--plum); font-family: "Playfair Display", "Noto Sans Tamil", serif; font-size: 19px; line-height: 1.25; }
.song-result-title a { text-decoration: none; }
.song-result-title a::after { position: absolute; inset: 0; content: ""; }
.song-result-tamil, .song-result-meta { overflow: hidden; margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4; white-space: nowrap; text-overflow: ellipsis; }
.song-result-tamil { font-family: "Noto Sans Tamil", sans-serif; }
.song-result-arrow { color: var(--coral); font-size: 18px; }
.search-welcome { max-width: 720px; margin: 54px auto 0; padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); text-align: center; }
.search-welcome span { display: grid; width: 52px; height: 52px; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: var(--rose); color: var(--coral); }
.search-welcome h2 { margin: 0; color: var(--plum); font-family: "Playfair Display", serif; font-size: 27px; }
.search-welcome p { margin: 10px 0 0; color: var(--muted); }

.detail-hero { padding: 62px 0 52px; }
.detail-grid { display: grid; align-items: center; gap: clamp(36px, 7vw, 86px); grid-template-columns: minmax(250px, .64fr) minmax(0, 1.36fr); }
.detail-art { position: relative; }
.detail-art::before { position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border-radius: 26px; background: var(--rose); content: ""; }
.detail-poster { overflow: hidden; aspect-ratio: 4 / 3; border-radius: 26px 26px 8px 26px; background: var(--plum); box-shadow: var(--shadow); }
.detail-poster img { width: 100%; height: 100%; object-fit: cover; }
.detail-poster .poster-fallback { font-size: 36px; }
.detail-copy .page-title { max-width: 700px; }
.tamil-title { margin: 15px 0 0; color: var(--coral); font-family: "Noto Sans Tamil", sans-serif; font-size: clamp(18px, 2.2vw, 25px); font-weight: 600; }
.detail-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.chip { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--muted); font-size: 12px; font-weight: 600; }
.detail-description { max-width: 680px; margin: 25px 0 0; color: var(--muted); }

.songs-section { padding: 54px 0 100px; }
.songs-layout { display: grid; align-items: start; gap: 58px; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); }
.song-list { display: grid; gap: 12px; margin: 27px 0 0; padding: 0; list-style: none; counter-reset: songs; }
.song-item { position: relative; display: grid; min-width: 0; align-items: center; gap: 17px; padding: 16px 20px 16px 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); counter-increment: songs; grid-template-columns: 38px minmax(0,1fr) auto; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.song-item:hover { border-color: rgba(231,90,76,.42); box-shadow: 0 10px 30px rgba(57,20,47,.07); transform: translateX(4px); }
.song-item.is-current { border-color: rgba(231,90,76,.28); background: var(--rose); }
.song-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--rose); color: var(--coral); font-family: "Playfair Display", serif; font-size: 14px; font-weight: 700; }
.song-number::before { content: counter(songs, decimal-leading-zero); }
.song-info { min-width: 0; }
.song-title { margin: 0; color: var(--plum); font-family: "Playfair Display", "Noto Sans Tamil", serif; font-size: 19px; line-height: 1.3; }
.song-title a { text-decoration: none; }
.song-title a::after { position: absolute; inset: 0; content: ""; }
.song-tamil { display: block; margin-top: 4px; color: var(--muted); font-family: "Noto Sans Tamil", sans-serif; font-size: 12px; font-weight: 400; }
.song-credit { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.song-arrow { color: var(--coral); font-size: 19px; transition: transform .2s ease; }
.song-item:hover .song-arrow { transform: translateX(4px); }
.side-note { padding: 28px; border-radius: 22px; background: var(--plum); color: white; }
.side-note-symbol { color: var(--gold); font-family: "Playfair Display", serif; font-size: 48px; line-height: 1; }
.side-note h3 { margin: 10px 0 0; font-family: "Playfair Display", serif; font-size: 25px; }
.side-note p { margin: 13px 0 0; color: rgba(255,255,255,.67); font-size: 14px; }

.lyric-page { padding: 60px 0 100px; }
.lyric-shell { width: min(920px, calc(100% - 40px)); margin-inline: auto; }
.lyric-header { display: grid; align-items: center; gap: 32px; grid-template-columns: 118px minmax(0,1fr); }
.lyric-thumb { overflow: hidden; width: 118px; aspect-ratio: 1; border-radius: 22px 22px 6px 22px; background: var(--plum); box-shadow: var(--shadow); }
.lyric-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lyric-thumb .poster-fallback { padding: 12px; font-size: 17px; }
.song-byline { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.song-byline a { color: var(--coral); font-weight: 700; text-decoration: none; }
.song-views { display: flex; align-items: center; gap: 6px; margin: 10px 0 0; color: var(--muted); font-size: 12px; font-weight: 600; }
.song-views svg { width: 17px; height: 17px; fill: none; stroke: var(--coral); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.credits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.credit { margin: 0; padding: 8px 13px; border-radius: 999px; background: var(--rose); color: var(--plum); font-size: 12px; }
.credit strong { color: var(--coral); }
.lyrics-card { position: relative; margin-top: 44px; padding: clamp(28px, 6vw, 64px); border: 1px solid var(--line); border-radius: 30px 30px 8px 30px; background: var(--paper); box-shadow: var(--shadow); }
.lyrics-card::before { position: absolute; top: 0; left: clamp(28px, 6vw, 64px); width: 62px; height: 4px; border-radius: 0 0 5px 5px; background: linear-gradient(90deg, var(--coral), var(--gold)); content: ""; }
.lyrics-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.lyrics-label { margin: 0; color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.lyrics-toolbar { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.lyrics-tabs { display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); }
.lyrics-tab { min-height: 36px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; font-weight: 700; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.lyrics-tab:hover { color: var(--plum); }
.lyrics-tab:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.lyrics-tab.is-active { background: var(--plum); box-shadow: 0 5px 14px rgba(57,20,47,.16); color: white; }
.lyrics-actions { display: flex; gap: 7px; }
.lyrics-action { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 7px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--plum); cursor: pointer; font: inherit; font-size: 12px; font-weight: 700; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.lyrics-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.lyrics-action:hover:not(:disabled) { border-color: rgba(214,74,66,.45); background: var(--rose); color: var(--coral); transform: translateY(-1px); }
.lyrics-action:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
.lyrics-action:disabled { cursor: not-allowed; opacity: .42; }
.lyrics-action-status { min-height: 0; margin: -18px 0 18px; color: var(--muted); font-size: 12px; text-align: right; }
.lyrics-action-status:empty { display: none; }
.lyrics { overflow-wrap: anywhere; color: #33252f; font-family: "Noto Sans Tamil", "DM Sans", sans-serif; font-size: clamp(18px, 2.4vw, 22px); line-height: 2.05; }
.lyrics-english { font-family: "DM Sans", sans-serif; font-size: clamp(17px, 2.2vw, 20px); }
.lyrics p { margin: 0 0 1.4em; }
.lyrics br + br { line-height: 2.8; }
.lyrics-coming-soon { display: grid; min-height: 230px; place-items: center; align-content: center; padding: 30px; border: 1px dashed rgba(57,20,47,.2); border-radius: 18px; background: var(--cream); text-align: center; }
.lyrics-coming-soon > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 14px; border-radius: 50%; background: var(--rose); color: var(--coral); font-size: 21px; }
.lyrics-coming-soon strong { color: var(--plum); font-family: "Playfair Display", "Noto Sans Tamil", serif; font-size: 23px; }
.lyrics-coming-soon p { margin: 5px 0 0; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 14px; }
.movie-songs { margin-top: 68px; }
.back-link { display: inline-block; margin-bottom: 18px; color: var(--coral); font-size: 13px; font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.empty { padding: 30px; border: 1px dashed rgba(57,20,47,.24); border-radius: 18px; background: var(--paper); color: var(--muted); text-align: center; }

.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: var(--plum); color: white; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 56px; padding-bottom: 45px; }
.brand-footer .brand-mark { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); box-shadow: none; }
.brand-footer .brand-name { color: white; }
.footer-note { margin: 15px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 13px; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; padding-bottom: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.43); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-tamil { font-family: "Noto Sans Tamil", sans-serif; }

@media (max-width: 980px) {
  .movie-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .movie-grid-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: minmax(0, 1.3fr) minmax(230px, .7fr); }
}

@media (max-width: 760px) {
  .shell, .lyric-shell { width: min(100% - 28px, 620px); }
  .header-inner { min-height: 70px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; }
  .brand-mark svg { width: 28px; height: 28px; }
  .brand-name { font-size: 21px; }
  .hero { padding: 54px 0 62px; }
  .hero::after { display: none; }
  .hero-grid { gap: 45px; grid-template-columns: 1fr; }
  .display-title { font-size: clamp(43px, 14vw, 66px); }
  .quote-card { max-width: 420px; transform: none; }
  .feature-strip { margin-top: -20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature + .feature { border-top: 1px solid var(--line); border-left: 0; }
  .content-section { padding: 74px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .movie-grid, .movie-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .movie-filters { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .filter-field { min-width: 0; }
  .filter-submit { grid-column: 1 / 2; }
  .filter-reset { align-self: center; justify-self: start; }
  .manifesto-inner { gap: 20px; padding-block: 60px; grid-template-columns: 1fr; }
  .manifesto-word { font-size: 72px; }
  .detail-hero { padding-top: 40px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-art { width: min(100%, 430px); }
  .songs-layout { gap: 38px; grid-template-columns: 1fr; }
  .song-result-grid { grid-template-columns: 1fr; }
  .side-note { order: -1; }
  .lyric-page { padding-top: 40px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .shell, .lyric-shell { width: min(100% - 22px, 440px); }
  .hero { padding-top: 42px; }
  .hero-dek { margin-top: 20px; }
  .hero-search { min-height: 58px; padding-left: 16px; }
  .hero-search button { min-height: 46px; padding-inline: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; padding: 8px; }
  .quote-card { padding: 28px 24px 24px; }
  .feature { padding: 18px; }
  .content-section { padding: 62px 0; }
  .section-heading { margin-bottom: 27px; }
  .movie-grid, .movie-grid-wide { gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .movie-card { border-radius: 15px; }
  .poster-wrap { aspect-ratio: 3 / 4; }
  .movie-card-body { padding: 14px; }
  .movie-card-title { font-size: 17px; }
  .movie-card-tamil { overflow: hidden; min-height: 19px; white-space: nowrap; text-overflow: ellipsis; }
  .movie-card-meta { margin-top: 11px; padding-top: 10px; }
  .movie-card-meta span:first-child { overflow: hidden; max-width: 74px; white-space: nowrap; text-overflow: ellipsis; }
  .page-hero { padding: 45px 0 34px; }
  .search-page { padding: 44px 0 70px; }
  .search-summary { align-items: flex-start; flex-direction: column; gap: 4px; margin-top: 44px; }
  .result-heading h2 { font-size: 27px; }
  .song-result-card { gap: 12px; grid-template-columns: 66px minmax(0,1fr) auto; }
  .song-result-art { width: 66px; }
  .song-result-title { font-size: 17px; }
  .movies-toolbar { align-items: flex-start; flex-direction: column; gap: 4px; }
  .movie-filters { grid-template-columns: 1fr; padding: 15px; }
  .filter-submit { grid-column: auto; }
  .filter-reset { min-height: auto; padding: 3px 4px; }
  .pagination { align-items: flex-start; flex-direction: column; }
  .detail-art::before { inset: 12px -8px -12px 12px; }
  .detail-poster { border-radius: 20px 20px 6px 20px; }
  .song-item { gap: 12px; padding: 14px 13px; grid-template-columns: 34px minmax(0,1fr) auto; }
  .song-number { width: 34px; height: 34px; }
  .song-title { font-size: 17px; }
  .lyric-header { align-items: start; gap: 19px; grid-template-columns: 78px minmax(0,1fr); }
  .lyric-thumb { width: 78px; border-radius: 16px 16px 5px 16px; }
  .lyric-header .page-title { font-size: 31px; }
  .lyrics-card { margin-top: 32px; padding: 30px 22px; border-radius: 22px 22px 6px 22px; }
  .lyrics-card-heading { align-items: flex-start; flex-direction: column; }
  .lyrics-toolbar { width: 100%; justify-content: space-between; }
  .lyrics-action { width: 44px; padding: 0; }
  .lyrics-action span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .lyrics-action-status { margin-top: -16px; }
  .lyrics { font-size: 18px; line-height: 2; }
  .footer-links { gap: 18px; }
}

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