:root {
  --ink: #090908;
  --ink-soft: #16130f;
  --ivory: #f5ead7;
  --ivory-2: #fff7e8;
  --paper: #ead8bb;
  --gold: #f2b35a;
  --ochre: #c86625;
  --red: #9e3329;
  --blue: #17659a;
  --turquoise: #4eb8c4;
  --white: #fffaf0;
  --muted-dark: rgba(255, 250, 240, 0.68);
  --muted-light: rgba(15, 13, 10, 0.68);
  --border-dark: rgba(255, 250, 240, 0.18);
  --border-light: rgba(15, 13, 10, 0.18);
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 64px);
  --sans: "Suisse Int'l", "Suisse Intl", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --pointer-x: 0;
  --pointer-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(52% + var(--pointer-x) * 18%) calc(18% + var(--pointer-y) * 12%), rgba(198, 102, 37, 0.34), transparent 34%),
    linear-gradient(135deg, #050505 0%, #11100d 42%, #050505 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 99;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--ivory);
  clip: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  color: var(--white);
  transition: background 220ms ease, border 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  color: var(--white);
  padding-block: 12px;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(9, 9, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark img {
  width: auto;
  height: 42px;
  max-width: 92px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) drop-shadow(0 0 18px rgba(242, 179, 90, 0.22));
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 760;
}

.brand-mark small {
  margin-top: 4px;
  color: var(--muted-dark);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  position: relative;
  z-index: 22;
  margin-left: clamp(22px, 3vw, 44px);
}

.language-switcher::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 18px);
  width: 1px;
  height: 34px;
  background: rgba(255, 250, 240, 0.18);
  transform: translateY(-50%);
}

.language-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.language-icon {
  width: 1.35em;
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 118px;
  display: grid;
  padding: 6px;
  border: 0;
  background: rgba(9, 9, 8, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.language-menu a::after {
  display: none;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="true"] {
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.92), rgba(17, 15, 12, 0.96)),
    var(--ink);
}

.section-ivory {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(234, 216, 187, 0.96)),
    var(--ivory);
}

.section-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(86px, 11vw, 150px) var(--gutter);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: 36px;
  padding: 104px var(--gutter) 42px;
  overflow: hidden;
  isolation: isolate;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  background:
    repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(10deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
}

