
:root{
  --bg: #f3ebde;
  --paper: rgba(248, 241, 231, 0.78);
  --panel-paper: rgba(252, 247, 240, 0.66);
  --line: rgba(47, 37, 24, 0.22);
  --soft-line: rgba(47, 37, 24, 0.08);
  --text: #211a13;
  --ink: #2b2218;
  --muted: rgba(43, 34, 24, 0.66);
  --brass: #8f7d56;
  --brass-soft: #ae9a70;
  --shadow: 0 18px 50px rgba(35, 29, 20, 0.07);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 247, 236, 0.72) 0%, rgba(255, 247, 236, 0.16) 26%, rgba(243, 235, 222, 0.0) 56%),
    radial-gradient(circle at center, rgba(76, 61, 39, 0.025) 0%, rgba(76, 61, 39, 0) 72%),
    linear-gradient(to right, rgba(35, 29, 20, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(35, 29, 20, 0.045) 1px, transparent 1px),
    radial-gradient(circle at top, #f7efdf 0%, var(--bg) 67%);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.page-shell {
  max-width: 1460px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 38px 34px 44px;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  padding-top: 0;
  min-height: auto;
}

.site-title-lockup {
  font-family: "Forum", "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.6vw, 4.1rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.title-divider {
  display: none;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.eyebrow-time {
  letter-spacing: 0.08em;
}

.clock-block {
  text-align: right;
}

.clock-value {
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: rgba(43, 34, 24, 0.82);
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.globe-column {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-stage {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: center;
  gap: 22px;
}

.globe-frame {
  position: relative;
  width: min(100%, 900px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-frame::before,
.globe-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
}

.globe-frame::before {
  width: 86%;
  height: 86%;
}

.globe-frame::after {
  width: 58%;
  height: 98%;
  opacity: 0.72;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  min-height: 420px;
  filter: drop-shadow(0 30px 60px rgba(35, 29, 20, 0.1));
  touch-action: pan-y;
}

body {
  -webkit-overflow-scrolling: touch;
}

.hidden {
  display: none !important;
}

.marker-panel {
  position: relative;
  width: 100%;
  max-width: 290px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-paper);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 14px 15px 15px;
  justify-self: end;
}

.panel-kicker {
  margin-bottom: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.panel-pointer {
  position: absolute;
  left: -22px;
  top: 34px;
  width: 22px;
  height: 1px;
  background: rgba(35, 29, 20, 0.35);
}

.panel-pointer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(35, 29, 20, 0.35);
  border-left: 1px solid rgba(35, 29, 20, 0.35);
  transform: rotate(-45deg);
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-entry {
  display: block;
  width: 100%;
  border: 1px solid rgba(35, 29, 20, 0.12);
  border-radius: 16px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.panel-entry.is-primary {
  border-color: rgba(47, 37, 24, 0.20);
  background: rgba(255, 255, 255, 0.40);
}

.primary-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-row {
  display: block;
}

.card-row + .card-row {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(35, 29, 20, 0.10);
}

.card-label {
  display: block;
  margin-bottom: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.card-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.08;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.name-value {
  display: block;
  font-family: "Forum", "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.panel-entry.is-primary .name-value {
  font-size: 28px;
}

.marker-dot {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: default;
}

.marker-core {
  display: block;
  width: 9px;
  height: 9px;
  margin: 4.5px;
  border-radius: 999px;
  background: #20180f;
  box-shadow: 0 0 0 4px rgba(32, 24, 15, 0.10);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.marker-dot.is-active .marker-core {
  transform: scale(1.10);
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(143, 125, 86, 0.14);
}

.marker-dot.is-secondary .marker-core {
  background: var(--brass-soft);
  box-shadow: 0 0 0 4px rgba(174, 154, 112, 0.12);
}

.footer-strip {
  padding: 0 4px 8px;
}

.current-production {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.current-production .label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.current-production a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1.02;
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.current-production a:hover {
  opacity: 0.72;
}

.subpage-shell {
  max-width: 1200px;
}

.subpage-header {
  margin-bottom: 10px;
}

.subpage-brand {
  min-height: auto;
  align-self: flex-start;
  padding-top: 0;
}

.back-link {
  display: inline-block;
}

.show-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 60px;
}

.show-title {
  margin: 0 0 24px;
  font-family: "Forum", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  max-width: 12ch;
}

.show-panel {
  max-width: 700px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-paper);
  padding: 26px 28px;
}

.show-placeholder {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 960px) {
  .page-shell {
    padding: 24px 22px 30px;
  }

  .site-header {
    margin-bottom: 12px;
  }

  .brand-lockup {
    min-height: auto;
    padding-top: 0;
    align-self: flex-start;
  }

  .site-title-lockup {
    font-size: clamp(2.1rem, 7vw, 4rem);
  }

  .globe-column {
    min-height: 60vh;
  }

  .globe-stage {
    grid-template-columns: minmax(0, 1fr) 238px;
    gap: 14px;
  }

  .globe-frame {
    width: min(100%, 760px);
  }

  .marker-panel {
    max-width: 238px;
  }

  .current-production a {
    font-size: 27px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 18px 18px 24px;
  }

  .site-header {
    margin-bottom: 8px;
  }

  .site-title-lockup {
    font-size: 1.85rem;
    line-height: 0.84;
  }

  .title-divider {
    width: 84px;
    margin-top: 8px;
  }

  .clock-value {
    max-width: 180px;
    font-size: 11px;
    line-height: 1.45;
  }

  .globe-column {
    min-height: auto;
  }

  .globe-stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

.globe-canvas {
  min-height: 260px;
  pointer-events: none;
}

  .globe-frame {
    width: 100%;
    aspect-ratio: auto;
  }

  .globe-frame::before,
  .globe-frame::after {
    display: none;
  }

  .marker-panel {
    max-width: none;
    justify-self: stretch;
  }

  .panel-pointer {
    display: none;
  }

  .current-production a {
    font-size: 22px;
    line-height: 1.05;
  }
}


.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.inner-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 18px 0 50px;
}

.page-intro {
  max-width: 760px;
}

.page-title {
  margin: 8px 0 12px;
  font-family: "Forum", "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.2vw, 5.1rem);
  line-height: 0.97;
  color: var(--ink);
}

.page-dek {
  margin: 0;
  max-width: 38ch;
  font-size: 26px;
  line-height: 1.08;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-paper);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}

.content-card p {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
}

.full-span {
  grid-column: 1 / -1;
}

.simple-list {
  margin: 10px 0 0 18px;
  padding: 0;
}

.simple-list li {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.08;
  color: var(--ink);
}

.season-intro {
  max-width: 900px;
}

.season-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-item {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-paper);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  text-decoration: none;
}

.season-item:hover {
  border-color: rgba(44, 34, 24, 0.30);
}

.season-item-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.season-item-title {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  color: var(--ink);
}

@media (max-width: 960px) {
  .site-nav {
    gap: 14px;
    margin-bottom: 10px;
  }

  .page-dek,
  .content-card p,
  .simple-list li {
    font-size: 22px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    font-size: 9px;
    gap: 10px;
    margin-bottom: 8px;
  }

  .page-title {
    font-size: 2.4rem;
  }

  .page-dek,
  .content-card p,
  .simple-list li {
    font-size: 19px;
    line-height: 1.15;
  }

  .season-item-title {
    font-size: 2rem;
    line-height: 1.02;
  }
}

.small-home {
  min-height: auto;
  padding-top: 6px;
}

.home-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.home-link:hover {
  opacity: 0.65;
}

.site-nav {
  margin-right: 28px;
}

.clock-value {
  margin-top: 0;
}




/* AVRIELLE EDITORIAL PAGE */

.editorial-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 0 86px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.production-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.production-present {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.production-title {
  margin: 0;
  font-family: "Forum", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
  color: var(--ink);
}

.production-title .subtitle {
  display: block;
  margin-top: 8px;
  font-size: 0.58em;
  line-height: 1;
}

.production-season {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
}

.production-framing {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.production-framing p {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  text-align: center;
  color: var(--ink);
}

.production-framing .production-logline {
  font-size: 27px;
}

.production-poster.narrow-poster {
  max-width: 760px;
  margin: 0 auto;
}

.production-poster img {
  display: block;
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.credits-section {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.section-heading-block {
  margin-bottom: 18px;
  text-align: center;
}

.section-heading-block h2 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--muted);
}

.credits-grid {
  display: grid;
  gap: 10px;
}

.credit-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.15fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-paper);
  box-shadow: var(--shadow);
}

.credit-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.02;
  color: var(--ink);
}

.credit-role {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.08;
  color: var(--ink);
  opacity: 0.88;
}

@media (max-width: 900px) {
  .editorial-page {
    gap: 40px;
  }

  .production-framing p {
    font-size: 21px;
  }

  .production-framing .production-logline {
    font-size: 24px;
  }

  .production-poster.narrow-poster {
    max-width: 640px;
  }

  .credit-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .credit-name {
    font-size: 25px;
  }

  .credit-role {
    font-size: 21px;
  }
}

@media (max-width: 700px) {
  .editorial-page {
    padding: 26px 0 64px;
    gap: 32px;
  }

  .production-title {
    font-size: 2.45rem;
  }

  .production-season {
    font-size: 23px;
  }

  .production-framing p {
    font-size: 18px;
    line-height: 1.26;
  }

  .production-framing .production-logline {
    font-size: 20px;
  }

  .production-poster.narrow-poster {
    max-width: none;
  }

  .credit-row {
    padding: 12px 13px;
  }

  .credit-name {
    font-size: 22px;
  }

  .credit-role {
    font-size: 18px;
  }
}


/* ABOUT PAGE */

.about-page{
max-width:880px;
margin:0 auto;
padding:42px 0 86px;
display:flex;
flex-direction:column;
gap:38px;
}

.about-header h1{
font-family:"Forum",serif;
font-size:clamp(3rem,6vw,4.8rem);
line-height:.95;
margin:0;
text-align:center;
color:var(--ink);
}

.about-text{
display:flex;
flex-direction:column;
gap:18px;
}

.about-text p{
font-family:"Cormorant Garamond",serif;
font-size:24px;
line-height:1.25;
margin:0;
color:var(--ink);
}

.about-founder{
margin-top:18px;
}

.about-founder h2{
font-family:"IBM Plex Mono",monospace;
font-size:12px;
letter-spacing:.15em;
text-transform:uppercase;
color:var(--muted);
margin-bottom:8px;
}

.about-founder p{
font-family:"Cormorant Garamond",serif;
font-size:23px;
line-height:1.2;
margin:0;
}

@media (max-width:700px){

.about-text p{
font-size:19px;
line-height:1.32;
}

.about-founder p{
font-size:19px;
}

}


/* SEASON PAGE */

.season-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0 86px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.season-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.season-kicker {
  margin: 0 0 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.season-title {
  margin: 0;
  font-family: "Forum", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  color: var(--ink);
  max-width: 8ch;
}

.season-blurb {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1.02;
  color: var(--ink);
  max-width: 40ch;
}

.season-works {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.season-work {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0 18px;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.season-work:last-child {
  border-bottom: 1px solid var(--line);
}

.season-work-number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
  color: var(--muted);
  padding-top: 6px;
}

.season-work-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.season-work-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.95;
  color: var(--ink);
}

.season-work-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.season-work:hover .season-work-title,
.season-work[aria-current="page"] .season-work-title {
  opacity: 0.72;
}

.season-work.current .season-work-note {
  color: var(--ink);
}

@media (max-width: 900px) {
  .season-page {
    gap: 38px;
  }

  .season-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .season-blurb {
    font-size: 25px;
    max-width: 28ch;
  }

  .season-work-title {
    font-size: 2.45rem;
  }
}

@media (max-width: 700px) {
  .season-page {
    padding: 28px 0 64px;
    gap: 28px;
  }

  .season-title {
    font-size: 2.5rem;
    max-width: none;
  }

  .season-blurb {
    font-size: 20px;
    line-height: 1.08;
  }

  .season-work {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .season-work-title {
    font-size: 1.95rem;
    line-height: 1;
  }

  .season-work-number {
    font-size: 10px;
    padding-top: 4px;
  }
}


.documentation-section {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.doc-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.doc-figure figcaption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: left;
}

@media (max-width: 900px) {
  .documentation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 700px) {
  .documentation-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doc-figure figcaption {
    font-size: 9px;
    line-height: 1.5;
  }
}

.av-video-section {
  margin-top: 48px;
}

.av-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.av-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.av-credit-line {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(40, 34, 24, 0.55);
  text-align: center;
}

/* Fix line under images */
.doc-figure img {
  display: block;
  border: none;
}

.doc-figure a {
  text-decoration: none;
}
