:root {
  --ink: #07111f;
  --ink-2: #17263a;
  --paper: #f5f1e9;
  --paper-2: #ebe4d9;
  --white: #ffffff;
  --muted: #718096;
  --line: rgba(7,17,31,.12);
  --blue: #9db5d2;
  --rust: #d65f37;
  --sand: #d8c3a5;
  --youtube: #ff174d;
  --spotify: #1ed760;
  --apple: #a855f7;
  --page: min(100% - 56px, 1380px);
  --header-h: 88px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --shadow: 0 30px 80px rgba(7,17,31,.12);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
svg { display: block; fill: currentColor; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 12px 16px; border-radius: 999px;
  background: #fff; color: var(--ink); text-decoration: none;
}
.skip-link:focus { top: 16px; }

.protected-content, .protected-content *:not(input):not(textarea) {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.protected-content img {
  -webkit-user-drag: none;
  user-drag: none;
}

.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  padding: 0 max(28px, calc((100vw - 1450px) / 2));
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  background: rgba(7,17,31,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.network-brand {
  min-width: 0;
  display: inline-flex; align-items: center; gap: 16px;
  color: inherit; text-decoration: none;
}
.network-brand-en {
  font-family: var(--serif); font-size: 31px; font-weight: 600;
  line-height: 1; letter-spacing: .06em; white-space: nowrap;
}
.network-brand-en em { color: #91a5c0; font-size: .7em; font-weight: 500; }
.network-brand-divider { width: 1px; height: 32px; background: rgba(255,255,255,.24); }
.network-brand-el {
  max-width: 260px;
  font-size: 12px; line-height: 1.25; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: rgba(255,255,255,.76); text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; }

.section { width: var(--page); margin-inline: auto; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 13px; font-weight: 700; line-height: 1.2;
  letter-spacing: .19em; text-transform: uppercase;
}
.section-kicker { font-size: clamp(14px, 1.2vw, 18px); }
.section-kicker-light { color: #c4d2e3; }
.button {
  min-height: 54px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: #fff; box-shadow: 0 16px 38px rgba(0,0,0,.18); }
.button-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.22); }
.button-dark { color: #fff; background: var(--ink); }
.button-light { color: var(--ink); background: #fff; }
.button-outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }

.hero {
  min-height: calc(100svh - var(--header-h));
  padding: 74px 0 86px;
  display: grid; align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(135,167,205,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135,167,205,.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 20%, #263b58 0, #0b1727 36%, #06101c 70%);
  background-size: 90px 90px, 90px 90px, auto;
}
.hero-grid {
  width: var(--page); margin: auto;
  display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(450px, .97fr);
  gap: clamp(60px, 8vw, 125px); align-items: center;
}
.hero h1, .section-heading h2, .host-copy h2, .studio-copy h2,
.contact-heading h2, .final-cta h2, .latest-heading h2, .show-panel h2 {
  margin: 0; font-family: var(--serif); font-weight: 500;
  line-height: .9; letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(76px, 7vw, 122px); }
.hero h1 em { color: #afc2da; font-weight: 500; }
.hero-intro {
  max-width: 730px; margin: 34px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.35vw, 21px); line-height: 1.75;
}
.hero-intro strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-facts { display: flex; gap: 34px; margin-top: 42px; }
.hero-facts span { color: rgba(255,255,255,.52); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts strong { margin-right: 5px; color: #fff; font-family: var(--serif); font-size: 25px; font-weight: 500; }

.hero-shows { position: relative; min-height: 570px; }
.hero-cover {
  position: absolute;
  width: min(72%, 430px); aspect-ratio: 1;
  padding: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.18); border-radius: 32px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
  cursor: pointer; transition: transform .32s ease;
}
.hero-cover:hover { transform: translateY(-8px) rotate(0deg); z-index: 3; }
.hero-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 23px; }
.hero-cover-dom { left: 0; top: 0; transform: rotate(-4deg); }
.hero-cover-greek { right: 0; bottom: 0; transform: rotate(5deg); }
.cover-language {
  position: absolute; right: 22px; top: 22px;
  padding: 8px 11px; border-radius: 999px;
  color: #fff; background: rgba(7,17,31,.72); backdrop-filter: blur(10px);
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

.marquee { overflow: hidden; color: #fff; background: var(--ink); border-block: 1px solid rgba(255,255,255,.08); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 25px; font-style: italic; color: rgba(255,255,255,.72); }
.marquee i { width: 5px; height: 5px; border-radius: 50%; background: #8298b6; }
@keyframes marquee { to { transform: translateX(-50%); } }

.shows-section { padding: 125px 0 130px; }
.section-heading {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 80px; align-items: end; margin-bottom: 58px;
}
.section-heading h2 { font-size: clamp(76px, 7.4vw, 124px); }
.section-heading > p { max-width: 510px; margin: 0 0 8px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.shows-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.show-card {
  min-width: 0; overflow: hidden;
  display: grid; grid-template-columns: minmax(210px, .78fr) minmax(0, 1.22fr);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.show-card-dom { color: #fff; background: linear-gradient(140deg, #07111f, #152b46); }
.show-card-greek { color: #15100d; background: linear-gradient(140deg, #ead8c7, #c96a42); }
.show-card-art { position: relative; min-height: 100%; padding: 16px; }
.show-card-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 23px; }
.show-language {
  position: absolute; left: 30px; top: 30px; padding: 8px 11px;
  color: #fff; background: rgba(7,17,31,.72); border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.show-card-copy { padding: 48px 42px 44px 28px; display: flex; flex-direction: column; align-items: flex-start; }
.show-number { margin: 0 0 25px; opacity: .6; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.show-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 4vw, 72px); font-weight: 500; line-height: .9; }
.show-tagline { margin: 24px 0 0; font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.show-card-copy > p:not(.show-number):not(.show-tagline) { margin: 22px 0 0; opacity: .72; font-size: 14px; line-height: 1.75; }
.show-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.platform-link {
  min-height: 38px; padding: 0 13px; display: inline-flex; align-items: center;
  color: inherit; background: rgba(255,255,255,.08); border: 1px solid currentColor;
  border-color: rgba(255,255,255,.18); border-radius: 999px;
  text-decoration: none; font-size: 11px; font-weight: 700; cursor: pointer;
}
.show-card-greek .platform-link { background: rgba(255,255,255,.35); border-color: rgba(21,16,13,.16); }
.platform-link.is-pending { opacity: .58; }
.show-open {
  margin-top: auto; padding: 28px 0 5px; background: none; border: 0; border-bottom: 1px solid currentColor;
  font-size: 13px; font-weight: 700; cursor: pointer;
}

.latest-section { padding: 120px 0 130px; color: #fff; background: var(--ink); }
.latest-inner { display: grid; grid-template-columns: minmax(260px, .45fr) minmax(0, 1.55fr); gap: 70px; align-items: start; }
.latest-heading { position: sticky; top: calc(var(--header-h) + 35px); }
.latest-heading h2 { font-size: clamp(76px, 7vw, 112px); }
.latest-grid { display: grid; gap: 18px; }
.latest-show { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.035); }
.latest-show-greek { background: linear-gradient(135deg, rgba(214,95,55,.18), rgba(255,255,255,.025)); }
.latest-show-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.latest-language { color: #a8bed9; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.latest-show h3 { margin: 5px 0 0; font-family: var(--serif); font-size: 42px; font-weight: 500; }
.latest-show-head button { padding: 0 0 5px; color: #fff; background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); cursor: pointer; font-size: 12px; }
.latest-list { display: grid; gap: 10px; }
.latest-item {
  min-height: 86px; padding: 14px 16px;
  display: grid; grid-template-columns: 68px minmax(0,1fr) auto; gap: 16px; align-items: center;
  color: #fff; text-decoration: none;
  border-radius: 16px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08);
}
.latest-item img { width: 68px; height: 58px; object-fit: cover; border-radius: 10px; }
.latest-item-copy strong { display: block; font-size: 13px; line-height: 1.4; }
.latest-item-copy small { display: block; margin-top: 5px; color: rgba(255,255,255,.5); font-size: 10px; }
.latest-item-arrow { opacity: .55; }
.latest-empty { padding: 26px; color: rgba(255,255,255,.58); border: 1px dashed rgba(255,255,255,.18); border-radius: 16px; line-height: 1.7; }

.host-section { padding: 125px 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: clamp(55px, 7vw, 110px); align-items: center; }
.host-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.host-image img { width: 100%; height: auto; }
.host-copy h2 { font-size: clamp(72px, 7vw, 116px); }
.host-copy h2 span { color: #74869d; font-size: .55em; font-style: italic; }
.large-copy { margin: 32px 0 0; font-family: var(--serif); font-size: clamp(29px, 3vw, 43px); line-height: 1.15; letter-spacing: -.02em; }
.host-note { max-width: 620px; margin: 26px 0 0; color: var(--muted); line-height: 1.75; }
.host-button { margin-top: 30px; text-transform: none; letter-spacing: 0; font-size: 13px; }

.production-card-section { padding: 0 max(28px, calc((100vw - 1450px) / 2)) 125px; }
.production-card { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.production-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 35%, rgba(0,0,0,.48)), linear-gradient(transparent 50%, rgba(0,0,0,.32)); }
.production-card img { width: 100%; height: auto; }
.production-card figcaption { position: absolute; z-index: 2; inset: 0; padding: 44px 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; color: #fff; }
.production-card figcaption span { font-size: clamp(14px, 1.3vw, 20px); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; border-bottom: 3px solid #b8cee8; }
.production-card figcaption strong { max-width: 620px; text-align: right; font-family: var(--serif); font-size: clamp(54px, 5vw, 84px); font-weight: 500; line-height: .92; }

.studio-section { padding: 118px 0 120px; background: linear-gradient(180deg, #f0ece5, var(--paper)); }
.studio-top { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(50px, 7vw, 110px); align-items: center; }
.studio-brand-panel {
  padding: 30px; display: grid; place-items: center; gap: 16px;
  background: rgba(255,255,255,.68); border: 1px solid rgba(7,17,31,.1); border-radius: 28px; box-shadow: 0 22px 60px rgba(7,17,31,.08);
}
.studio-partner-label { color: #7e8da1; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.studio-logo-picture { display: block; width: min(100%, 330px); }
.studio-logo-picture img { width: 100%; height: auto; object-fit: contain; }
.studio-copy h2 { font-size: clamp(64px, 6.5vw, 105px); }
.studio-details { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.studio-details span { padding: 10px 14px; color: var(--ink-2); background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.studio-showcase { width: min(100% - 56px, 1450px); margin: 50px auto 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.studio-showcase img { width: 100%; height: auto; }

.contact-section { padding: 125px 0; display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 8vw, 130px); align-items: start; }
.contact-heading h2 { font-size: clamp(72px, 7vw, 112px); }
.contact-heading > p:last-child { max-width: 500px; margin-top: 28px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.contact-form { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 0 0 26px; border: 0; }
.purpose-card { position: relative; min-height: 120px; padding: 19px; display: flex; gap: 13px; border: 1px solid var(--line); border-radius: 16px; cursor: pointer; }
.purpose-card-wide { grid-column: 1 / -1; min-height: 100px; }
.purpose-card:has(input:checked) { background: #f1f4f7; border-color: var(--ink); }
.purpose-card input { position: absolute; opacity: 0; pointer-events: none; }
.purpose-dot { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; border-radius: 50%; border: 1px solid #8997a9; box-shadow: inset 0 0 0 4px #fff; }
.purpose-card:has(input:checked) .purpose-dot { background: var(--ink); border-color: var(--ink); }
.purpose-card strong, .purpose-card small { display: block; }
.purpose-card strong { font-size: 14px; }
.purpose-card small { margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form > label, .form-row label { display: block; margin-top: 16px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: #fbfbfa; border: 1px solid #d8dce2; border-radius: 13px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #869dbb; box-shadow: 0 0 0 4px rgba(134,157,187,.14); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute !important; left: -9999px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.button-submit { color: #fff; background: var(--ink); }

.final-cta { padding: 110px 0; color: #fff; background: radial-gradient(circle at 75% 20%, #263b58, #07111f 58%); }
.final-cta-inner { width: var(--page); margin: auto; }
.final-cta h2 { font-size: clamp(76px, 8vw, 128px); }
.final-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }

.site-footer {
  padding: 34px max(28px, calc((100vw - 1450px) / 2));
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  color: rgba(255,255,255,.65); background: #040b13;
}
.site-footer p { margin: 0; text-align: center; font-size: 11px; }
.footer-brand { color: #fff; }
.back-top { color: #fff; font-size: 11px; text-decoration: none; }

.show-modal[hidden] { display: none; }
.show-modal { position: fixed; z-index: 2000; inset: 0; }
.show-modal-backdrop { position: absolute; inset: 0; background: rgba(2,7,13,.7); backdrop-filter: blur(10px); }
.show-panel {
  position: absolute; top: 0; right: 0; width: min(860px, 92vw); height: 100%;
  padding: 55px 48px 60px; overflow-y: auto;
  background: var(--paper); box-shadow: -30px 0 80px rgba(0,0,0,.32);
}
.show-panel-close { position: sticky; z-index: 3; top: 0; float: right; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 30px; }
.show-panel-hero { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 34px; align-items: center; padding-top: 28px; clear: both; }
.show-panel-hero > img { width: 230px; aspect-ratio: 1; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.show-panel h2 { font-size: clamp(58px, 6vw, 88px); }
.show-panel-hero p:last-of-type { color: var(--muted); line-height: 1.7; }
.show-panel-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.show-panel-platforms a, .show-panel-platforms button { min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; text-decoration: none; cursor: pointer; font-size: 11px; font-weight: 700; }
.show-panel-tabs { display: flex; gap: 8px; margin: 40px 0 18px; }
.show-panel-tabs button { min-height: 45px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-weight: 700; }
.show-panel-tabs button[aria-selected="true"] { color: #fff; background: var(--ink); border-color: var(--ink); }
.show-panel-list { display: grid; gap: 10px; }
.panel-item { min-height: 96px; padding: 14px; display: grid; grid-template-columns: 112px minmax(0,1fr) auto; gap: 16px; align-items: center; color: inherit; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.panel-item img { width: 112px; height: 72px; object-fit: cover; border-radius: 10px; }
.panel-item strong { display: block; line-height: 1.4; }
.panel-item small { display: block; margin-top: 6px; color: var(--muted); }
.panel-item-arrow { color: var(--muted); }
.panel-empty { padding: 32px; color: var(--muted); border: 1px dashed var(--line); border-radius: 16px; line-height: 1.75; }
.load-more { min-height: 48px; margin: 20px auto 0; padding: 0 20px; display: block; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; }
.toast { position: fixed; z-index: 3000; left: 50%; bottom: 28px; transform: translate(-50%, 30px); max-width: min(90vw, 520px); padding: 13px 18px; color: #fff; background: var(--ink); border-radius: 999px; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; text-align: center; font-size: 12px; box-shadow: var(--shadow); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  :root { --page: min(100% - 48px, 1040px); }
  .site-header { padding-inline: 24px; }
  .network-brand-el { max-width: 190px; }
  .site-nav { gap: 22px; }
  .hero-grid { grid-template-columns: 1fr .83fr; gap: 52px; }
  .hero-shows { min-height: 500px; }
  .show-card { grid-template-columns: 1fr; }
  .show-card-art { aspect-ratio: 16 / 10; }
  .show-card-copy { padding: 36px; }
  .show-card h3 { font-size: 62px; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; --page: calc(100% - 36px); }
  .site-header { height: var(--header-h); }
  .network-brand { gap: 10px; }
  .network-brand-en { font-size: 27px; }
  .network-brand-divider { height: 26px; }
  .network-brand-el { max-width: 155px; font-size: 9px; }
  .menu-toggle { width: 46px; height: 46px; display: grid; gap: 7px; place-content: center; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { width: 25px; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto; height: calc(100svh - var(--header-h)); padding: 30px 22px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(7,17,31,.995); transform: translateX(100%); transition: transform .28s ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 18px 5px; border-bottom: 1px solid rgba(255,255,255,.11); font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -.02em; text-transform: none; }

  .hero { min-height: auto; padding: 58px 0 75px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero h1 { font-size: clamp(64px, 16vw, 92px); }
  .hero-intro { font-size: 16px; }
  .hero-shows { width: min(100%, 610px); min-height: 520px; margin: 0 auto; }
  .hero-facts { flex-wrap: wrap; }

  .section-heading, .latest-inner, .host-section, .studio-top, .contact-section { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .section-heading h2, .latest-heading h2, .host-copy h2, .contact-heading h2 { font-size: clamp(62px, 15vw, 92px); }
  .shows-grid { grid-template-columns: 1fr; }
  .show-card { grid-template-columns: minmax(220px,.75fr) minmax(0,1.25fr); }
  .show-card-art { aspect-ratio: auto; }
  .latest-inner { gap: 42px; }
  .latest-heading { position: static; }
  .host-section { padding: 90px 0; gap: 45px; }
  .studio-section { padding: 90px 0; }
  .studio-top { gap: 40px; }
  .studio-brand-panel { width: min(100%, 520px); }
  .contact-section { padding: 90px 0; gap: 45px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .back-top { justify-self: center; }
  .show-panel { width: min(100%, 760px); padding-inline: 28px; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 28px); }
  .site-header { padding-inline: 15px; }
  .network-brand-divider, .network-brand-el { display: none; }
  .network-brand-en { font-size: 28px; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(58px, 17vw, 76px); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-facts { gap: 20px; }
  .hero-shows { min-height: 410px; }
  .hero-cover { width: 72%; padding: 7px; border-radius: 24px; }
  .hero-cover img { border-radius: 17px; }
  .hero-cover-dom { left: -2%; }
  .hero-cover-greek { right: -2%; }
  .cover-language { right: 14px; top: 14px; }
  .marquee span { font-size: 21px; }
  .shows-section { padding: 80px 0; }
  .section-heading h2 { font-size: clamp(56px, 16vw, 72px); }
  .section-heading > p { font-size: 16px; }
  .show-card { grid-template-columns: 1fr; border-radius: 24px; }
  .show-card-art { aspect-ratio: 1; padding: 10px; }
  .show-card-art img { border-radius: 17px; }
  .show-card-copy { padding: 29px 24px 32px; }
  .show-card h3 { font-size: 53px; }
  .show-tagline { font-size: 24px; }
  .platform-link { min-height: 40px; }
  .show-open { margin-top: 30px; }
  .latest-section { padding: 80px 0; }
  .latest-show { padding: 22px 18px; border-radius: 21px; }
  .latest-show-head { align-items: flex-start; flex-direction: column; }
  .latest-item { grid-template-columns: 70px minmax(0,1fr); }
  .latest-item-arrow { display: none; }
  .host-section { padding: 78px 0; }
  .host-image { border-radius: 24px; }
  .host-copy h2 { font-size: clamp(58px, 16vw, 75px); }
  .large-copy { font-size: 29px; }
  .production-card-section { padding: 0 14px 78px; }
  .production-card { border-radius: 23px; }
  .production-card figcaption { padding: 24px 21px; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  .production-card figcaption strong { font-size: 43px; text-align: left; }
  .studio-section { padding: 70px 0; }
  .studio-top { gap: 28px; }
  .studio-brand-panel { width: 112px; height: 112px; margin: 0 auto; padding: 14px; border-radius: 50%; }
  .studio-partner-label { display: none; }
  .studio-logo-picture { width: 100%; }
  .studio-copy { width: var(--page); margin: 0 auto; }
  .studio-copy h2 { font-size: 54px; }
  .studio-showcase { width: calc(100% - 28px); margin-top: 32px; border-radius: 23px; }
  .contact-section { padding: 78px 0; }
  .contact-heading h2 { font-size: 65px; }
  .contact-form { padding: 23px 18px; border-radius: 22px; }
  .purpose-grid, .form-row { grid-template-columns: 1fr; }
  .purpose-card-wide { grid-column: auto; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 66px; }
  .final-actions { display: grid; }
  .site-footer .network-brand-el, .site-footer .network-brand-divider { display: inline-flex; }
  .site-footer .network-brand { flex-wrap: wrap; justify-content: center; }
  .show-panel { width: 100%; padding: 24px 16px 45px; }
  .show-panel-hero { grid-template-columns: 1fr; gap: 22px; }
  .show-panel-hero > img { width: min(100%, 320px); }
  .show-panel h2 { font-size: 62px; }
  .panel-item { grid-template-columns: 105px minmax(0,1fr); }
  .panel-item-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== v18 — two-show presentation refinements ===== */

/* Show cards: preserve the complete square artwork instead of cropping it. */
.show-card {
  align-items: center;
}
.show-card-art {
  min-height: 0;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: center;
  overflow: hidden;
}
.show-card-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
}

/* More prominent platform actions inside both show cards. */
.show-platforms {
  gap: 11px;
  margin-top: 32px;
}
.platform-link {
  min-height: 47px;
  padding: 0 18px;
  border: 0;
  font-size: 12px;
  letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(7,17,31,.12);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(7,17,31,.18);
}
.platform-link.youtube {
  color: #fff;
  background: var(--youtube);
}
.platform-link.spotify {
  color: #06150b;
  background: var(--spotify);
}
.platform-link.apple {
  color: #fff;
  background: var(--apple);
}
.show-card-greek .platform-link.youtube,
.show-card-greek .platform-link.spotify,
.show-card-greek .platform-link.apple {
  border-color: transparent;
}
.platform-link.is-pending {
  color: rgba(255,255,255,.72);
  background: rgba(7,17,31,.56);
  box-shadow: none;
  cursor: default;
}
.show-card-greek .platform-link.is-pending {
  color: rgba(21,16,13,.62);
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(21,16,13,.14);
}
.show-open {
  padding-top: 34px;
  font-size: 14px;
}

/* Rebuilt show dialog: a centered editorial modal with complete artwork. */
.show-modal {
  display: grid;
  place-items: center;
  padding: 28px;
}
.show-modal-backdrop {
  background: rgba(2,7,13,.76);
  backdrop-filter: blur(14px);
}
.show-panel {
  position: relative;
  top: auto;
  right: auto;
  width: min(1120px, calc(100vw - 56px));
  height: auto;
  max-height: calc(100svh - 56px);
  padding: 42px 44px 48px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 38px 110px rgba(0,0,0,.42);
}
.show-panel-close {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  float: none;
  box-shadow: 0 10px 26px rgba(7,17,31,.1);
}
.show-panel-hero {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: 18px 62px 10px 0;
  clear: none;
}
.show-panel-hero > img {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  border-radius: 26px;
  background: #09131f;
  box-shadow: 0 24px 60px rgba(7,17,31,.2);
}
.show-panel h2 {
  font-size: clamp(66px, 6.4vw, 100px);
}
.show-panel-hero p:last-of-type {
  max-width: 620px;
  font-size: 16px;
}
.show-panel-platforms {
  gap: 10px;
  margin-top: 24px;
}
.show-panel-platforms a,
.show-panel-platforms button {
  min-height: 47px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,17,31,.12);
  font-size: 12px;
}
.show-panel-platforms .platform-youtube { background: var(--youtube); }
.show-panel-platforms .platform-spotify { color: #06150b; background: var(--spotify); }
.show-panel-platforms .platform-apple { background: var(--apple); }
.show-panel-platforms .platform-pending {
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}
.show-panel-tabs {
  margin: 34px 0 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.show-panel-tabs button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.show-panel-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.panel-item {
  min-height: 110px;
  grid-template-columns: 92px minmax(0,1fr) auto;
  padding: 12px;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.panel-item:hover {
  transform: translateY(-2px);
  border-color: rgba(7,17,31,.24);
  box-shadow: 0 12px 28px rgba(7,17,31,.08);
}
.panel-item img {
  width: 92px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1160px) {
  .show-card-art {
    aspect-ratio: 1;
  }
}

@media (max-width: 860px) {
  .show-card-art {
    aspect-ratio: 1;
  }
  .show-panel {
    width: min(100%, 760px);
    padding: 34px 28px 42px;
  }
  .show-panel-hero {
    grid-template-columns: minmax(220px, 300px) minmax(0,1fr);
    gap: 32px;
    padding-right: 46px;
  }
  .show-panel-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .show-card-art {
    aspect-ratio: 1;
  }
  .show-platforms {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .platform-link {
    width: 100%;
    justify-content: center;
  }
  .show-modal {
    padding: 0;
  }
  .show-panel {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    padding: 70px 16px 42px;
    border: 0;
    border-radius: 0;
  }
  .show-panel-close {
    position: fixed;
    top: 16px;
    right: 16px;
  }
  .show-panel-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0;
  }
  .show-panel-hero > img {
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
  }
  .show-panel h2 {
    font-size: clamp(58px, 17vw, 78px);
  }
  .show-panel-platforms {
    display: grid;
    grid-template-columns: 1fr;
  }
  .show-panel-platforms a,
  .show-panel-platforms button {
    width: 100%;
    justify-content: center;
  }
  .panel-item {
    grid-template-columns: 88px minmax(0,1fr);
  }
  .panel-item img {
    width: 88px;
    height: 78px;
  }
}


/* ===== v19 — mobile artwork parity and cache-safe Greek show cover ===== */
@media (max-width: 600px) {
  .hero-cover,
  .show-card-art,
  .show-panel-hero > img {
    aspect-ratio: 1 / 1;
  }

  .hero-cover img,
  .show-card-art img,
  .show-panel-hero > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-cover,
  .show-card-art {
    background: #09131f;
  }
}