.hero-stage {
  position: relative;
  align-self: center;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-face {
  position: relative;
  z-index: 0;
  width: min(54vw, 570px);
  min-width: 320px;
  margin: 0;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
  animation: breathe 9s ease-in-out infinite;
}

.hero-face img {
  width: 100%;
  border-radius: 48% 48% 4px 4px;
}

.totem {
  position: absolute;
  bottom: 0;
  z-index: -1;
  height: min(76svh, 760px);
  opacity: 0.54;
  filter: saturate(0.95) contrast(1.05);
}

.totem-left {
  left: clamp(-72px, -6vw, -20px);
  transform: translateY(5%) rotate(-1deg);
}

.totem-right {
  right: clamp(-74px, -6vw, -20px);
  transform: translateY(5%) rotate(1deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-bottom: clamp(12px, 6vh, 76px);
}

.eyebrow,
.section-kicker,
.day-number {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-ivory .section-kicker {
  color: var(--ochre);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.4rem, 11.5vw, 11.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.83;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.1;
}

p {
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.72;
}

.hero-line {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.24;
}

.hero-date {
  margin: 22px 0 0;
  color: var(--gold);
  font-size: clamp(1.55rem, 3vw, 3.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-meta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta-top {
  position: absolute;
  top: clamp(78px, 9svh, 118px);
  left: var(--gutter);
  margin: 0;
}

.hero-meta a {
  border: 1px solid var(--border-dark);
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-meta a:hover,
.hero-meta a:focus-visible {
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-poem,
.serif-statement {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.45vw, 2.5rem);
  line-height: 1.18;
}

.hero-poem {
  max-width: 520px;
  margin-top: 30px;
  color: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-ghost {
  color: var(--white);
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  color: var(--ivory);
  background: var(--ink);
}

.button-outline-dark {
  color: var(--ink);
  border-color: var(--border-light);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 36px;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.split-text,
.why-grid,
.film-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 88px);
}

.split-text p:not(.section-kicker),
.why-grid p,
.film-grid p {
  max-width: 760px;
}

.serif-statement {
  color: var(--ochre);
}

.section-dark .serif-statement {
  color: var(--paper);
}

.eye-window {
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
}

.eye-free {
  min-height: auto;
  align-self: center;
}

.eye-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  transform: scale(1.35);
  filter: saturate(0.95);
}

.eye-free img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  transform: none;
  filter: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(38px, 7vw, 92px);
}

.journey-inner {
  width: min(100%, var(--max));
}

.day-panels {
  display: grid;
  gap: 26px;
}

.day-card {
  scroll-margin-top: 92px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: #11100d;
  isolation: isolate;
}

.day-pylos {
  --accent: #17659a;
  --place-image: url("./images/webp/Pylos1.webp");
  background:
    radial-gradient(circle at 21% 44%, rgba(23, 101, 154, 0.62), transparent 46%),
    linear-gradient(135deg, rgba(23, 101, 154, 0.34), rgba(17, 16, 13, 0.94)),
    #11100d;
}

.day-methoni {
  --accent: #b9412d;
  --place-image: url("./images/webp/Methoni_Castle_12.webp");
  background:
    radial-gradient(circle at 21% 44%, rgba(185, 65, 45, 0.62), transparent 46%),
    linear-gradient(135deg, rgba(185, 65, 45, 0.34), rgba(17, 16, 13, 0.94)),
    #11100d;
}

.day-finikounda {
  --accent: #4eb8c4;
  --place-image: url("./images/webp/Finikounda_-_Strand_und_Ort.webp");
  background:
    radial-gradient(circle at 21% 44%, rgba(78, 184, 196, 0.58), transparent 46%),
    radial-gradient(circle at 88% 20%, rgba(242, 179, 90, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(78, 184, 196, 0.24)),
    #050505;
}

.day-sculpture {
  --accent: #e38b38;
  --place-image: url("./images/webp/Finikounda_-_Strand_und_Ort.webp");
  background:
    radial-gradient(circle at 20% 44%, rgba(227, 139, 56, 0.56), transparent 46%),
    radial-gradient(circle at 88% 22%, rgba(78, 184, 196, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(227, 139, 56, 0.28), rgba(17, 16, 13, 0.95)),
    #11100d;
}

.place-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--place-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.34;
  mix-blend-mode: luminosity;
}

.day-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 calc(100% / 3);
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.day-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-left: 5px solid var(--accent);
  pointer-events: none;
}

.day-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent), transparent 64%), transparent 58%),
    #050505;
  overflow: hidden;
}

.croma-layer {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: min(100%, 520px);
  height: clamp(150px, 18vw, 210px);
  max-width: none;
  object-fit: cover;
  object-position: bottom center;
  align-self: stretch;
  margin: 0 0 4px;
  pointer-events: none;
  filter: saturate(0.96) contrast(1.04) drop-shadow(0 -24px 48px rgba(0, 0, 0, 0.28));
  opacity: 0.94;
  transform-origin: 50% 100%;
  animation: croma-drift 14s ease-in-out infinite;
}

.croma-layer-pylos {
  width: min(100%, 520px);
  height: clamp(150px, 18vw, 210px);
}

.croma-layer-methoni {
  width: min(100%, 520px);
  height: clamp(150px, 18vw, 210px);
  animation-delay: -4s;
}

.croma-layer-finikounda {
  width: min(100%, 520px);
  height: clamp(150px, 18vw, 210px);
  animation-delay: -8s;
}

.croma-layer-sculpture {
  width: min(100%, 560px);
  height: clamp(150px, 17vw, 205px);
  animation-delay: -10s;
}

.day-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 500ms ease;
}

.day-card:hover .day-visual img {
  transform: scale(1.035);
}

.pylos img {
  object-position: 55% 50%;
}

.methoni img {
  object-position: 45% 50%;
}

.finikounda img {
  object-position: center;
  transform: scale(1.02);
}

.day-card:hover .finikounda img {
  transform: scale(1.06);
}

