/* ============================================================
   Refinements — adjustments to keep structure professional
   while preserving the advanced motion/typography polish.
   ============================================================ */

/* Make Why-tilt much more restrained — keep depth, reduce theatrics */
.why-tilt {
  min-height: 260px;
  padding: 2.25rem 1.85rem 2.25rem;
}
.why-tilt__bg-num {
  font-size: clamp(5rem, 8vw, 8rem);
  opacity: .045;
  top: -.15em;
}
.why-tilt > * { transform: translateZ(8px); }

/* Statement — refined center moment (not pinned) */
.statement-block {
  text-align: center;
  padding: clamp(6rem, 14vw, 11rem) 0;
}
.statement-block__rule {
  width: 1px;
  height: 60px;
  background: var(--accent-2);
  margin: 0 auto 2rem;
}
.statement-block__text {
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: -.012em;
  color: var(--text-primary);
  max-width: 28ch;
  margin: 0 auto;
}
.statement-block__text em {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.statement-block__cite {
  margin-top: 3rem;
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: .9rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* Programs grid (clean) */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  margin-top: 3rem;
}
@media (max-width: 1024px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .programs-grid { grid-template-columns: 1fr; } }
.program-pro {
  position: relative;
  padding: 2.25rem 1.75rem 2.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 340px;
  transition: transform .55s var(--ease-out-expo), border-color .55s var(--ease-out-expo), background-color .55s ease;
  overflow: hidden;
}
.program-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(107,15,26,.04));
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.program-pro:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 40%, transparent);
}
.program-pro:hover::before { opacity: 1; }
.program-pro__num {
  font-family: var(--ff-editorial);
  font-style: italic;
  color: var(--accent-2);
  font-size: .95rem;
  letter-spacing: .04em;
}
.program-pro__stage {
  font-family: var(--ff-body);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.program-pro__title {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.program-pro__age {
  font-family: var(--ff-editorial);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
}
.program-pro__body {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.program-pro__more {
  margin-top: auto;
  font-family: var(--ff-editorial);
  font-style: italic;
  color: var(--accent-2);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .4s var(--ease-out-expo), color .3s;
}
.program-pro:hover .program-pro__more { gap: .9rem; color: var(--accent); }

/* Voice rotator (refined single, with cross-fade and depth) */
.voices-pro {
  position: relative;
  background: var(--bg-secondary);
  padding: clamp(5rem, 11vw, 9rem) 0;
  overflow: hidden;
}
.voices-pro::before {
  content: "“";
  position: absolute;
  top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(16rem, 28vw, 26rem);
  line-height: 1;
  color: var(--accent);
  opacity: .055;
  pointer-events: none;
}
.voices-pro__track {
  position: relative;
  min-height: 280px;
  width: min(820px, 92vw);
  margin: 0 auto;
}
.voice-pro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.voice-pro.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.voice-pro__q {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  color: var(--text-primary);
  max-width: 720px;
}
.voice-pro__who {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.voice-pro__who span { color: var(--accent-2); }
.voices-pro__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.voices-pro__controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--text-secondary);
  transition: all .4s var(--ease-out-expo);
}
.voices-pro__controls button:hover { border-color: var(--accent); color: var(--accent); }
.voices-pro__count {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "wght" 300;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: .04em;
}
.voices-pro__count .current { color: var(--accent); font-size: 1.4em; }

/* Editorial glimpse grid — asymmetric, refined */
.glimpse-pro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: clamp(.75rem, 1.4vw, 1.25rem);
  margin-top: 3rem;
}
.glimpse-pro__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-secondary);
}
.glimpse-pro__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo), filter .6s ease;
  filter: saturate(.95);
}
.glimpse-pro__item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.glimpse-pro__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.7), transparent 55%);
  opacity: 0;
  transition: opacity .5s ease;
}
.glimpse-pro__item:hover::after { opacity: 1; }
.glimpse-pro__cap {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  color: #FAF6F0;
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: .95rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .55s var(--ease-out-expo);
}
.glimpse-pro__item:hover .glimpse-pro__cap { opacity: 1; transform: translateY(0); }
.glimpse-pro__num {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 1;
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: .8rem;
  color: var(--accent-2);
  background: var(--bg-primary);
  padding: .25rem .55rem;
  border-radius: 2px;
}

/* Layout — magazine-style asymmetric */
.glimpse-pro__item--1 { grid-column: span 7; aspect-ratio: 16/10; }
.glimpse-pro__item--2 { grid-column: span 5; aspect-ratio: 4/5; }
.glimpse-pro__item--3 { grid-column: span 4; aspect-ratio: 3/4; }
.glimpse-pro__item--4 { grid-column: span 5; aspect-ratio: 4/3; }
.glimpse-pro__item--5 { grid-column: span 3; aspect-ratio: 3/4; }
@media (max-width: 768px) {
  .glimpse-pro__item--1, .glimpse-pro__item--2,
  .glimpse-pro__item--3, .glimpse-pro__item--4,
  .glimpse-pro__item--5 { grid-column: span 12; aspect-ratio: 16/10; }
}

/* Section heads refined */
.section-head-pro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head-pro .eyebrow {
  display: flex; align-items: center; gap: 1rem;
  color: var(--accent-2);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-head-pro .eyebrow::after {
  content: "";
  height: 1px;
  background: var(--accent-2);
  opacity: .5;
  flex: 1;
  max-width: 100px;
}
.section-head-pro h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 18ch;
}
.section-head-pro p {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
}
.section-head-pro.center { text-align: center; }
.section-head-pro.center .eyebrow { justify-content: center; }
.section-head-pro.center .eyebrow::before {
  content: ""; height: 1px; background: var(--accent-2); opacity: .5; flex: 1; max-width: 100px;
}
.section-head-pro.center h2,
.section-head-pro.center p { margin-left: auto; margin-right: auto; }

/* News teaser refined */
.notice-pro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  transition: transform .55s var(--ease-out-expo);
}
.notice-pro:hover { transform: translateY(-4px); }
.notice-pro__meta {
  display: flex; align-items: baseline; gap: 1rem;
}
.notice-pro__label {
  color: var(--accent-2);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.notice-pro__date {
  font-family: var(--ff-editorial);
  font-style: italic;
  color: var(--text-muted);
  font-size: .95rem;
}
.notice-pro h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.005em;
  transition: color .4s;
}
.notice-pro:hover h3 { color: var(--accent); }
.notice-pro p {
  margin: 0;
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.65;
}

/* CTA pro */
.cta-pro {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
  background: var(--bg-tertiary);
  overflow: hidden;
}
.cta-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,117,.16), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(107,15,26,.06), transparent 50%);
  pointer-events: none;
}
.cta-pro__deva {
  font-family: var(--ff-deva);
  font-size: .95rem;
  color: var(--text-muted);
  letter-spacing: .15em;
  display: block;
  margin-bottom: 1rem;
}
.cta-pro__heading {
  font-family: var(--ff-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 1.5rem 0 1.25rem;
}
.cta-pro__heading em {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.cta-pro__sub {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
.cta-pro__row {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Tone down cursor for restraint — keep blend but tighten */
@media (hover: hover) and (pointer: fine) {
  .cursor-v2__ring { width: 38px; height: 38px; }
  .cursor-v2__ring.is-hover { width: 52px; height: 52px; }
  .cursor-v2__ring.is-view { width: 84px; height: 84px; }
  .cursor-v2__dot { width: 6px; height: 6px; }
}
