/* ============================================================
   Safadi Cultural Center — Design System
   Brand guide 2026: Burgundy / Red / Charcoal / Ivory / Stone
   Type: Marcellus (display) · Mulish (text) · Noto Kufi Arabic
   ============================================================ */

:root {
  --burgundy: #AB1D3F;
  --burgundy-deep: #8C1633;
  --red: #E91946;
  --charcoal: #63656A;
  --ink: #2E2F33;          /* charcoal, deepened for body text */
  --ivory: #EEE8E0;
  --stone: #E3E5E2;
  --paper: #FAF7F2;        /* ivory lifted for large surfaces */
  --white: #FFFFFF;
  --grout: #FDFCF9;        /* white lines between the logo tile pieces */

  /* program colors (from brand guide) */
  --c-art: #E91946;
  --c-music: #AB1D3F;
  --c-theater: #C09B2E;
  --c-photography: #3A586B;
  --c-literature: #626D46;
  --c-crafts: #A47676;
  --c-movie: #5B878E;
  --c-dance: #C46B52;

  --font-display: "Marcellus", "Times New Roman", serif;
  --font-text: "Mulish", "Segoe UI", sans-serif;
  --font-ar: "Noto Kufi Arabic", sans-serif;

  --container: 1180px;
  --radius: 3px;
  --shadow-soft: 0 18px 50px -18px rgba(46, 47, 51, 0.18);
  --shadow-lift: 0 24px 60px -20px rgba(171, 29, 63, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* tessellating heart lattice, burgundy, very faint */
  --heart-lattice: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="96" height="96" viewBox="0 0 96 96"><g fill="none" stroke="%23AB1D3F" stroke-width="1.1"><path d="M24 9 C21 1 12 -1.5 6.5 4 C1 9.5 3 18.5 11 25.5 C17.5 31 24 36.5 24 36.5 C24 36.5 30.5 31 37 25.5 C45 18.5 47 9.5 41.5 4 C36 -1.5 27 1 24 9 Z"/><path d="M72 87 C75 95 84 97.5 89.5 92 C95 86.5 93 77.5 85 70.5 C78.5 65 72 59.5 72 59.5 C72 59.5 65.5 65 59 70.5 C51 77.5 49 86.5 54.5 92 C60 97.5 69 95 72 87 Z"/><path d="M87 24 C95 21 97.5 12 92 6.5 C86.5 1 77.5 3 70.5 11 C65 17.5 59.5 24 59.5 24 C59.5 24 65 30.5 70.5 37 C77.5 45 86.5 47 92 41.5 C97.5 36 95 27 87 24 Z"/><path d="M9 72 C1 75 -1.5 84 4 89.5 C9.5 95 18.5 93 25.5 85 C31 78.5 36.5 72 36.5 72 C36.5 72 31 65.5 25.5 59 C18.5 51 9.5 49 4 54.5 C-1.5 60 1 69 9 72 Z"/></g></svg>');
}

/* ---------- reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

[lang="ar"] { font-family: var(--font-ar); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

::selection { background: var(--burgundy); color: var(--ivory); }

/* ---------- typography helpers ---------- */

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--burgundy);
  transform: rotate(45deg);
  flex: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.section-title em { font-style: normal; color: var(--burgundy); }

.section-sub {
  margin-top: 14px;
  color: var(--charcoal);
  max-width: 560px;
}

.section { padding: 110px 0; }
.section-ivory { background: var(--ivory); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .kicker { justify-content: flex-start; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 1.5px solid var(--burgundy);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.btn-solid { background: var(--burgundy); color: var(--white); }
.btn-solid:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--burgundy); }
.btn-ghost:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; }

/* ---------- top bar ---------- */