.sculpture img {
  object-position: 42% 50%;
}

.day-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.day-content > * {
  position: relative;
  z-index: 2;
}

.day-place {
  margin: -10px 0 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eye-name {
  margin: 2px 0 -8px !important;
  color: var(--accent) !important;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.day-content p {
  margin: 0;
  color: var(--muted-dark);
}

.text-link {
  width: max-content;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration-color: rgba(242, 179, 90, 0.5);
  text-underline-offset: 6px;
}

.film-section {
  padding: clamp(42px, 7vw, 92px) 0;
  border-block: 1px solid var(--border-dark);
}

.film-wrap {
  width: 100%;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(242, 179, 90, 0.18), rgba(23, 101, 154, 0.12)),
    #050505;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 9, 8, 0.18), transparent 45%, rgba(9, 9, 8, 0.2));
}

.sound-toggle {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 2;
  min-height: 42px;
  border: 1px solid rgba(245, 234, 215, 0.32);
  color: var(--ivory);
  background: rgba(9, 9, 8, 0.58);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: var(--gold);
}

.video-shell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.programme-direction {
  color: var(--white) !important;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.9vw, 1.85rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
}

.artists-button {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.day-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.day-button-row .artists-button {
  margin-top: 0;
}

@supports (background: color-mix(in srgb, red, transparent 50%)) {
  .artists-button {
    border-color: color-mix(in srgb, var(--accent), var(--white) 28%);
    background: color-mix(in srgb, var(--accent), transparent 74%);
  }
}

.artists-button:hover,
.artists-button:focus-visible {
  border-color: var(--white);
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.reserve-day-button {
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
}

@supports (background: color-mix(in srgb, red, transparent 50%)) {
  .reserve-day-button {
    border-color: var(--border-dark);
    background: rgba(255, 255, 255, 0.04);
  }
}

.reserve-day-button:hover,
.reserve-day-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.route-map {
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 22% 50%, rgba(23, 101, 154, 0.13), transparent 28%),
    radial-gradient(circle at 52% 58%, rgba(185, 65, 45, 0.12), transparent 28%),
    radial-gradient(circle at 76% 48%, rgba(78, 184, 196, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.03);
}

.route-graphic {
  position: relative;
  overflow: hidden;
}

.map-caption {
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1.54fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.route-copy p {
  max-width: 640px;
}

.route-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.map-label {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  min-width: 128px;
  min-height: 48px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(245, 234, 215, 0.34);
  color: var(--white);
  background: rgba(9, 9, 8, 0.45);
  text-decoration: none;
  text-align: center;
  transform: translate(-50%, -50%);
  touch-action: manipulation;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.map-label:hover,
.map-label:focus-visible {
  border-color: var(--gold);
  background: rgba(9, 9, 8, 0.72);
  transform: translate(-50%, -54%);
}

.map-label span {
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-label small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label-pylos {
  left: 27%;
  top: 35%;
}

.map-label-methoni {
  left: 56.5%;
  top: 58%;
}

.map-label-finikounda {
  left: 82%;
  top: 86%;
}

.sculpture-heading {
  margin-top: clamp(18px, 3vw, 40px);
  margin-bottom: 18px;
}

.sculpture-heading h2 {
  max-width: 920px;
  margin: 0;
}

.partners-section .section-heading {
  margin-bottom: clamp(30px, 5vw, 62px);
}

.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border-light);
  background: var(--border-light);
}

.partner-wall div {
  min-height: 136px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(9, 9, 8, 0.035), rgba(255, 255, 255, 0.22)),
    var(--ivory);
}

.partner-wall small {
  color: var(--muted-light);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-wall strong {
  color: rgba(9, 9, 8, 0.74);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 1.1fr) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  padding: 44px var(--gutter);
  border-top: 1px solid var(--border-dark);
  color: rgba(255, 250, 240, 0.72);
  background: var(--ink);
}

.footer-brand,
.footer-center {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  align-items: flex-start;
  gap: 14px;
}

.footer-center {
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-center strong {
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-center span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo-link {
  display: inline-flex;
  width: max-content;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.footer-logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
  opacity: 0.9;
  filter: invert(91%) sepia(10%) saturate(260%) hue-rotate(338deg) brightness(96%) contrast(88%);
}

.footer-platform {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-site-link {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-site-link:hover,
.footer-site-link:focus-visible {
  color: var(--white);
}

.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-icons a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 250, 240, 0.7);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.social-icons svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icons [aria-label="Facebook"] svg,
.social-icons [aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  justify-self: end;
  max-width: 240px;
  margin: 0;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration-color: rgba(255, 250, 240, 0.28);
  text-underline-offset: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.012);
  }
}

@keyframes croma-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .croma-layer {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 72px var(--gutter) auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(9, 9, 8, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 4px;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher::before {
    display: none;
  }

  .language-toggle {
    min-width: 70px;
    min-height: 40px;
    justify-content: center;
    padding: 7px 9px;
  }

  .menu-toggle {
    order: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 86px;
  }

  .hero-stage {
    min-height: 44svh;
    order: 1;
  }

  .hero-copy {
    order: 2;
    padding-bottom: 0;
  }

  .hero-face {
    width: min(62vw, 420px);
    min-width: 260px;
  }

  .totem {
    height: min(56svh, 540px);
  }

  .split-text,
  .why-grid,
  .route-grid,
  .film-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .eye-window {
    min-height: auto;
  }

  .eye-free {
    justify-self: center;
  }

  .eye-free img {
    width: min(52vw, 300px);
  }

  .map-label {
    min-width: 108px;
    min-height: 46px;
    padding: 8px 9px;
  }

  .day-card {
    grid-template-columns: minmax(128px, 1fr) minmax(0, 2fr);
    min-height: auto;
  }

  .croma-layer {
    width: min(100%, 460px);
    height: 180px;
    left: auto;
    opacity: 0.82;
  }

  .day-visual {
    min-height: 460px;
  }

  .partner-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-graphic {
    min-height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .copyright {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  .brand-mark span {
    display: none;
  }

  .brand-mark img {
    width: auto;
    height: 38px;
    max-width: 84px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-stage {
    min-height: 38svh;
  }

  .hero-face {
    width: min(70vw, 330px);
    min-width: 230px;
  }

  .totem {
    height: min(44svh, 390px);
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  h3 {
    font-size: clamp(2.15rem, 11.5vw, 3.5rem);
  }

  .button-row,
  .hero-copy .hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero-copy .hero-meta a {
    width: 100%;
  }

  .hero-meta-top {
    top: 82px;
    right: var(--gutter);
  }

  .hero-scroll {
    display: none;
  }

  .section-inner {
    padding-block: 72px;
  }

  .eye-free img {
    width: min(64vw, 240px);
  }

  .day-content {
    padding: 26px;
  }

  .day-content h3 {
    font-size: clamp(1.35rem, 7.15vw, 2.35rem);
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: keep-all;
  }

  .day-sculpture .day-content h3 {
    max-width: 9.5ch;
    white-space: normal;
  }

  .day-card {
    grid-template-columns: minmax(94px, 1fr) minmax(0, 2fr);
  }

  .day-visual {
    min-height: 430px;
  }

  .day-visual img {
    object-position: center;
  }

  .croma-layer {
    width: 100%;
    height: 166px;
    left: auto;
    opacity: 0.9;
  }

  .croma-layer-methoni {
    left: auto;
  }

  .artists-button {
    width: 100%;
  }

  .day-button-row {
    align-items: stretch;
  }

  .day-button-row .artists-button {
    width: 100%;
  }

  .route-map {
    padding: 12px;
  }

  .map-label {
    min-width: 92px;
    padding: 7px 8px;
  }

  .map-label span {
    font-size: 0.66rem;
  }

  .map-label small {
    font-size: 0.58rem;
  }

  .map-label-pylos {
    left: 28%;
    top: 38%;
  }

  .map-label-methoni {
    left: 57%;
    top: 61%;
  }

  .map-label-finikounda {
    left: 78%;
    top: 83%;
  }

  .partner-wall {
    grid-template-columns: 1fr;
  }

  .partner-wall div {
    min-height: 108px;
  }

  .footer-logo {
    width: 108px;
    height: 108px;
  }
}

.reserve-page {
  background: var(--ink);
}

.reserve-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.reserve-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reserve-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.18), rgba(17, 15, 12, 0.96) 58%),
    linear-gradient(180deg, transparent, rgba(17, 15, 12, 0.96));
}

.reserve-hero-face {
  position: absolute;
  left: clamp(22%, 30vw, 36%);
  bottom: 0;
  width: min(42vw, 560px);
  min-width: 300px;
  opacity: 0.74;
}

.reserve-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 88svh;
  max-width: 900px;
  margin-left: auto;
  padding-top: 128px;
}

.reserve-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.7rem, 8.8vw, 9.2rem);
}

.reserve-hero-line {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.5vw, 4.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.reserve-intro {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 32px;
}

.reserve-intro p {
  margin: 0;
  color: var(--muted-dark);
}

.reservation-section {
  border-top: 1px solid var(--border-dark);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.reservation-note {
  position: sticky;
  top: 112px;
}

.reservation-note h2 {
  margin-bottom: 24px;
}

.reservation-note p:not(.section-kicker) {
  color: var(--muted-dark);
}

.reservation-panel {
  border: 1px solid var(--border-dark);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(255, 250, 240, 0)),
    #100f0d;
}

.reservation-form {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  padding: clamp(24px, 4vw, 48px);
}

.form-section {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.check-field span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.field strong {
  color: var(--gold);
}

.field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-dark);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.field input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.field input:disabled {
  color: rgba(255, 250, 240, 0.56);
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
}

.seats-field input {
  border-color: color-mix(in srgb, var(--reserve-accent), var(--border-dark) 44%);
}

.company-website {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reserve-event-grid {
  display: grid;
  gap: 14px;
}

.reserve-event-card {
  --reserve-accent: var(--gold);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--reserve-accent), var(--border-dark) 48%);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--reserve-accent), transparent 90%), transparent),
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(255, 250, 240, 0)),
    #100f0d;
}

