/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --ivory: #f3eee4;
  --paper: #e8dfd0;
  --ink: #181713;
  --muted: #6d685e;
  --burgundy: #78151d;
  --red: #a9252d;
  --line: #c9bdab;
  --blue: #09244a;
  --copper: #a86e45;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ivory);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans), sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
button, input {
  color: inherit;
  font: inherit;
}
p, h1, h2, h3 {
  margin-top: 0;
}
.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  position: relative;
  z-index: 40;
}
.ministry {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 370px;
}
.ministry > span:last-child {
  display: flex;
  flex-direction: column;
}
.ministry strong {
  font-family: var(--font-display), serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}
.ministry small {
  margin-top: 7px;
  font-size: 7px;
  letter-spacing: .18em;
}
.ministry-mark {
  position: relative;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
}
.ministry-mark::before, .ministry-mark::after, .ministry-mark i {
  content: "";
  position: absolute;
  border: 1px solid var(--burgundy);
  transform: rotate(45deg);
}
.ministry-mark::before {
  inset: 11px;
}
.ministry-mark::after {
  inset: 18px;
}
.ministry-mark i {
  left: 25px;
  top: 7px;
  bottom: 7px;
  width: 1px;
  border: 0;
  background: var(--burgundy);
  transform: none;
}
.site-header nav {
  display: flex;
  gap: clamp(18px, 2.3vw, 38px);
  align-items: center;
}
.site-header nav a {
  font-family: var(--font-display), serif;
  font-size: 16px;
}
.site-header nav a:hover {
  color: var(--burgundy);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
}
.header-actions button {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
}
.header-actions button span {
  width: 16px;
  height: 1px;
  background: var(--ink);
  display: block;
}
.program-ticker {
  min-height: 48px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
  color: #fff4e5;
  background: var(--burgundy);
  position: relative;
  z-index: 35;
}
.program-ticker > strong {
  display: flex;
  align-items: center;
  padding-left: 3vw;
  font-size: 9px;
  letter-spacing: .18em;
  border-right: 1px solid rgba(255,255,255,.3);
}
.program-ticker > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.program-ticker a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.22);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.world-nav {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
}
.world-nav a {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}
.world-nav a.active {
  color: var(--burgundy);
  font-weight: 600;
}
.world-nav span {
  color: var(--line);
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .25em;
}
.home-hero {
  min-height: 720px;
  padding: 65px 3vw 28px;
  background: radial-gradient(circle at 50% 0, #fffaf0, transparent 55%), var(--ivory);
}
.home-title {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 35px;
  max-width: 1220px;
  margin: 0 auto 45px;
}
.home-title .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}
.home-title h1 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(58px, 6vw, 98px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.035em;
}
.home-title h1 em {
  color: var(--burgundy);
  font-style: normal;
}
.home-title > p:last-child {
  max-width: 460px;
  color: var(--muted);
  font-family: var(--font-display), serif;
  font-size: 21px;
  line-height: 1.4;
}
.gateways {
  height: 470px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.35fr 1.05fr 1fr;
  gap: 7px;
  align-items: stretch;
  max-width: 1500px;
  margin: auto;
}
.gateway {
  position: relative;
  overflow: hidden;
  min-width: 0;
  clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
  transition: flex .3s ease, transform .3s ease;
}
.gateway:hover {
  transform: translateY(-9px);
  z-index: 3;
}
.gateway img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .5s ease;
}
.gateway:hover img {
  transform: scale(1.055);
}
.gateway-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 26%, rgba(16,15,13,.9));
}
.gateway-dijital .gateway-shade {
  background: linear-gradient(rgba(3,23,57,.2), rgba(3,23,57,.96));
}
.gateway-birlik .gateway-shade {
  background: linear-gradient(rgba(92,8,13,.05), rgba(92,8,13,.9));
}
.gateway-devran img {
  filter: grayscale(.8) contrast(1.15);
}
.gateway-asitane img {
  filter: sepia(.55) saturate(.45);
}
.gateway-no {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 18px;
  color: white;
  font-size: 8px;
  letter-spacing: .15em;
}
.gateway > div {
  position: absolute;
  z-index: 3;
  left: 21px;
  right: 18px;
  bottom: 22px;
  color: white;
}
.gateway small {
  font-size: 7px;
  letter-spacing: .18em;
}
.gateway h2 {
  margin: 8px 0 17px;
  font-family: var(--font-display), serif;
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 500;
  line-height: .94;
}
.gateway > div > span {
  color: #f2c7a5;
  font-size: 8px;
  letter-spacing: .1em;
}
.home-bottom {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-bottom > article {
  min-height: 260px;
  padding: 32px 3vw;
  border-right: 1px solid var(--line);
}
.home-bottom > article:last-child {
  border-right: 0;
}
.next-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-content: center;
  gap: 0 20px;
}
.next-event .eyebrow {
  grid-column: 1 / -1;
}
.big-date {
  grid-row: span 3;
  color: var(--burgundy);
  font-family: var(--font-display), serif;
  font-size: 90px;
  line-height: .75;
}
.next-event h3, .home-news h3 {
  margin: 8px 0;
  font-family: var(--font-display), serif;
  font-size: 27px;
  font-weight: 600;
}
.next-event p, .home-news p {
  color: var(--muted);
  font-size: 10px;
}
.next-event > a {
  grid-column: 2;
  color: var(--burgundy);
  font-size: 9px;
}
.mini-calendar header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  font-size: 9px;
  letter-spacing: .12em;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 11px;
  text-align: center;
  font-size: 9px;
}
.calendar-grid .selected {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  justify-self: center;
  color: white;
  border-radius: 50%;
  background: var(--burgundy);
}
.home-news a {
  color: var(--burgundy);
  font-size: 9px;
}
.program-list {
  padding: 100px 6vw 130px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-heading h2, .repertoire h2 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 70px;
  font-weight: 500;
  line-height: .8;
}
.section-heading > a {
  color: var(--burgundy);
  font-size: 9px;
}
.program-row {
  min-height: 115px;
  display: grid;
  grid-template-columns: 50px 100px 1fr 310px 30px;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
}
.program-row:last-child {
  border-bottom: 1px solid var(--line);
}
.program-row > span {
  color: var(--burgundy);
  font-size: 8px;
}
.program-row time {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
  font-size: 8px;
}
.program-row time strong {
  grid-row: span 2;
  font-family: var(--font-display), serif;
  font-size: 48px;
  font-weight: 500;
}
.program-row time small {
  color: var(--muted);
}
.program-row h3 {
  margin: 5px 0 0;
  font-family: var(--font-display), serif;
  font-size: 26px;
  font-weight: 600;
}
.program-row > div small {
  color: var(--burgundy);
  font-size: 7px;
  letter-spacing: .12em;
}
.program-row > p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.program-row > p strong {
  color: var(--ink);
  font-size: 16px;
}
.program-row > a {
  color: var(--burgundy);
  font-size: 20px;
}
.world-page {
  min-height: 700px;
}
.world-copy h1, .digital-copy h1, .devran-copy h1, .asitane-copy h1, .unity-title h1 {
  font-family: var(--font-display), serif;
  font-size: clamp(62px, 6.5vw, 110px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .75;
}
.world-program, .digital-ticket, .devran-event, .asitane-event {
  position: absolute;
  z-index: 6;
}
.sema-stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #f7f2e9;
}
.sema-photo {
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 48%;
  height: 92%;
}
.sema-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: saturate(.2) brightness(1.15) contrast(.85);
  mask-image: linear-gradient(90deg, black 50%, transparent);
}
.selam-rings {
  position: absolute;
  left: 23%;
  top: 3%;
  width: 500px;
  aspect-ratio: 1;
}
.selam-rings i {
  position: absolute;
  inset: calc(var(--i, 0) * 36px);
  border: 1px solid rgba(120,21,29,.2);
  border-radius: 50%;
}
.selam-rings i:nth-child(1) {
  --i: 0;
}
.selam-rings i:nth-child(2) {
  --i: 1;
}
.selam-rings i:nth-child(3) {
  --i: 2;
}
.selam-rings i:nth-child(4) {
  --i: 3;
}
.selam-labels {
  position: absolute;
  left: 42%;
  top: 14%;
  display: grid;
  gap: 70px;
  color: var(--muted);
  font-family: var(--font-display), serif;
  font-size: 17px;
}
.world-copy {
  position: absolute;
  z-index: 5;
  left: 58%;
  top: 18%;
  width: 22%;
}
.world-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(54px, 5vw, 82px);
}
.world-copy h2 {
  font-family: var(--font-display), serif;
  font-size: 22px;
  font-weight: 500;
}
.world-copy > p:last-child {
  color: var(--muted);
  font-family: var(--font-display), serif;
  font-size: 16px;
  line-height: 1.5;
}
.world-program {
  right: 3%;
  top: 15%;
  width: 15%;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  color: white;
  background: var(--burgundy);
}
.world-program small, .world-program span {
  font-size: 8px;
  letter-spacing: .14em;
}
.world-program strong {
  margin-top: 28px;
  font-family: var(--font-display), serif;
  font-size: 70px;
  font-weight: 500;
}
.world-program h3 {
  margin: 24px 0 8px;
  font-family: var(--font-display), serif;
  font-size: 21px;
  font-weight: 500;
}
.world-program p {
  font-size: 10px;
}
.world-program a {
  margin-top: 25px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: 8px;
}
.section-rail {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-rail a {
  font-family: var(--font-display), serif;
  font-size: 18px;
}
.section-rail a:first-child {
  color: var(--burgundy);
}
.digital-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #f2eddf;
  background: #03152c;
}
.digital-photo {
  position: absolute;
  inset: 0;
}
.digital-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.55) brightness(.45) hue-rotate(170deg);
  opacity: .8;
}
.digital-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #03152c 0, transparent 42%, #03152c 100%);
}
.digital-copy {
  position: absolute;
  z-index: 4;
  left: 4%;
  top: 12%;
  width: 28%;
}
.digital-copy .eyebrow {
  color: #67d0e3;
}
.digital-copy h1 {
  margin-bottom: 30px;
  color: #f5ecd8;
}
.digital-copy h2 {
  font-family: var(--font-display), serif;
  font-size: 32px;
  font-weight: 500;
}
.digital-copy p {
  color: #75c7dc;
  font-size: 14px;
}
.light-traces {
  position: absolute;
  z-index: 3;
  left: 30%;
  top: 10%;
  width: 50%;
  height: 70%;
}
.light-traces i {
  position: absolute;
  left: 0;
  right: 0;
  height: 42%;
  border: 1px solid rgba(205,244,255,.65);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: 0 0 14px rgba(164,231,255,.35);
}
.light-traces i:nth-child(2) {
  top: 20%;
  transform: rotate(8deg);
}
.light-traces i:nth-child(3) {
  top: 42%;
  transform: rotate(-4deg);
}
.journey {
  position: absolute;
  z-index: 5;
  left: 4%;
  right: 23%;
  bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.3);
}
.journey span {
  padding: 22px 0;
  font-size: 10px;
  letter-spacing: .1em;
}
.journey strong {
  margin-right: 12px;
  color: #75c7dc;
  font-family: var(--font-display), serif;
  font-size: 34px;
}
.digital-ticket {
  right: 3%;
  top: 12%;
  width: 18%;
  min-height: 485px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 25px;
  text-align: center;
  border: 1px solid #c29b71;
  background: rgba(2,17,38,.84);
}
.digital-ticket small {
  color: #75c7dc;
  letter-spacing: .2em;
}
.digital-ticket strong {
  font-family: var(--font-display), serif;
  font-size: 31px;
  font-weight: 500;
}
.digital-ticket span {
  font-size: 12px;
}
.digital-ticket b {
  font-family: var(--font-display), serif;
  font-size: 45px;
  font-weight: 500;
}
.digital-ticket a {
  width: 100%;
  padding: 16px;
  background: var(--burgundy);
  font-size: 9px;
  letter-spacing: .08em;
}
.relation-link {
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 24px;
  color: #75c7dc;
  font-size: 9px;
}
.unity-stage {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #120f0d;
}
.unity-pane {
  position: relative;
  overflow: hidden;
  clip-path: polygon(12% 0,100% 0,88% 100%,0 100%);
  margin: 0 -4%;
}
.unity-pane img {
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(.65);
}
.unity-semah img {
  filter: brightness(.5) sepia(.35) saturate(1.2) hue-rotate(325deg);
}
.unity-devran img {
  filter: brightness(.48) grayscale(.65);
}
.unity-pane > span {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 9px;
  letter-spacing: .14em;
  white-space: nowrap;
}
.unity-title {
  position: absolute;
  z-index: 5;
  inset: 30% 0 auto;
  text-align: center;
  color: white;
  text-shadow: 0 4px 20px #000;
}
.unity-title .eyebrow {
  color: #efb58e;
}
.unity-title h1 {
  margin: 0;
}
.movement-line {
  position: absolute;
  z-index: 4;
  left: 10%;
  right: 10%;
  bottom: 65px;
  height: 1px;
  background: #e36259;
}
.movement-line i {
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border: 1px solid white;
  border-radius: 50%;
  background: #d64b47;
}
.movement-line i:nth-child(1) {
  left: 17%;
}
.movement-line i:nth-child(2) {
  left: 50%;
}
.movement-line i:nth-child(3) {
  left: 83%;
}
.unity-program {
  min-height: 125px;
  display: grid;
  grid-template-columns: 170px 1fr 220px 280px;
  align-items: center;
  gap: 25px;
  padding: 18px 4vw;
  color: white;
  background: var(--burgundy);
}
.unity-program time {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}
.unity-program time strong {
  grid-row: span 2;
  font-family: var(--font-display), serif;
  font-size: 62px;
  font-weight: 500;
}
.unity-program h2 {
  margin: 5px 0;
  font-family: var(--font-display), serif;
  font-size: 27px;
  font-weight: 500;
}
.unity-program p, .unity-program small {
  font-size: 8px;
  letter-spacing: .1em;
}
.unity-program > a {
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 9px;
}
.three-notes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 45px 6vw 110px;
}
.three-notes article {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 0 35px;
  border-right: 1px solid var(--line);
}
.three-notes article:last-child {
  border-right: 0;
}
.three-notes strong {
  grid-row: span 2;
  color: var(--burgundy);
  font-family: var(--font-display), serif;
  font-size: 45px;
}
.three-notes h3 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: 23px;
}
.three-notes p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.devran-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #efe3cf;
  background: #131513;
}
.devran-stage > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.45);
}
.beat-grid {
  position: absolute;
  z-index: 2;
  inset: 0 22% 0 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.beat-grid span {
  padding-top: 25px;
  text-align: center;
  border-right: 1px solid rgba(213,179,132,.3);
  color: #d6b888;
  font-size: 10px;
  letter-spacing: .18em;
}
.devran-copy {
  position: absolute;
  z-index: 4;
  left: 4%;
  top: 14%;
}
.devran-copy .eyebrow {
  color: #6da2d8;
}
.devran-copy h1 {
  margin-bottom: 25px;
}
.devran-copy > p:last-child {
  color: #d8c2a1;
  font-family: var(--font-display), serif;
  font-size: 20px;
}
.devran-event {
  right: 0;
  top: 0;
  bottom: 0;
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: #f1dbc0;
  background: rgba(87,14,18,.88);
}
.devran-event small {
  font-size: 8px;
  letter-spacing: .16em;
}
.devran-event strong {
  margin: 30px 0 0;
  font-family: var(--font-display), serif;
  font-size: 80px;
  font-weight: 500;
}
.devran-event span {
  font-size: 10px;
  letter-spacing: .12em;
}
.devran-event h3 {
  margin: 30px 0 8px;
  font-family: var(--font-display), serif;
  font-size: 20px;
  font-weight: 500;
}
.devran-event p {
  font-size: 18px;
}
.devran-rail {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 22%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid rgba(255,255,255,.3);
  background: rgba(8,9,8,.7);
}
.devran-rail a {
  padding: 25px 10px;
  text-align: center;
  color: #d8c2a1;
  font-size: 8px;
  letter-spacing: .12em;
  border-right: 1px solid rgba(255,255,255,.14);
}
.recording-table {
  color: #e9ddca;
  background: #151714;
  padding: 0 4vw 110px;
}
.recording-table header, .recording-table > div {
  min-height: 51px;
  display: grid;
  grid-template-columns: 50px 1.5fr 1fr 1fr 50px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.16);
}
.recording-table header {
  color: #9f917e;
  font-size: 8px;
  letter-spacing: .1em;
}
.recording-table > div {
  font-family: var(--font-display), serif;
  font-size: 16px;
}
.recording-table button {
  width: 30px;
  height: 30px;
  border: 1px solid #d8c2a1;
  border-radius: 50%;
  background: none;
  color: #d8c2a1;
  font-size: 8px;
}
.asitane-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #eee6d8;
}
.asitane-copy {
  position: absolute;
  z-index: 3;
  left: 4%;
  top: 8%;
  width: 36%;
}
.asitane-copy h1 {
  margin-bottom: 20px;
}
.asitane-copy p {
  color: var(--burgundy);
  font-family: var(--font-display), serif;
  font-size: 20px;
  font-style: italic;
}
.lineage {
  position: absolute;
  inset: 12% 19% 0 23%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}
