:root {
  --paper: #f8f5ed;
  --paper-2: #eee7da;
  --ink: #1d1a16;
  --muted: #6e665c;
  --soft: #9d9284;
  --line: rgba(29, 26, 22, 0.12);
  --wine: #7c1f31;
  --wine-dark: #4f1421;
  --gold: #c49a3a;
  --leaf: #2f6f5e;
  --white: #fffdf8;
  --shadow: 0 24px 70px -38px rgba(29, 26, 22, 0.52);
  --maxw: 1200px;
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

.section-pad { padding: 104px 0; }

.eyebrow {
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.display {
  font-family: var(--display);
  font-weight: 430;
  line-height: 1.04;
  font-size: clamp(38px, 6vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head h2,
.section-head .display {
  margin: 14px 0 16px;
}

.section-head p,
.about-copy p,
.film-copy p,
.press-copy p,
.ach-grid p {
  color: var(--muted);
  font-size: 18px;
}

.section-head.compact { margin-bottom: 28px; }

.topbar {
  color: var(--white);
  background: var(--wine-dark);
}

.topbar-inner {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.topbar span {
  color: #efd082;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 237, 0.88);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav.scrolled { box-shadow: 0 18px 48px -36px rgba(29, 26, 22, 0.65); }

.nav-inner {
  width: min(100% - 40px, var(--maxw));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 520;
  white-space: nowrap;
}

.brand span {
  color: var(--wine);
  font-style: italic;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--wine); }

.nav-links .nav-cta {
  color: var(--white);
  background: var(--wine);
  padding: 11px 17px;
  border-radius: 999px;
}

.nav-links .nav-cta:hover { color: var(--white); background: var(--wine-dark); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #15100d;
}

.slides {
  display: flex;
  transition: transform 0.75s var(--ease);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.82) 0%, rgba(9, 7, 5, 0.52) 42%, rgba(9, 7, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 7, 5, 0.58), transparent 34%);
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-video-link {
  position: absolute;
  z-index: 1;
  inset: 0;
}

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

/* Poster slides: the artwork carries the message, so keep it bright and
   pin the actions to the clean bottom-right corner */
.slide-poster { align-items: flex-end; }

.slide-poster::after {
  background: linear-gradient(0deg, rgba(9, 7, 5, 0.28), transparent 16%);
}

.slide-poster .hero-copy { padding-bottom: 84px; }
.slide-poster .hero-actions { justify-content: flex-end; }

.slide-poster .btn-secondary,
.hero .slide-poster .btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 16, 13, 0.34);
}

.hero .slide-poster .btn-secondary:hover { color: var(--wine); border-color: var(--wine); }

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
  padding: 86px 0 112px;
  color: var(--white);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  margin: 13px 0 18px;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 520;
  line-height: 0.92;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-copy .eyebrow { color: #efd082; }

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--wine); }
.btn-primary:hover { background: var(--wine-dark); }
.btn-secondary { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.hero .btn-secondary { color: var(--white); background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.32); }
.btn-secondary:hover { border-color: var(--gold); color: var(--wine); }
.hero .btn-secondary:hover { color: var(--white); border-color: rgba(239, 208, 130, 0.72); }

.arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 7, 5, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.arrow:hover { background: rgba(9, 7, 5, 0.56); }
.arrow.prev { left: 20px; }
.arrow.next { right: 20px; }

.dots {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.dots button.on { background: #efd082; }

.intro-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  white-space: nowrap;
}

.strip-track {
  display: inline-block;
  padding: 19px 0;
  animation: marquee 44s linear infinite;
}

.strip-track span {
  margin: 0 30px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: min(56vw, 520px);
  object-fit: cover;
  object-position: center 20%;
}

.about-copy .display { margin: 14px 0 22px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat-row span {
  min-height: 96px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
}

.stat-row b {
  display: block;
  color: var(--wine);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 560;
}

.events,
.watch,
.services {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.event-card h3,
.service-card h3,
.post-card h3,
.press-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 520;
  line-height: 1.12;
}

.event-card h3 { margin: 12px 0; }
.event-card p:not(.eyebrow) { color: var(--muted); }

.waltz {
  background:
    linear-gradient(90deg, rgba(124, 31, 49, 0.08), transparent 38%),
    var(--paper);
}

.film-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.film-copy .display { margin: 14px 0 18px; }

.credits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.credits span {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
}

.credits b {
  display: block;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #0d0c0a;
  box-shadow: var(--shadow);
}

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

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.award-tile {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 18px 42px -32px rgba(29, 26, 22, 0.6);
}

.award-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.award-tile:hover img { transform: scale(1.04); }
.award-tile.large { grid-column: span 2; grid-row: span 2; }
.award-tile.tall { grid-row: span 2; }

.watch-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.spotify-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.spotify-shell iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.video-card img,
.thumb-grid img,
.press-card img,
.masonry img {
  width: 100%;
  object-fit: cover;
}

.video-card img {
  aspect-ratio: 16 / 9;
  opacity: 0.88;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}

.video-card:hover img { transform: scale(1.03); opacity: 1; }

.video-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--white);
  background: var(--wine);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.thumb-grid img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.platforms-wrap { margin-top: 36px; }

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
}

.platforms a {
  display: flex;
  flex-direction: column;
  min-height: 86px;
  justify-content: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.platforms a:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 31, 49, 0.35);
}

