/* ━━━━━━━━━━━ HOME ONLY ━━━━━━━━━━━ */

/* ===== HERO: Theatre Marquee ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 140px var(--gutter) clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(108%) brightness(0.96);
  transform: scale(1.04);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12) translateY(-1.5%); }
  to   { transform: scale(1.0) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; transform: scale(1.02); }
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,27,46,0.4) 0%, rgba(15,27,46,0.1) 30%, rgba(15,27,46,0.85) 75%, var(--navy) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(15,27,46,0.55) 0%, transparent 60%);
}

/* Marquee programme board — top of hero */
.programme {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 22px 28px;
  background: rgba(15, 27, 46, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--navy-hairline);
  border-top: 2px solid var(--gold);
  align-self: start;
  max-width: 680px;
  margin-top: clamp(20px, 3vw, 40px);
}
.programme__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.programme__label .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 0 rgba(168, 32, 26, 0.7);
  animation: pulse 2.2s infinite var(--ease);
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(168, 32, 26, 0); } 100% { box-shadow: 0 0 0 0 rgba(168, 32, 26, 0); } }
.programme__body {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.25;
}
.programme__body b { font-style: normal; color: var(--gold-hi); font-weight: 500; font-family: var(--body); font-size: 14px; letter-spacing: 0.06em; }
.programme__date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-dark);
  text-align: right;
}
.programme__date b { display: block; color: var(--gold-hi); font-family: var(--display); font-size: 26px; font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; margin-top: 2px; }

.hero__main {
  position: relative; z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.hero__title {
  font-size: clamp(58px, 9.4vw, 168px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--ivory);
  max-width: 11ch;
  letter-spacing: -0.025em;
}
.hero__title em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.hero__title small { display: block; font-family: var(--mal); font-style: normal; font-weight: 400; font-size: 0.18em; color: var(--gold); margin-top: 24px; letter-spacing: 0; line-height: 1.4; }

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}
.hero__meta-row { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ivory); }
.hero__meta-row b { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 18px; color: var(--gold-hi); letter-spacing: 0; text-transform: none; display: block; margin-top: 4px; }

.hero__btm {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: end;
  padding-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(245, 239, 226, 0.18);
}
.hero__lede { max-width: 50ch; color: var(--cream); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .hero__main { grid-template-columns: 1fr; }
  .hero__meta { align-items: flex-start; text-align: left; }
  .hero__btm { grid-template-columns: 1fr; }
  .programme { grid-template-columns: 1fr; gap: 8px; max-width: 100%; padding: 18px 20px; }
  .programme__date { text-align: left; }
  .programme__date b { display: inline-block; }
}

/* ===== FIVE CHAPTERS (signature structural element) ===== */
.chapters { background: var(--navy); position: relative; }
.chapters__head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: end; margin-bottom: clamp(60px, 8vw, 100px);
}
.chapters__head .eyebrow { margin-bottom: 24px; display: block; }
.chapters__head h2 { max-width: 14ch; }
.chapters__head h2 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.chapters__head p { color: var(--mute); font-size: 16px; line-height: 1.65; max-width: 42ch; }
@media (max-width: 880px) { .chapters__head { grid-template-columns: 1fr; gap: 36px; } }

.chapters__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.chap {
  display: grid;
  grid-template-columns: 90px 200px 1fr 200px;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding-block: 36px;
  border-top: 1px solid var(--navy-hairline);
  position: relative;
  transition: padding 0.4s var(--ease);
}
.chap:last-child { border-bottom: 1px solid var(--navy-hairline); }
.chap:hover { padding-left: 14px; padding-right: 14px; }
.chap:hover::before { left: 0; }
.chap::before {
  content: ''; position: absolute; top: -1px; bottom: -1px; left: -100%; right: 100%;
  background: var(--navy-2);
  transition: left 0.5s var(--ease), right 0.5s var(--ease);
  z-index: 0;
}
.chap:hover::before { right: 0; }
.chap > * { position: relative; z-index: 1; }
.chap__num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold); padding-top: 14px;
}
.chap__floor {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute-dark);
  padding-top: 14px;
}
.chap__floor b { color: var(--gold-hi); font-family: var(--display); font-style: italic; font-weight: 400; font-size: 26px; letter-spacing: 0; text-transform: none; display: block; margin-top: 2px; }
.chap__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px); line-height: 1;
  color: var(--ivory);
}
.chap__title em { font-style: italic; color: var(--gold-hi); }
.chap__desc { font-size: 14px; color: var(--mute); margin-top: 8px; line-height: 1.6; max-width: 40ch; }
.chap__arrow {
  font-family: var(--display); font-size: 36px; color: var(--gold);
  padding-top: 10px; text-align: right; transition: transform 0.4s var(--ease);
}
.chap:hover .chap__arrow { transform: translateX(8px); }