.topbar {
  background: var(--ink);
  color: rgba(238, 232, 224, 0.85);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar-inner { display: flex; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar-sep { width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); }
.topbar-lang {
  margin-left: auto;
  color: var(--ivory);
  text-decoration: none;
  font-size: 14px;
  padding: 1px 12px;
  border: 1px solid rgba(238, 232, 224, 0.35);
  transition: all 0.25s;
}
.topbar-lang:hover { background: var(--burgundy); border-color: var(--burgundy); }

/* ---------- navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(99, 101, 106, 0.16);
  transition: box-shadow 0.3s;
}
.navbar.is-scrolled { box-shadow: 0 10px 34px -18px rgba(46, 47, 51, 0.35); }

.navbar-inner { display: flex; align-items: center; gap: 34px; height: 78px; }

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; flex: none; transition: transform 0.5s var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(90deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--font-display);
  font-size: 16.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name-ar { font-size: 12px; color: var(--charcoal); text-align: left; margin-top: 2px; }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 6px; height: 6px;
  background: var(--burgundy);
  transform: translateX(-50%) rotate(45deg) scale(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--burgundy); }
.nav-link:hover::after, .nav-link.is-active::after { transform: translateX(-50%) rotate(45deg) scale(1); }

.nav-cta { padding: 12px 22px; font-size: 11.5px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

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

.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--heart-lattice);
  background-size: 96px;
  opacity: 0.10;
  mask-image: radial-gradient(ellipse 90% 90% at 75% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 75% 40%, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
  padding-top: 96px;
  padding-bottom: 110px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 6.6vw, 84px);
  line-height: 1.04;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.hero-title .accent { color: var(--burgundy); position: relative; }

.hero-lede {
  margin-top: 26px;
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal);
}

.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero-ar {
  margin-top: 34px;
  font-size: 19px;
  color: var(--burgundy);
  opacity: 0.85;
}

.hero-visual { position: relative; justify-self: center; }
.hero-frame {
  width: min(330px, 34vw);
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.18);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  position: relative;
  z-index: 1;
}
.hero-frame .hero-mandala {
  width: 78%; /* viewBox has a 15-unit margin around the 120-unit tile for the flying pieces */
  transform: rotate(-45deg);
  animation: mandala-breathe 7s ease-in-out infinite;
}
/* mosaic pieces gently float apart and reassemble */
.hero-mandala .tile-bit {
  animation: fly-t 7s ease-in-out infinite;
}
.hero-mandala .fly-tl { animation-name: fly-tl; }
.hero-mandala .fly-tr { animation-name: fly-tr; }
.hero-mandala .fly-br { animation-name: fly-br; }
.hero-mandala .fly-bl { animation-name: fly-bl; }
.hero-mandala .fly-r  { animation-name: fly-r; }
.hero-mandala .fly-b  { animation-name: fly-b; }
.hero-mandala .fly-l  { animation-name: fly-l; }
.hero-mandala .fly-t, .hero-mandala .fly-r,
.hero-mandala .fly-b, .hero-mandala .fly-l { animation-delay: -1.8s; }
.hero-mandala .fly-bloom {
  animation-name: fly-bloom;
  animation-delay: -3.5s;
  transform-box: view-box;
  transform-origin: 50% 50%;
}
@keyframes fly-tl { 50% { transform: translate(-9px, -9px); } }
@keyframes fly-tr { 50% { transform: translate(9px, -9px); } }
@keyframes fly-br { 50% { transform: translate(9px, 9px); } }
@keyframes fly-bl { 50% { transform: translate(-9px, 9px); } }
@keyframes fly-t  { 50% { transform: translate(0, -7px); } }
@keyframes fly-r  { 50% { transform: translate(7px, 0); } }
@keyframes fly-b  { 50% { transform: translate(0, 7px); } }
@keyframes fly-l  { 50% { transform: translate(-7px, 0); } }
@keyframes fly-bloom { 50% { transform: scale(1.06); } }
.hero-frame-echo {
  position: absolute;
  inset: -26px;
  border: 1px solid rgba(171, 29, 63, 0.35);
  transform: rotate(45deg);
  animation: echo-spin 40s linear infinite;
}
@keyframes mandala-breathe {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.05); }
}
@keyframes echo-spin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* marquee band */
.hero-band {
  position: relative;
  border-top: 1px solid rgba(99, 101, 106, 0.16);
  border-bottom: 1px solid rgba(99, 101, 106, 0.16);
  background: var(--ivory);
  overflow: hidden;
  padding: 15px 0;
}
.hero-band-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: band-scroll 36s linear infinite;
}
.hero-band-track span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}
.hero-band-track i {
  width: 7px; height: 7px;
  background: var(--burgundy);
  transform: rotate(45deg);
  flex: none;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  filter: saturate(0.92);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--burgundy);
  z-index: -1;
}
.about-media-caption {
  position: absolute;
  left: -14px; bottom: 26px;
  background: var(--burgundy);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 12px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-lift);
}
.about-media-caption [lang="ar"] { font-size: 13px; }

.about-copy p { color: var(--charcoal); max-width: 560px; }