.platforms span {
  color: var(--wine);
  font-weight: 850;
}

.platforms small { color: var(--muted); }

.press-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: start;
}

.press-copy .display { margin: 14px 0 16px; }

.press-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.press-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.press-card:first-child { grid-row: span 2; }

.press-card img {
  aspect-ratio: 16 / 10;
}

.press-card h3 {
  padding: 16px 18px 20px;
  font-size: 24px;
}

.gallery-section { background: var(--paper); }

.masonry {
  columns: 3 260px;
  column-gap: 14px;
}

.masonry img {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 18px 42px -34px rgba(29, 26, 22, 0.7);
}

.masonry img:not(.tall):not(.square) { aspect-ratio: 4 / 3; }
.masonry img.square { aspect-ratio: 1 / 1; }
.masonry img.tall { aspect-ratio: 3 / 4; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.service-card span {
  color: var(--wine);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}

.service-card h3 { margin: 28px 0 14px; }
.service-card p { color: var(--muted); }

.service-card a {
  margin-top: auto;
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.achritique-band {
  background:
    linear-gradient(135deg, rgba(47, 111, 94, 0.12), transparent 36%),
    var(--paper);
}

.ach-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
}

.ach-grid .display { margin-top: 12px; color: var(--leaf); }

.post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.post-list .btn { justify-self: start; margin-top: 10px; }

.post-card {
  display: block;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 94, 0.35);
}