.reserve-event-pylos {
  --reserve-accent: var(--blue);
}

.reserve-event-methoni {
  --reserve-accent: var(--red);
}

.reserve-event-finikounda {
  --reserve-accent: var(--turquoise);
}

.reserve-event-card .day-number,
.reserve-event-card h3,
.reserve-event-card .day-place {
  margin: 0;
}

.reserve-event-card h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.02;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: normal;
}

.reserve-event-card .day-place {
  margin-top: 10px;
}

.check-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.consent-section {
  gap: 16px;
  padding-top: 6px;
}

.reservation-message {
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--red), var(--border-dark) 30%);
  color: var(--white);
  background: color-mix(in srgb, var(--red), transparent 78%);
  padding: 14px 16px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.reservation-message[data-tone="success"] {
  border-color: color-mix(in srgb, var(--turquoise), var(--border-dark) 30%);
  background: color-mix(in srgb, var(--turquoise), transparent 84%);
}

.reservation-submit {
  width: max-content;
}

.reservation-submit:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.reservation-confirmation {
  padding: clamp(24px, 4vw, 48px);
}

.confirmation-copy {
  display: grid;
  gap: 20px;
}

.confirmation-copy h2 {
  max-width: 860px;
}

.confirmation-copy h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-style: italic;
  line-height: 1.05;
  text-transform: none;
}