.about-goals { list-style: none; margin: 30px 0 40px; display: grid; gap: 14px; }
.about-goals li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.about-goals li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.about-stats {
  display: flex;
  gap: 54px;
  border-top: 1px solid rgba(99, 101, 106, 0.22);
  padding-top: 30px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--burgundy);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ---------- programs ---------- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.program-card {
  --pc: var(--burgundy);
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.14);
  padding: 44px 26px 34px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.program-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--pc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.program-card:hover::before { transform: scaleX(1); }

.program-diamond {
  width: 84px; height: 84px;
  margin: 0 auto 30px;
  background: var(--pc);
  transform: rotate(45deg);
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--pc) 55%, transparent);
}
.program-card:hover .program-diamond { transform: rotate(45deg) scale(1.08); }
.program-diamond svg {
  width: 44px; height: 44px;
  color: var(--white);
  transform: rotate(-45deg);
}

.program-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.program-tag {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  color: var(--pc);
  font-weight: 500;
}

/* ---------- events + calendar ---------- */

.events-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: start;
}

.calendar-card {
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.16);
  padding: 26px;
  position: sticky;
  top: 104px;
  box-shadow: var(--shadow-soft);
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-title { font-family: var(--font-display); font-size: 21px; letter-spacing: 0.04em; }
.cal-nav {
  width: 36px; height: 36px;
  border: 1px solid rgba(99, 101, 106, 0.3);
  background: none;
  font-size: 20px;
  color: var(--burgundy);
  cursor: pointer;
  transition: all 0.25s;
}
.cal-nav:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-dow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 13.5px;
  border: 1px solid transparent;
  background: none;
  font-family: var(--font-text);
  color: var(--ink);
  cursor: default;
}
.cal-day.is-out { color: rgba(99, 101, 106, 0.35); }
.cal-day.has-events { cursor: pointer; font-weight: 700; }
.cal-day.has-events:hover { border-color: var(--burgundy); }
.cal-day.is-selected { background: var(--burgundy); color: var(--white); }
.cal-day .cal-dot {
  position: absolute;
  bottom: 5px; left: 50%;
  width: 5px; height: 5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--dot, var(--burgundy));
}
.cal-day.is-selected .cal-dot { background: var(--ivory); }
.cal-day.is-today { border-color: rgba(171, 29, 63, 0.45); }

.calendar-hint {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--charcoal);
  border-top: 1px dashed rgba(99, 101, 106, 0.3);
  padding-top: 12px;
}

.event-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-chip {
  --fc: var(--burgundy);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1.5px solid rgba(99, 101, 106, 0.28);
  background: none;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-chip i {
  width: 7px; height: 7px;
  background: var(--fc);
  transform: rotate(45deg);
}
.filter-chip:hover { border-color: var(--fc); color: var(--ink); }
.filter-chip.is-active { background: var(--fc); border-color: var(--fc); color: var(--white); }
.filter-chip.is-active i { background: var(--white); }

.events-list { display: grid; gap: 18px; }

.event-card {
  --ec: var(--burgundy);
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.14);
  border-left: 4px solid var(--ec);
  padding: 24px 28px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }

.event-date {
  text-align: center;
  border-right: 1px solid rgba(99, 101, 106, 0.18);
  padding-right: 26px;
}
.event-date .ed-day {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--ec);
}
.event-date .ed-month {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.event-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.event-info .event-blurb { font-size: 14.5px; color: var(--charcoal); max-width: 520px; }
.event-meta {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.event-meta .event-cat { color: var(--ec); }

.event-action { justify-self: end; }

.events-empty {
  padding: 44px;
  text-align: center;
  color: var(--charcoal);
  border: 1px dashed rgba(99, 101, 106, 0.35);
  font-style: italic;
}

/* ---------- quote band ---------- */

.quote-band {
  position: relative;
  background: var(--burgundy);
  padding: 90px 0;
  overflow: hidden;
}
.quote-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--heart-lattice);
  background-size: 120px;
  opacity: 0.16;
  filter: brightness(0) invert(1);
}
.quote-band blockquote {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-band p {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.3;
  color: var(--ivory);
}
.quote-band footer {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(238, 232, 224, 0.75);
}

/* ---------- news ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  --nc: var(--burgundy);
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.14);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.news-card::after {
  content: "";
  position: absolute;
  right: 22px; top: 22px;
  width: 10px; height: 10px;
  background: var(--nc);
  transform: rotate(45deg);
}
.news-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nc);
  margin-bottom: 14px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.news-card p { font-size: 14.5px; color: var(--charcoal); flex: 1; }
.news-link {
  margin-top: 22px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
}
.news-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- auditorium ---------- */

.auditorium-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.stage-sketch {
  background: var(--ink);
  padding: 40px 34px 34px;
  position: relative;
  overflow: hidden;
}
.stage-arc {
  height: 62px;
  background: var(--burgundy);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: 0 14px 40px -6px rgba(233, 25, 70, 0.5);
}
.stage-label {
  text-align: center;
  color: rgba(238, 232, 224, 0.6);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 12px 0 26px;
}
.seat-rows { display: grid; gap: 9px; }
.seat-row { display: flex; justify-content: center; gap: 7px; }
.seat {
  width: 13px; height: 13px;
  border-radius: 3px 3px 1px 1px;
  background: rgba(238, 232, 224, 0.25);
  transition: background 0.3s;
}
.seat.is-lit { background: var(--red); animation: seat-glow 3.2s ease-in-out infinite; }
@keyframes seat-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.seatmap-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--charcoal);
  font-style: italic;
}
.diamond-bullet { width: 12px; height: 12px; color: var(--burgundy); flex: none; margin-top: 4px; }