.post-card small {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-card h3 { margin: 26px 0 10px; font-size: 28px; }
.post-card p { color: var(--muted); }

.contact {
  color: var(--white);
  background:
    linear-gradient(rgba(79, 20, 33, 0.9), rgba(79, 20, 33, 0.9)),
    url("../media/hero/banner-3.jpg") center / cover;
}

.contact-inner {
  max-width: 900px;
  text-align: center;
}

.contact .eyebrow { color: #efd082; }
.contact .display { margin: 16px auto 28px; }

.email-cta {
  display: inline-block;
  color: #efd082;
  font-family: var(--display);
  font-size: clamp(25px, 4vw, 42px);
  font-style: italic;
  border-bottom: 1px solid rgba(239, 208, 130, 0.72);
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.socials a {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  padding: 32px 0;
  font-size: 14px;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.foot-inner span:first-child {
  color: var(--wine);
  font-family: var(--display);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slides,
  .reveal,
  .strip-track {
    animation: none;
    transition: none;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav-links { gap: 14px; }
  .event-card,
  .film-grid,
  .watch-grid,
  .press-grid,
  .ach-grid {
    grid-template-columns: 1fr;
  }
  .award-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid,
  .platforms {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section-pad { padding: 76px 0; }
  .topbar-inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: calc(100vh - 76px);
    padding: 54px 20px 40px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 16px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(52px, 17vw, 86px); }
  .arrow { display: none; }
  .about-grid,
  .event-grid,
  .post-list {
    grid-template-columns: 1fr;
  }
  .stat-row,
  .credits,
  .platforms,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .award-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .award-tile.large { grid-column: span 2; grid-row: span 1; }
  .press-cards { grid-template-columns: 1fr; }
  .press-card:first-child { grid-row: auto; }
}

@media (max-width: 560px) {
  .wrap,
  .nav-inner,
  .topbar-inner,
  .hero-copy {
    width: min(100% - 28px, var(--maxw));
  }
  .nav-inner { min-height: 68px; }
  .brand { font-size: 21px; }
  .slide { min-height: 640px; align-items: flex-end; }
  .slide::after {
    background:
      linear-gradient(0deg, rgba(9, 7, 5, 0.9) 0%, rgba(9, 7, 5, 0.58) 52%, rgba(9, 7, 5, 0.18) 100%);
  }
  .hero-copy { padding-bottom: 86px; }
  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }
  .event-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .award-grid {
    display: block;
  }
  .award-tile {
    height: 260px;
    margin-bottom: 12px;
  }
  .thumb-grid { grid-template-columns: 1fr; }
  .email-cta { overflow-wrap: anywhere; }
}

/* ============================================================
   Merged additions: banner polish, roots boxes, award chip,
   press links, Roopa Fine Arts, Spotify fallback
   ============================================================ */

/* hero banner polish */

.slide-bg { will-change: transform; }

.slide.is-active .slide-bg { animation: kenburns 9s ease-out forwards; }

@keyframes kenburns {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.slide.is-active .hero-copy > * { opacity: 1; transform: none; }
.slide.is-active .hero-copy > *:nth-child(2) { transition-delay: 0.1s; }
.slide.is-active .hero-copy > *:nth-child(3) { transition-delay: 0.2s; }
.slide.is-active .hero-copy > *:nth-child(4) { transition-delay: 0.3s; }

.hero-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: #efd082;
}

.dots button { width: 26px; transition: width 0.3s var(--ease), background 0.3s; }
.dots button.on { width: 54px; }

@media (prefers-reduced-motion: reduce) {
  .slide.is-active .slide-bg { animation: none; }
  .hero-copy > * { opacity: 1; transform: none; transition: none; }
}

/* artist roots boxes */

.about-copy p + p { margin-top: 14px; }

.award-tile.wide { grid-column: span 2; }

.roots-stack { display: grid; gap: 12px; margin: 20px 0 26px; }

.roots-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px -34px rgba(29, 26, 22, 0.6);
}

.roots-item b {
  flex: 0 0 128px;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-style: italic;
  font-weight: 520;
  line-height: 1.1;
}

.roots-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* award chip in the film section */

.award-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 18px;
  border: 1px solid rgba(196, 154, 58, 0.55);
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.award-chip:hover { border-color: var(--wine); transform: translateY(-2px); }

.award-chip svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* spotify fallback link */

.spotify-fallback {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.spotify-fallback:hover { color: var(--wine); border-color: var(--wine); }

/* press cards as links */

.press-card {
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

a.press-card:hover { transform: translateY(-3px); border-color: rgba(124, 31, 49, 0.35); }

.press-card .soon {
  display: inline-block;
  margin: 0 18px 18px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thumb-grid a { display: block; border-radius: 8px; overflow: hidden; }

/* Roopa Fine Arts */

.teaching {
  background:
    linear-gradient(135deg, rgba(196, 154, 58, 0.14), transparent 40%),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.teach-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.teach-grid .display { margin: 14px 0 18px; }
.teach-grid p { color: var(--muted); font-size: 18px; }
.teach-grid p + p { margin-top: 14px; }

.teach-note { margin-top: 14px; color: var(--soft); font-size: 14px; }

.teach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.teach-stats .stat {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px -34px rgba(29, 26, 22, 0.55);
}

.teach-stats b {
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 540;
  line-height: 1.15;
}

.teach-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .teach-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .teach-stats { grid-template-columns: 1fr 1fr; }
  .roots-item b { flex-basis: 104px; }
}

/* ---- Subpage (Roopa Fine Arts) ---- */

.subhero {
  padding: 84px 0 96px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(196, 154, 58, 0.14), transparent 70%),
    var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.subhero .crumbs {
  margin-bottom: 26px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subhero .crumbs a { color: var(--wine); }
.subhero .crumbs span[aria-hidden] { margin: 0 8px; }

.subhero h1 { max-width: 860px; }

.subhero .lede {
  max-width: 720px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 19px;
}

.subhero .lede a {
  color: var(--wine);
  border-bottom: 1px solid rgba(124, 31, 49, 0.35);
}

.faq-section { background: var(--paper); }

.faq-list {
  max-width: 820px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 44px 22px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wine);
  font-family: var(--body);
  font-size: 22px;
  font-weight: 500;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding: 0 0 24px;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

.faq-item p a { color: var(--wine); border-bottom: 1px solid rgba(124, 31, 49, 0.35); }

.teach-grid p a { color: var(--wine); border-bottom: 1px solid rgba(124, 31, 49, 0.35); }