.confirmation-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-dark);
}

.reservation-code {
  display: grid;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--gold), var(--border-dark) 30%);
  background: color-mix(in srgb, var(--gold), transparent 90%);
}

.reservation-code span {
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-code strong {
  color: var(--gold);
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.confirmation-events {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border-dark);
  background: var(--border-dark);
}

.confirmation-events li {
  display: grid;
  gap: 6px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(255, 250, 240, 0)),
    #100f0d;
}

.confirmation-events strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
}

.confirmation-events span,
.confirmation-events em {
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.45;
}

.confirmation-events em {
  color: var(--gold);
  font-style: normal;
  font-weight: 760;
}

@media (max-width: 980px) {
  .reserve-hero-inner {
    margin-left: 0;
  }

  .reserve-hero-art::after {
    background:
      linear-gradient(180deg, rgba(9, 9, 8, 0.18), rgba(17, 15, 12, 0.96) 72%),
      linear-gradient(90deg, rgba(9, 9, 8, 0.28), rgba(17, 15, 12, 0.96));
  }

  .reserve-hero-face {
    left: 50%;
    width: min(62vw, 420px);
    transform: translateX(-50%);
  }

  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .reservation-note {
    position: static;
  }
}

@media (max-width: 620px) {
  .reserve-hero {
    min-height: auto;
  }

  .reserve-hero-inner {
    min-height: auto;
    padding-top: 118px;
  }

  .reserve-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .reserve-hero-line {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .reservation-form,
  .reservation-confirmation {
    padding: 22px;
  }

  .reservation-submit,
  .reservation-code {
    width: 100%;
  }
}

.artists-page {
  background: var(--ink);
}

body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) {
  color: var(--ink);
}