/* ---------- forms ---------- */

.reserve-form, .contact-form {
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.16);
  border-top: 4px solid var(--burgundy);
  padding: 40px 38px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 22px;
}

.form-row { display: flex; gap: 18px; }
.form-row .field { flex: 1; }
.field-small { max-width: 130px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.field input, .field select, .field textarea {
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(99, 101, 106, 0.28);
  padding: 12px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: var(--radius);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(171, 29, 63, 0.14);
}

.form-foot { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.form-status { font-size: 14px; font-weight: 600; }
.form-status.ok { color: #3E6B4A; }
.form-status.err { color: var(--red); }

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.contact-cards { display: grid; gap: 20px; }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(99, 101, 106, 0.14);
  border-left: 4px solid var(--burgundy);
  padding: 26px 30px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--burgundy);
}
.contact-card p { color: var(--charcoal); }
.contact-card a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--burgundy); }
.contact-note { font-size: 13px; font-style: italic; margin-top: 6px; }

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

.footer {
  position: relative;
  background: var(--ink);
  color: rgba(238, 232, 224, 0.82);
  overflow: hidden;
}
.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--heart-lattice);
  background-size: 140px;
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 44px;
  padding-top: 76px;
  padding-bottom: 60px;
}
.footer-sig { width: max-content; max-width: 100%; }
.footer-lockup { display: flex; gap: 18px; }
.footer-mark { width: 96px; height: 96px; flex: none; }
.footer-slogan {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ivory);
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Culture at the tile's top edge, Us at its bottom edge */
}
.footer-slogan strong { color: var(--red); font-weight: 400; }
.footer-slogan-ar {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(238, 232, 224, 0.6);
  text-align: justify;
  text-align-last: justify; /* stretch the line across the tile + text width */
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(238, 232, 224, 0.72);
  text-decoration: none;
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.25s, transform 0.25s;
}
.footer-col a:hover { color: var(--red); transform: translateX(4px); }
.footer-col p { font-size: 14.5px; padding: 4px 0; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 232, 224, 0.3);
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0;
}
.footer-social a > * { transform: rotate(-45deg); }
.footer-social a:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); transform: rotate(45deg) scale(1.08); }

.footer-base {
  position: relative;
  border-top: 1px solid rgba(238, 232, 224, 0.14);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(238, 232, 224, 0.55);
}
.footer-base [lang="ar"] { margin-right: 6px; }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.34s; }
.reveal.d5 { transition-delay: 0.44s; }
.reveal.d6 { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-band-track, .hero-frame-echo, .hero-mandala, .hero-mandala .tile-bit, .seat.is-lit { animation: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 1080px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .calendar-card { position: static; max-width: 430px; }
  .nav-cta { display: none; }
}

@media (max-width: 880px) {
  .section { padding: 80px 0; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 80px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { max-width: 440px; }
  .auditorium-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; max-width: 560px; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(99, 101, 106, 0.16);
    padding: 12px 28px 20px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-link { padding: 12px 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .topbar-item:first-child { display: none; }
}

@media (max-width: 560px) {
  .program-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .field-small { max-width: none; }
  .event-card { grid-template-columns: 1fr; gap: 14px; }
  .event-date {
    border-right: none;
    padding-right: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
  }
  .event-action { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .brand-name { font-size: 14px; }
}