/* Floor accent colour bar */
.chap[data-floor="LG"] { --acc: var(--olive); }
.chap[data-floor="L1"] { --acc: var(--crimson); }
.chap[data-floor="L2"] { --acc: var(--gold); }
.chap[data-floor="L3"] { --acc: var(--amethyst); }
.chap__bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--acc);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.chap:hover .chap__bar { transform: scaleY(1); }

@media (max-width: 880px) {
  .chap { grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; gap: 12px 16px; }
  .chap__num { grid-column: 1; grid-row: 1; }
  .chap__floor { grid-column: 2; grid-row: 1; text-align: right; padding-top: 14px; }
  .chap__title { grid-column: 1 / -1; grid-row: 2; }
  .chap__desc { grid-column: 1 / -1; grid-row: 3; }
  .chap__arrow { display: none; }
}

/* ===== STORY — Editorial Spread ===== */
.story { background: var(--paper); color: var(--ink); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story__photo { position: relative; }
.story__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.story__photo-cap {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute); margin-top: 14px;
  display: flex; gap: 12px; align-items: center;
}
.story__photo-cap::before { content: ''; width: 24px; height: 1px; background: var(--crimson); }

.story__copy { padding-top: 40px; }
.story__copy .eyebrow { color: var(--crimson); display: block; margin-bottom: 24px; }
.story__copy h2 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 14ch;
}
.story__copy h2 em { font-style: italic; color: var(--crimson); }
.story__body { font-size: 17px; line-height: 1.75; color: var(--ink-soft); max-width: 56ch; }
.story__body p { margin-bottom: 1.2em; }
.story__quote {
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(168, 32, 26, 0.3);
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.8vw, 38px); line-height: 1.3;
  color: var(--crimson);
  max-width: 22ch;
  position: relative;
}
.story__quote::before { content: '"'; position: absolute; left: -32px; top: 18px; font-size: 1.4em; line-height: 0; color: var(--gold-deep); }
.story__quote cite { display: block; margin-top: 22px; font-family: var(--mono); font-style: normal; font-weight: 400; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mute); }

.story__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(27, 27, 31, 0.15);
  grid-column: 1 / -1;
}
.stat__num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 6.4vw, 96px); line-height: 0.85;
  color: var(--ink); letter-spacing: -0.02em;
}
.stat__num em { font-style: italic; color: var(--crimson); }
.stat__unit { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); display: block; margin-top: 14px; }

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__photo img { aspect-ratio: 4 / 5; }
  .story__copy { padding-top: 0; }
  .story__stats { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .story__quote::before { display: none; }
}

/* ===== TONIGHT — Programme Board ===== */
.tonight { background: var(--ink); color: var(--ivory); position: relative; }
.tonight__head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end;
  margin-bottom: clamp(50px, 6vw, 80px);
}
.tonight__head h2 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.tonight__head p { color: var(--mute); max-width: 38ch; }

/* Asymmetric event spread */
.tonight__spread {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
}
.feature-show {
  position: relative; aspect-ratio: 5 / 4; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
}
.feature-show__img {
  position: absolute; inset: 0;
}
.feature-show__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-show__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,27,46,0.94));
}
.feature-show > *:not(.feature-show__img) { position: relative; z-index: 2; }
.feature-show__tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-hi); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.feature-show__tag::before { content: ''; width: 24px; height: 1px; background: var(--gold-hi); }
.feature-show h3 { font-size: clamp(38px, 5vw, 72px); line-height: 0.95; color: var(--ivory); }
.feature-show h3 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.feature-show__when {
  margin-top: 22px;
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream);
}
.feature-show__when span b { display: block; color: var(--gold-hi); font-family: var(--display); font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: 0; text-transform: none; margin-top: 4px; }