body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) .brand-mark small,
body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) .site-nav {
  color: rgba(15, 13, 10, 0.72);
}

body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) .language-toggle {
  color: var(--ink);
  background: transparent;
}

body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) .language-switcher::before {
  background: rgba(15, 13, 10, 0.16);
}

body.artists-page:not(.menu-open) .site-header:not(.is-scrolled) .menu-toggle {
  color: var(--ink);
}

.artists-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: 92svh;
  overflow: hidden;
  padding: 96px var(--gutter) clamp(36px, 6vw, 88px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), rgba(234, 216, 187, 0.96)),
    var(--ivory);
  isolation: isolate;
}

.artists-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.9) contrast(1.06);
  pointer-events: none;
}

.artists-hero-face {
  position: absolute;
  left: 33%;
  bottom: 0;
  z-index: 1;
  width: min(34vw, 640px);
  min-width: 360px;
  transform: translateX(-50%);
  opacity: 1;
}

.artists-hero-art .totem-left,
.artists-hero-art .totem-right {
  left: auto;
  right: auto;
  bottom: 0;
  opacity: 0.34;
  transform: translateX(-50%) translateY(7%);
}

.artists-hero-art .totem-left:not(.totem-left-outer) {
  left: 20%;
}

.artists-hero-art .totem-right:not(.totem-right-outer) {
  left: 70%;
}

.artists-hero-art .totem-left-outer {
  left: 7%;
  transform: translateX(-50%) translateY(9%) rotate(-3deg) scale(0.92);
  opacity: 0.24;
}

.artists-hero-art .totem-right-outer {
  left: 90%;
  transform: translateX(-50%) translateY(9%) rotate(3deg) scale(0.92);
  opacity: 0.24;
}

.artists-hero-inner {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: start;
  align-self: end;
  display: grid;
  align-content: center;
  width: auto;
  min-height: auto;
  max-width: 780px;
  margin: 0;
  padding: 0 0 clamp(12px, 6vh, 76px);
}

.artists-hero h1 {
  max-width: 8.8ch;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.2vw, 7.8rem);
  line-height: 0.88;
}

.artists-hero .eyebrow {
  color: var(--ochre);
}

.artists-hero-line {
  max-width: 780px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.2vw, 3.55rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.02;
}

.artist-day-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.artist-day-nav a {
  --artist-nav-color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--artist-nav-color), var(--border-light) 60%);
  color: rgba(15, 13, 10, 0.78);
  background: color-mix(in srgb, var(--artist-nav-color), transparent 88%);
  padding: 10px 12px;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.artist-day-nav a:nth-child(1) {
  --artist-nav-color: var(--blue);
}

.artist-day-nav a:nth-child(2) {
  --artist-nav-color: var(--red);
}

.artist-day-nav a:nth-child(3) {
  --artist-nav-color: var(--turquoise);
}

.artist-day-nav a:nth-child(4) {
  --artist-nav-color: var(--gold);
}

.artist-day-nav a:hover,
.artist-day-nav a:focus-visible,
.artist-day-nav a[aria-current="true"] {
  border-color: color-mix(in srgb, var(--artist-nav-color), var(--ink) 12%);
  background: color-mix(in srgb, var(--artist-nav-color), transparent 68%);
  color: var(--ink);
  transform: translateY(-1px);
}