.lineage figure {
  position: relative;
  height: 330px;
  margin: 0;
  overflow: hidden;
}
.lineage figure:nth-child(2) {
  transform: translateY(55px);
}
.lineage figure:nth-child(3) {
  transform: translateY(5px);
}
.lineage img {
  height: 100%;
  object-fit: cover;
  filter: sepia(.6) saturate(.45) contrast(.9);
  mask-image: linear-gradient(to bottom, black 70%, transparent);
}
.lineage figcaption {
  position: absolute;
  left: 13px;
  bottom: 8px;
  color: var(--burgundy);
  font-size: 8px;
  letter-spacing: .2em;
}
.red-thread {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 67%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 1px 5px rgba(100,0,0,.25);
}
.red-thread i {
  position: absolute;
  top: -7px;
  width: 17px;
  height: 17px;
  border: 3px double var(--red);
  border-radius: 50%;
  background: var(--paper);
}
.red-thread i:nth-child(1) {
  left: 12%;
}
.red-thread i:nth-child(2) {
  left: 37%;
}
.red-thread i:nth-child(3) {
  left: 62%;
}
.red-thread i:nth-child(4) {
  left: 86%;
}
.asitane-event {
  right: 3%;
  top: 10%;
  width: 17%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.asitane-event small {
  color: var(--burgundy);
  font-size: 8px;
  letter-spacing: .12em;
}
.asitane-event strong {
  font-family: var(--font-display), serif;
  font-size: 27px;
  font-weight: 500;
}
.asitane-event span {
  font-size: 11px;
}
.asitane-event a {
  color: var(--burgundy);
  font-size: 9px;
}
.lineage-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lineage-nav a {
  text-align: center;
  color: var(--burgundy);
  font-family: var(--font-display), serif;
  font-size: 17px;
  border-right: 1px solid var(--line);
}
.repertoire {
  padding: 65px 5vw 120px;
}
.repertoire > div:first-child {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  margin-bottom: 28px;
}
.repertoire > div .eyebrow {
  grid-column: 1 / -1;
}
.repertoire input {
  height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.25);
  font-size: 10px;
}
.repertoire header, .repertoire article {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 80px;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.repertoire header {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .12em;
}
.repertoire article strong {
  font-family: var(--font-display), serif;
  font-size: 15px;
}
footer {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 6vw 90px;
  color: #eadfce;
  background: #211c18;
}
.footer-title {
  font-family: var(--font-display), serif;
  font-size: 25px;
}
footer > div:last-child {
  display: flex;
  gap: 28px;
  color: #b9ad9d;
  font-size: 9px;
  text-transform: uppercase;
}
.audio-dock {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 14px;
  width: min(760px,calc(100% - 30px));
  min-height: 62px;
  display: grid;
  grid-template-columns: 40px 1fr 1.2fr 45px;
  align-items: center;
  gap: 15px;
  padding: 8px 18px;
  color: #eee2d1;
  border: 1px solid rgba(201,151,107,.5);
  border-radius: 35px;
  background: rgba(28,24,21,.94);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}
.audio-dock button {
  width: 38px;
  height: 38px;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--burgundy);
}
.audio-dock > span {
  display: grid;
  gap: 3px;
}
.audio-dock small {
  color: #d0996f;
  font-size: 7px;
  letter-spacing: .15em;
}
.audio-dock strong {
  font-family: var(--font-display), serif;
  font-size: 16px;
  font-weight: 500;
}
.audio-dock > i {
  height: 1px;
  background: #8b8175;
  position: relative;
}
.audio-dock > i.playing::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 65%;
  height: 3px;
  background: #d0996f;
  animation: progress 6s linear infinite;
}
@keyframes progress {
  from {
    width: 5%;
  }
  to {
    width: 95%;
  }
}
.audio-dock time {
  color: #9f9589;
  font-size: 9px;
}
@media (max-width: 1050px) {
  .site-header nav {
    gap: 16px;
  }
  .ministry {
    min-width: 300px;
  }
  .gateways {
    grid-template-columns: repeat(5, minmax(170px,1fr));
    overflow-x: auto;
  }
  .world-copy {
    left: 54%;
    width: 25%;
  }
  .world-program {
    width: 18%;
  }
  .unity-program {
    grid-template-columns: 150px 1fr 190px;
  }
  .unity-program > a:last-child {
    display: none;
  }
}
@media (max-width: 780px) {
  .site-header {
    min-height: 78px;
    padding: 0 18px;
  }
  .ministry {
    min-width: 0;
  }
  .ministry strong {
    font-size: 14px;
  }
  .ministry small {
    display: none;
  }
  .ministry-mark {
    width: 42px;
  }
  .site-header nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 15px 20px 22px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .header-actions > a {
    display: none;
  }
  .header-actions button {
    display: grid;
  }
  .program-ticker {
    grid-template-columns: 120px 1fr;
  }
  .program-ticker > strong {
    padding-left: 18px;
  }
  .program-ticker > div {
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }
  .program-ticker a {
    height: 48px;
  }
  .program-ticker a:not(:first-child) {
    display: none;
  }
  .world-nav {
    justify-content: flex-start;
  }
  .home-hero {
    padding: 55px 18px 20px;
  }
  .home-title {
    display: block;
  }
  .home-title .eyebrow {
    margin-bottom: 16px;
  }
  .home-title h1 {
    font-size: 67px;
  }
  .home-title > p:last-child {
    margin-top: 28px;
    font-size: 18px;
  }
  .gateways {
    height: auto;
    display: block;
    overflow: visible;
  }
  .gateway {
    display: block;
    height: 260px;
    margin-bottom: 8px;
    clip-path: none;
  }
  .gateway:hover {
    transform: none;
  }
  .gateway h2 {
    font-size: 34px;
  }
  .home-bottom {
    grid-template-columns: 1fr;
  }
  .home-bottom > article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .program-list {
    padding: 75px 18px 110px;
  }
  .program-row {
    grid-template-columns: 35px 78px 1fr 20px;
    gap: 10px;
  }
  .program-row > p {
    display: none;
  }
  .program-row h3 {
    font-size: 20px;
  }
  .program-row time strong {
    font-size: 40px;
  }
  .sema-stage {
    min-height: 1050px;
  }
  .sema-photo {
    left: 0;
    top: 0;
    width: 100%;
    height: 52%;
  }
  .selam-rings {
    left: 18%;
    width: 380px;
  }
  .selam-labels {
    left: auto;
    right: 20px;
    top: 8%;
    gap: 50px;
  }
  .world-copy {
    left: 20px;
    top: 54%;
    width: calc(100% - 40px);
  }
  .world-copy h1 {
    font-size: 62px;
  }
  .world-program {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
    width: auto;
    min-height: 220px;
  }
  .world-program strong {
    font-size: 45px;
  }
  .section-rail {
    justify-content: flex-start;
    gap: 35px;
    padding: 0 20px;
    overflow-x: auto;
  }
  .digital-stage {
    min-height: 980px;
  }
  .digital-copy {
    left: 20px;
    top: 7%;
    width: 75%;
  }
  .digital-copy h1 {
    font-size: 75px;
  }
  .digital-ticket {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 160px;
    width: auto;
    min-height: 300px;
  }
  .journey {
    left: 20px;
    right: 20px;
    grid-template-columns: repeat(2,1fr);
  }
  .journey strong {
    font-size: 25px;
  }
  .relation-link {
    right: 20px;
    bottom: 12px;
  }
  .unity-stage {
    min-height: 980px;
    display: block;
  }
  .unity-pane {
    height: 33.333%;
    margin: 0;
    clip-path: none;
  }
  .unity-title {
    top: 35%;
  }
  .unity-title h1 {
    font-size: 54px;
  }
  .movement-line {
    display: none;
  }
  .unity-program {
    grid-template-columns: 100px 1fr;
  }
  .unity-program > a {
    grid-column: 1 / -1;
  }
  .three-notes {
    grid-template-columns: 1fr;
    padding: 45px 20px 110px;
  }
  .three-notes article {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .devran-stage {
    min-height: 850px;
  }
  .beat-grid {
    right: 0;
  }
  .devran-copy {
    left: 20px;
    top: 8%;
  }
  .devran-copy h1 {
    font-size: 65px;
  }
  .devran-event {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 130px;
    width: auto;
    min-height: 260px;
  }
  .devran-event strong {
    font-size: 48px;
  }
  .devran-rail {
    right: 0;
    overflow-x: auto;
  }
  .devran-rail a {
    min-width: 130px;
  }
  .recording-table {
    padding: 0 20px 110px;
  }
  .recording-table header, .recording-table > div {
    grid-template-columns: 35px 1fr 70px 36px;
  }
  .recording-table header span:nth-child(3), .recording-table > div span:nth-child(3) {
    display: none;
  }
  .asitane-stage {
    min-height: 1020px;
  }
  .asitane-copy {
    left: 20px;
    top: 5%;
    width: 80%;
  }
  .asitane-copy h1 {
    font-size: 65px;
  }
  .lineage {
    left: 20px;
    right: 20px;
    top: 30%;
    grid-template-columns: 1fr;
  }
  .lineage figure {
    height: 170px;
  }
  .lineage figure:nth-child(2), .lineage figure:nth-child(3) {
    transform: none;
  }
  .red-thread {
    top: 60%;
  }
  .asitane-event {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 25px;
    width: auto;
    min-height: 230px;
    border: 1px solid var(--line);
  }
  .lineage-nav {
    display: flex;
    gap: 35px;
    justify-content: flex-start;
    padding: 0 20px;
    overflow-x: auto;
  }
  .lineage-nav a {
    min-width: 105px;
    border-right: 0;
  }
  .repertoire {
    padding: 60px 20px 110px;
  }
  .repertoire > div:first-child {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .repertoire header, .repertoire article {
    grid-template-columns: 1.5fr 1fr 60px;
  }
  .repertoire header span:nth-child(3), .repertoire article span:nth-child(3) {
    display: none;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .audio-dock {
    grid-template-columns: 38px 1fr 40px;
  }
  .audio-dock > i {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: .01ms !important;
  }
  .audio-dock > i.playing::after {
    animation: none;
  }
}