.tonight__list {
  display: flex; flex-direction: column; gap: 0;
}
.show-row {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--navy-hairline);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.show-row:hover { padding-inline: 14px; background: var(--navy-2); }
.show-row__date {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 30px; color: var(--gold); line-height: 1;
}
.show-row__date small { display: block; font-family: var(--mono); font-style: normal; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute); margin-top: 4px; }
.show-row__title {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  color: var(--ivory); line-height: 1.2;
}
.show-row__title small { display: block; font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }
.show-row__icon {
  font-family: var(--display); font-size: 26px; color: var(--gold);
  font-style: italic; opacity: 0.6; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.show-row:hover .show-row__icon { opacity: 1; transform: translateX(6px); }

@media (max-width: 880px) {
  .tonight__head { grid-template-columns: 1fr; gap: 24px; }
  .tonight__spread { grid-template-columns: 1fr; }
  .feature-show { aspect-ratio: 4 / 5; }
}

/* ===== SECTION-VIEW (custom SVG) ===== */
.sectionview { background: var(--paper); color: var(--ink); padding-bottom: clamp(60px, 8vw, 100px); }
.sectionview__head {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px;
  align-items: end; margin-bottom: clamp(48px, 6vw, 80px);
}
.sectionview__head h2 em { font-style: italic; color: var(--crimson); font-weight: 300; }
.sectionview__head p { color: var(--ink-soft); max-width: 42ch; }
.sectionview__svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 880px) { .sectionview__head { grid-template-columns: 1fr; gap: 32px; } }

/* ===== KITCHENS PREVIEW ===== */
.kitchens { background: var(--navy); color: var(--ivory); }
.kitchens__head {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.kitchens__head h2 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.kitchens__head p { color: var(--mute); }

.kitchen-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.k {
  position: relative; padding: 28px 26px 30px;
  background: var(--navy-2); border: 1px solid var(--navy-hairline);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.k:hover { background: var(--navy-3); border-color: var(--gold); }
.k--ft { grid-column: 1 / 2; grid-row: 1 / 3; background: var(--crimson); border-color: var(--crimson); min-height: 100%; }
.k--ft:hover { background: var(--crimson-hi); border-color: var(--gold-hi); }
.k--ft .k__cat { color: var(--gold-hi); }
.k__cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.k__name { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); line-height: 1; color: var(--ivory); }
.k__name em { font-style: italic; color: var(--gold-hi); }
.k__desc { font-size: 13px; line-height: 1.6; color: var(--mute); margin-top: auto; }
.k--ft .k__desc { color: var(--cream); }
.k__loc { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute-dark); }
.k--ft .k__loc { color: var(--gold-hi); }
@media (max-width: 880px) {
  .kitchens__head { grid-template-columns: 1fr; gap: 24px; }
  .kitchen-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .k--ft { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
}
@media (max-width: 520px) {
  .kitchen-grid { grid-template-columns: 1fr; }
}

/* ===== INSTAGRAM STRIP ===== */
.gallery { background: var(--ink); color: var(--ivory); padding-block: 100px 80px; }
.gallery__head {
  display: flex; justify-content: space-between; align-items: end; gap: 32px;
  margin-bottom: 48px;
}
.gallery__head h2 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.gallery__strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.gallery__strip a {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--navy);
}
.gallery__strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s var(--ease); filter: saturate(95%); }
.gallery__strip a:hover img { transform: scale(1.08); filter: saturate(115%); }
.gallery__strip a::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,27,46,0.7));
  transition: opacity 0.4s var(--ease);
}
.gallery__strip a:hover::after { opacity: 1; }
@media (max-width: 880px) { .gallery__strip { grid-template-columns: repeat(3, 1fr); } .gallery__strip a:nth-child(n+7) { display: none; } }

/* ===== CTA BAND ===== */
.cta {
  position: relative;
  background:
    linear-gradient(rgba(15,27,46,0.78), rgba(15,27,46,0.86)),
    url('../img/mall-klf-stage.jpg') center/cover no-repeat;
  padding-block: clamp(110px, 14vw, 180px);
  text-align: center;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(48px, 7vw, 108px); line-height: 0.95; }
.cta h2 em { font-style: italic; color: var(--gold-hi); font-weight: 300; }
.cta p { color: var(--cream); margin: 30px auto 38px; max-width: 50ch; font-size: 17px; line-height: 1.65; }
.cta__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta__meta {
  margin-top: clamp(60px, 7vw, 90px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(245, 239, 226, 0.18);
}
.cta__meta div { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); text-align: center; }
.cta__meta b { display: block; font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); color: var(--gold-hi); letter-spacing: 0; text-transform: none; margin-top: 10px; }
@media (max-width: 720px) { .cta__meta { grid-template-columns: 1fr; gap: 20px; } }

/* Hero word reveal */
.hero__title .ln {
  display: block; overflow: hidden;
}
.hero__title .ln span {
  display: inline-block;
  transform: translateY(120%);
  animation: lnIn 1.05s var(--ease) forwards;
}
.hero__title .ln:nth-child(2) span { animation-delay: 0.18s; }
.hero__title .ln:nth-child(3) span { animation-delay: 0.32s; }
@keyframes lnIn { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .ln span { transform: none; animation: none; }
}