.artist-day-section {
  scroll-margin-top: 120px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 26%, rgba(242, 179, 90, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(9, 9, 8, 0.96), rgba(17, 15, 12, 0.98)),
    var(--ink);
}

.artist-directory .section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: clamp(28px, 5vw, 58px);
  padding-top: clamp(38px, 6vw, 76px);
  align-items: start;
}

.artist-directory-intro,
.artist-category-heading {
  grid-column: 2;
  max-width: 820px;
}

.artist-directory-grid {
  grid-column: 1 / -1;
  max-width: none;
}

.artist-category-heading {
  display: grid;
  gap: 18px;
}

.artist-category-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.artist-category-heading .day-number {
  margin: 0;
}

.artist-category-heading p {
  margin: 0;
}

.artist-category-heading p:not(.day-number) {
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.7;
}

.artist-day-pylos {
  --artist-accent: var(--blue);
}

.artist-day-methoni {
  --artist-accent: var(--red);
}

.artist-day-finikounda {
  --artist-accent: var(--turquoise);
}

.artist-day-sculpture {
  --artist-accent: #e38b38;
}

.artist-day-beach {
  --artist-accent: #e38b38;
}

.artist-category-visual {
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--artist-accent), var(--border-dark) 42%);
  background: #050504;
  mask: url("./images/contur-idol-mask.svg") center / contain no-repeat;
  -webkit-mask: url("./images/contur-idol-mask.svg") center / contain no-repeat;
}

.artist-category-visual[hidden] {
  display: none;
}

.artist-category-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 623.881 / 768.452;
  object-fit: cover;
  object-position: center;
}

.artist-day-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.artist-day-intro {
  position: sticky;
  top: 112px;
}

.artist-day-intro h2 {
  margin-bottom: 24px;
}

.artist-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 16px;
  align-items: start;
}

@media (max-width: 1680px) {
  .artist-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  }
}

.artist-card {
  position: relative;
  display: block;
  --accent: var(--artist-accent);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--artist-accent), var(--border-dark) 48%);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.035), rgba(255, 250, 240, 0)),
    #100f0d;
  transition: border-color 180ms ease, transform 180ms ease;
}

.artist-card-pylos {
  --artist-accent: var(--blue);
}

.artist-card-methoni {
  --artist-accent: var(--red);
}

.artist-card-finikounda {
  --artist-accent: var(--turquoise);
}

.artist-card-sculpture {
  --artist-accent: #e38b38;
}

.artist-card-beach {
  --artist-accent: #e38b38;
}

.artist-card-all {
  --artist-accent: var(--gold);
}

.artist-card:hover,
.artist-card:focus-within {
  border-color: color-mix(in srgb, var(--artist-accent), var(--white) 22%);
  transform: translateY(-2px);
}

.artist-card-visual {
  position: relative;
  height: clamp(320px, 24vw, 420px);
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 26%, color-mix(in srgb, var(--artist-accent), transparent 52%), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0)),
    #050504;
}

.artist-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.04), rgba(5, 5, 4, 0.68) 54%, rgba(5, 5, 4, 0.92)),
    color-mix(in srgb, var(--artist-accent), transparent 84%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.artist-card-open .artist-card-visual::after {
  opacity: 0.08;
}

.artist-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) brightness(0.96);
  transition: filter 180ms ease, transform 180ms ease;
}

.artist-card-open .artist-card-photo {
  filter: saturate(0.98) brightness(0.96);
  transform: scale(1.015);
}

.artist-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  padding: clamp(22px, 2.6vw, 32px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--artist-accent), transparent 90%), transparent),
    rgba(5, 5, 4, 0.78);
}

.artist-card-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.artist-card-copy .artist-card-description {
  color: var(--white);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.42;
  text-transform: none;
}

.artist-card-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-style: italic;
  line-height: 0.92;
  text-transform: none;
}

