/* ============================================================
   TARO & CO — shared stylesheet
   Palette: strong white &amp; grey monochrome, brass accent.
   No black backgrounds anywhere — black/charcoal is reserved
   for text and the hero brush mark only.
   ============================================================ */

:root {
  --cream: #FFFFFF;
  --cream-deep: #EDEAE2;
  --paper: #E3DFD4;
  --silver: #CFC9BB;
  --stone: #B3AC9C;
  --charcoal: #1A1A1C;
  --charcoal-soft: #55524A;
  --charcoal-faint: #8B8778;
  --ink: #121213;
  --ink-soft: #2E2D2A;
  --void: #C7C0AF;
  --ink-line: rgba(0, 0, 0, 0.14);
  --ink-line-strong: rgba(0, 0, 0, 0.28);
  --ink-text-soft: rgba(0, 0, 0, 0.68);
  --ink-text-faint: rgba(0, 0, 0, 0.46);
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.22);
  --brass: #A9793C;
  --brass-soft: rgba(169, 121, 60, 0.85);
  --max-w: 1180px;
  --gutter: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  font-weight: 400;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.site-header .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
}

.lang-toggle {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.lang-btn {
  background: none;
  border: none;
  padding: 3px 1px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--charcoal-faint);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.lang-btn:hover { color: var(--charcoal-soft); }
.lang-btn.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.lang-sep {
  color: var(--line-strong);
  font-size: 0.7rem;
}

@keyframes logoSwipeIn {
  0% { transform: translateX(-220px); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}

.site-header .logo {
  animation: logoSwipeIn 6s cubic-bezier(0.16, 1, 0.3, 1) 1 both;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo span {
  color: var(--charcoal-faint);
}

.logo img {
  height: 156px;
  width: auto;
  max-width: none;
  display: block;
}

.footer-top .logo img {
  height: 168px;
}

nav.main-nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}

nav.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

nav.main-nav a:hover {
  color: var(--charcoal);
}

nav.main-nav a.active {
  color: var(--brass);
}

nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--charcoal);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--charcoal-soft);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 120px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--cream-deep) 0%, var(--cream) 60%);
}

.headline-wrap {
  position: relative;
  display: inline-block;
}
@keyframes brushPaintIn {
  0% { clip-path: inset(0 0 0 100%); }
  100% { clip-path: inset(0 0 0 0%); }
}

.hero-brush {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 100%);
  animation: brushPaintIn 5s cubic-bezier(0.16, 1, 0.3, 1) 0s 1 both;
}
.hero-brush img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}
.headline-wrap h1 {
  position: relative;
  z-index: 1;
}
.hero h1.on-brush {
  color: #ffffff;
  padding: 0.15em 0;
}

.hero .eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.08;
  max-width: 30ch;
  margin: 0 auto;
}

.hero p.lede {
  max-width: 46ch;
  margin: 28px auto 0;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

.hero .actions {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- hero video banner ---------- */

.hero-video-section {
  padding: 0;
  border-bottom: none;
  background: var(--void);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.6) 100%);
}

.hero-video-content {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 15vw, 170px) var(--gutter) clamp(70px, 11vw, 130px);
}

.hero-logo-mark {
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
}
.hero-logo-mark img {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  filter: invert(1) brightness(1.4);
}

.hero-video-content .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 22px; }
.hero-video-content h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.08;
  max-width: 30ch;
  margin: 0 auto;
}
.hero-video-content p.lede {
  max-width: 46ch;
  margin: 28px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

.btn-on-video {
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}
.btn-on-video:hover {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}
.hero-video-content .btn-ghost.btn-on-video {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}

/* ---------- page header (non-home) ---------- */

.page-header {
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--cream-deep) 0%, var(--cream) 60%);
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-top: 18px;
}
.page-header p {
  max-width: 52ch;
  margin: 20px auto 0;
  color: var(--charcoal-soft);
}

/* ---------- sections ---------- */

section { padding: clamp(64px, 9vw, 110px) 0; }
.section-border-top { border-top: 1px solid var(--line); }
.section-alt { background: var(--cream-deep); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 16px;
}
.section-head p {
  color: var(--charcoal-soft);
  margin-top: 18px;
}

/* ---------- services grid ---------- */

.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.service-card {
  background: var(--cream);
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--paper); }

.service-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--brass-soft);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.5rem;
}
.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- talent booking cube ---------- */

.booking-cube {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  max-width: 560px;
  margin: 0 auto;
}
.booking-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.booking-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.booking-tile:hover img { transform: scale(1.06); }
.booking-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
}

/* ---------- home teaser list ---------- */

.services-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 160px;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.service-row .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brass-soft);
}
.service-row h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
.service-row .tag {
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}

/* ---------- about / split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split .media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 30%, var(--stone) 50%, var(--silver) 70%, var(--paper) 100%);
  background-size: 260% 260%;
  animation: sheen 9s ease-in-out infinite;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split .media .mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: var(--brass-soft);
}
.split .copy .eyebrow { margin-bottom: 18px; }
.split .copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 22px;
}
.split .copy p {
  color: var(--charcoal-soft);
  margin-bottom: 18px;
}

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
  padding: 44px 20px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .figure {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
}
.stat .label {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}

/* ---------- values / cards ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.value .idx {
  font-family: 'Cormorant Garamond', serif;
  color: var(--brass);
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: block;
}
.value p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* ---------- quote / CTA banner ---------- */