.artist-card-copy strong {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.artist-card .artists-button {
  justify-self: start;
  margin-top: 4px;
  cursor: pointer;
}

.artist-card .artists-button:hover,
.artist-card .artists-button:focus-visible {
  color: var(--ink);
}

.artist-card-bio {
  border-top: 1px solid color-mix(in srgb, var(--artist-accent), var(--border-dark) 42%);
  padding: clamp(22px, 2.6vw, 32px);
  background: rgba(5, 5, 4, 0.72);
}

.artist-card-bio p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
  white-space: pre-line;
}

.artist-bio-close {
  margin-top: 22px;
}

.artist-mark,
.artist-orbit,
.artist-line {
  position: absolute;
  display: block;
  pointer-events: none;
}

.artist-mark {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 56px;
  border: 14px solid rgba(255, 250, 240, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.artist-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 22px;
  background: var(--artist-accent);
  transform: translate(-50%, -50%);
  clip-path: polygon(0 60%, 50% 0, 100% 60%, 100% 100%, 0 100%);
}

.artist-orbit {
  right: -36px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border: 36px solid color-mix(in srgb, var(--artist-accent), transparent 48%);
  border-radius: 50%;
}

.artist-line {
  left: -10%;
  bottom: 22px;
  width: 122%;
  height: 30px;
  background: color-mix(in srgb, var(--artist-accent), transparent 36%);
  transform: rotate(-13deg);
}

.artist-line-b {
  bottom: 70px;
  height: 18px;
  background: rgba(255, 250, 240, 0.14);
  transform: rotate(18deg);
}

.artist-card-methoni .artist-line-b {
  width: 44%;
  transform: rotate(-62deg);
  transform-origin: bottom center;
}

.artist-card-finikounda .artist-mark {
  transform: translate(-50%, -50%) rotate(6deg) scale(0.92);
}

.artist-card-sculpture .artist-mark {
  width: 86px;
  height: 86px;
  border-width: 20px;
  border-radius: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 980px) {
  .artists-hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .artists-hero-art {
    grid-row: 1;
    position: relative;
    inset: auto;
    min-height: 46svh;
  }

  .artists-hero-face {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(62vw, 420px);
    min-width: 260px;
    margin-inline: auto;
    transform: none;
  }

  .artists-hero-art .totem {
    height: min(56svh, 540px);
  }

  .artists-hero-art .totem-left:not(.totem-left-outer) {
    left: 24%;
  }

  .artists-hero-art .totem-right:not(.totem-right-outer) {
    left: 76%;
  }

  .artists-hero-art .totem-left-outer {
    left: 4%;
  }

  .artists-hero-art .totem-right-outer {
    left: 96%;
  }

  .artists-hero-inner {
    grid-row: 2;
    grid-column: 1;
    max-width: 100%;
    padding-bottom: 0;
  }

  .artist-day-layout {
    grid-template-columns: 1fr;
  }

  .artist-directory .section-inner {
    grid-template-columns: 1fr;
  }

  .artist-directory-intro,
  .artist-category-visual,
  .artist-category-heading {
    grid-column: 1;
  }

  .artist-directory-grid {
    grid-column: 1 / -1;
  }

  .artist-category-visual img {
    aspect-ratio: 16 / 10;
  }

  .artist-day-intro {
    position: static;
  }

  .artist-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .artists-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 96px;
  }

  .artists-hero-inner {
    min-height: auto;
    padding-top: 0;
    max-width: 100%;
  }

  .artists-hero-art {
    min-height: 46svh;
    width: 100%;
  }

  .artists-hero-face {
    width: min(70vw, 330px);
    min-width: 230px;
  }

  .artists-hero-art .totem {
    height: min(44svh, 390px);
  }

  .artists-hero-art .totem-left:not(.totem-left-outer) {
    left: 22%;
  }

  .artists-hero-art .totem-right:not(.totem-right-outer) {
    left: 78%;
  }

  .artists-hero-art .totem-left-outer {
    left: 2%;
  }

  .artists-hero-art .totem-right-outer {
    left: 98%;
  }

  .artists-hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .artists-hero-line {
    font-size: clamp(1.55rem, 7.4vw, 2.6rem);
  }

  .artist-day-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .artist-day-nav a {
    white-space: nowrap;
  }

  .artist-card-grid {
    grid-template-columns: 1fr;
  }
}