.cta-banner {
  text-align: center;
  padding: clamp(70px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.cta-banner h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  max-width: 20ch;
  margin: 0 auto 30px;
}

blockquote.pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--charcoal);
}
blockquote.pull cite {
  display: block;
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.contact-info .item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:first-child { padding-top: 0; }
.contact-info .item .eyebrow { margin-bottom: 10px; }
.contact-info .item p, .contact-info .item a {
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 26px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--charcoal);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ---------- footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: var(--void);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-top .logo { margin-bottom: 14px; }
.footer-top .blurb {
  max-width: 34ch;
  color: var(--ink-text-soft);
  font-size: 0.92rem;
}
.footer-cols {
  display: flex;
  gap: clamp(40px, 8vw, 100px);
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-text-faint);
  font-weight: 400;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.92rem;
  color: var(--ink-text-soft);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-text-faint);
}

/* ---------- roster / artist cards ---------- */

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.artist-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}
.artist-card:hover { background: var(--paper); }
.artist-card .avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 30%, var(--stone) 50%, var(--silver) 70%, var(--paper) 100%);
  background-size: 260% 260%;
  animation: sheen 9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.artist-card .avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--brass-soft);
  letter-spacing: 0.04em;
}
.artist-card .info { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.artist-card .role {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
  margin-bottom: 8px;
}
.artist-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.artist-card p { font-size: 0.88rem; color: var(--charcoal-soft); margin: 0 0 18px; flex: 1; }
.artist-card .book-link {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ---------- tribute / concept cards ---------- */

.tribute-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.tribute-card {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.tribute-card .visual {
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 30%, var(--stone) 50%, var(--silver) 70%, var(--paper) 100%);
  background-size: 260% 260%;
  animation: sheen 9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.tribute-card .visual span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brass-soft);
  text-align: center;
  padding: 0 12px;
}
.tribute-card .info { padding: 34px 32px; }
.tribute-card .eyebrow { margin-bottom: 12px; }
.tribute-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.tribute-card p { font-size: 0.92rem; color: var(--charcoal-soft); }

/* ---------- event case studies ---------- */

.event-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.event-case:first-child { padding-top: 0; }
.event-case.reverse .visual { order: 2; }
.event-case .visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 30%, var(--stone) 50%, var(--silver) 70%, var(--paper) 100%);
  background-size: 260% 260%;
  animation: sheen 9s ease-in-out infinite;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-case .visual span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brass-soft);
}
.event-case .tag-row { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.event-case .tag-row span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-soft);
  border: 1px solid var(--brass-soft);
  padding: 4px 10px;
}
.event-case h3 { font-size: 1.7rem; margin-bottom: 14px; }
.event-case p { color: var(--charcoal-soft); }

/* ---------- clients: logo wall + testimonials ---------- */

.client-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.client-tile {
  background: var(--cream);
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--charcoal-soft);
  text-align: center;
  padding: 12px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--charcoal);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal-faint);
}

/* ---------- photo gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 6px;
}
.gallery-item {
  background: linear-gradient(135deg, var(--paper) 0%, var(--silver) 30%, var(--stone) 50%, var(--silver) 70%, var(--paper) 100%);
  background-size: 260% 260%;
  animation: sheen 9s ease-in-out infinite;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--brass-soft);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- motion: shimmer + scroll reveal ---------- */

@keyframes sheen {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.roster-grid .artist-card:nth-child(2n) .avatar { animation-delay: 1.5s; }
.roster-grid .artist-card:nth-child(3n) .avatar { animation-delay: 3s; }
.roster-grid .artist-card:nth-child(4n) .avatar { animation-delay: 4.5s; }
.tribute-grid .tribute-card:nth-child(2n) .visual { animation-delay: 2.5s; }
.gallery-grid .gallery-item:nth-child(2n) { animation-delay: 2s; }
.gallery-grid .gallery-item:nth-child(3n) { animation-delay: 4s; }
.gallery-grid .gallery-item:nth-child(5n) { animation-delay: 6s; }
.event-case:nth-child(2n) .visual { animation-delay: 3s; }

@media (prefers-reduced-motion: reduce) {
  .media, .avatar, .visual, .gallery-item, .site-header .logo, .hero-brush {
    animation: none !important;
  }
  .site-header .logo {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-brush {
    clip-path: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .grid-services { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row .tag { display: none; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .tribute-grid { grid-template-columns: 1fr; }
  .tribute-card { grid-template-columns: 1fr; }
  .tribute-card .visual { aspect-ratio: 16 / 9; border-right: none; border-bottom: 1px solid var(--line); }
  .event-case { grid-template-columns: 1fr; }
  .event-case.reverse .visual { order: 0; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .site-header .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0;
  }
  .logo img { height: 84px; }
  .footer-top .logo img { height: 96px; }
  .lang-toggle {
    top: 50%;
    right: 62px;
    transform: translateY(-50%);
    gap: 7px;
  }
  .lang-btn { font-size: 0.66rem; }
  nav.main-nav {
    position: fixed;
    inset: 100px 0 0 0;
    z-index: 40;
    background: var(--void);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  nav.main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  nav.main-nav a {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    color: var(--ink-text-soft);
  }
  nav.main-nav a:hover {
    color: var(--ink);
  }
  nav.main-nav a.active {
    color: var(--brass);
  }
  nav.main-nav a.active::after {
    background: var(--brass);
  }
  .nav-toggle { display: flex; }
}
