:root {
  --atl-ink: #142d27;
  --atl-jade: #0d6b59;
  --atl-coral: #ed684c;
  --atl-amber: #f0ad41;
  --atl-paper: #f5efe3;
  --atl-white: #fffdf8;
  --atl-line: rgba(20, 45, 39, 0.16);
  --atl-serif: Georgia, "Times New Roman", serif;
  --atl-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.atl-festival-page,
.atl-festival-archive {
  color: var(--atl-ink);
  background: var(--atl-paper);
  font-family: var(--atl-sans);
}

.atl-archive-hero,
.atl-single-hero {
  padding: clamp(60px, 9vw, 125px) max(5vw, 22px);
  color: var(--atl-white);
  background: var(--atl-ink);
}

.atl-archive-hero > *,
.atl-single-hero-inner,
.atl-page-inner {
  width: min(1240px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.atl-single-hero.has-image {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

.atl-single-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.atl-single-hero:not(.has-image) .atl-single-hero-inner {
  display: block;
}

.atl-single-hero-media {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #0d241f;
}

.atl-single-hero-image {
  width: 100%;
  height: clamp(360px, 42vw, 580px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.atl-single-hero-media figcaption {
  padding: 12px 0 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 10px;
  line-height: 1.45;
}

.atl-kicker {
  margin: 0 0 14px;
  color: #8bc8b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atl-archive-hero h1,
.atl-single-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--atl-serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.atl-archive-hero .atl-intro,
.atl-single-hero .atl-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-family: var(--atl-serif);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}

.atl-page-inner {
  padding: 55px max(5vw, 22px) 85px;
  box-sizing: border-box;
}

.atl-festival-explorer {
  border: 1px solid var(--atl-line);
  background: var(--atl-white);
}

.atl-explorer-toolbar {
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid var(--atl-line);
}

.atl-explorer-toolbar label {
  min-width: 170px;
}

.atl-explorer-toolbar label span {
  display: block;
  margin-bottom: 6px;
  color: #6d7a74;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atl-explorer-toolbar select {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--atl-line);
  border-radius: 0;
  color: var(--atl-ink);
  background: var(--atl-white);
}

.atl-explorer-toolbar p {
  margin: 0 0 11px auto;
  color: #65736d;
  font-size: 12px;
}

.atl-explorer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.65fr);
}

.atl-map-shell,
.atl-single-map {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #dce9e2;
}

.atl-map-shell svg,
.atl-single-map svg {
  width: 100%;
  height: 100%;
}

.atl-map-country {
  fill: #f8f3e8;
  stroke: #89a196;
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
}

.atl-map-marker {
  cursor: pointer;
  outline: none;
}

.atl-map-marker circle {
  fill: var(--atl-coral);
  stroke: var(--atl-white);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.atl-map-marker text {
  fill: var(--atl-ink);
  font-family: var(--atl-sans);
  font-size: 10px;
  font-weight: 800;
  paint-order: stroke;
  stroke: #dce9e2;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.atl-map-marker.active circle,
.atl-map-marker:focus circle {
  fill: var(--atl-jade);
  r: 11px;
}

.atl-map-detail {
  min-height: 560px;
  padding: 34px;
  box-sizing: border-box;
  border-left: 1px solid var(--atl-line);
  background: var(--atl-white);
}

.atl-map-detail > p:first-of-type {
  margin: 24px 0 8px;
  color: #63716b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.atl-map-detail h2 {
  margin: 0 0 18px;
  font-family: var(--atl-serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.atl-map-detail > strong {
  display: block;
  margin-bottom: 17px;
  color: var(--atl-jade);
}

.atl-map-detail > p:last-of-type {
  color: #5e6d66;
  font-family: var(--atl-serif);
  line-height: 1.6;
}

.atl-detail-actions {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.atl-detail-actions a,
.atl-source-card a {
  color: var(--atl-jade);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.atl-date-status {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  color: #2f6556;
  background: #def0e8;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atl-status-expected {
  color: #7b571d;
  background: #f8e8c9;
}

.atl-status-dates-tba {
  color: #944532;
  background: #f8e3dd;
}

.atl-live-list,
.atl-fallback-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--atl-line);
}

.atl-live-list:empty {
  display: none;
}

.atl-festival-explorer.is-enhanced .atl-fallback-list {
  display: none;
}

.atl-festival-card {
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  border-right: 1px solid var(--atl-line);
  border-bottom: 1px solid var(--atl-line);
}

.atl-festival-card p {
  margin: 0 0 14px;
  color: var(--atl-coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atl-festival-card h2 {
  margin: 0;
  font-family: var(--atl-serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}

.atl-festival-card h2 a {
  color: inherit;
  text-decoration: none;
}

.atl-festival-card strong {
  margin: 15px 0 20px;
  color: #5d6c65;
  font-size: 13px;
}

.atl-festival-card .atl-date-status {
  margin-top: auto;
}

.atl-empty {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #6c7973;
}

.atl-single-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atl-single-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 800;
}

.atl-single-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--atl-line);
  background: var(--atl-white);
}

.atl-single-facts div {
  min-height: 115px;
  padding: 22px;
  box-sizing: border-box;
  border-right: 1px solid var(--atl-line);
}

.atl-single-facts div:last-child {
  border-right: 0;
}

.atl-single-facts span,
.atl-single-facts strong {
  display: block;
}

.atl-single-facts span {
  color: #75827c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atl-single-facts strong {
  margin-top: 9px;
  font-family: var(--atl-serif);
  font-size: 20px;
  font-weight: 400;
}

.atl-single-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 38px;
}

.atl-entry-content {
  font-family: var(--atl-serif);
  font-size: 18px;
  line-height: 1.75;
}

.atl-entry-content h2 {
  margin: 48px 0 14px;
  color: var(--atl-ink);
  font-family: var(--atl-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.atl-entry-content ul {
  padding-left: 1.2em;
}

.atl-entry-content li + li {
  margin-top: 10px;
}

.atl-editorial-summary {
  padding: 28px;
  border-top: 5px solid var(--atl-coral);
  background: var(--atl-white);
}

.atl-editorial-summary > p {
  margin-top: 0;
  font-size: 21px;
  line-height: 1.5;
}

.atl-editorial-summary dl {
  margin: 25px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.atl-editorial-summary dt {
  color: #738079;
  font-family: var(--atl-sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atl-editorial-summary dd {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.atl-trip-shape {
  margin: 25px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--atl-line);
  border-left: 1px solid var(--atl-line);
}

.atl-trip-shape li {
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--atl-line);
  border-bottom: 1px solid var(--atl-line);
  background: var(--atl-white);
}

.atl-trip-shape span,
.atl-trip-shape strong {
  display: block;
}

.atl-trip-shape span {
  color: var(--atl-coral);
  font-family: var(--atl-sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.atl-trip-shape strong {
  margin: 9px 0;
  font-size: 19px;
  line-height: 1.2;
}

.atl-trip-shape p {
  margin: 0;
  color: #5e6c66;
  font-size: 14px;
  line-height: 1.55;
}

.atl-planning-note {
  margin-top: 45px;
  padding: 28px;
  color: var(--atl-white);
  background: var(--atl-jade);
}

.atl-planning-note h2 {
  margin-top: 0;
  color: var(--atl-white);
}

.atl-planning-note p {
  color: rgba(255, 253, 248, 0.7);
  font-family: var(--atl-sans);
  font-size: 11px;
}

.atl-single-map {
  min-height: 390px;
  border: 1px solid var(--atl-line);
}

.atl-source-card {
  margin-top: 18px;
  padding: 24px;
  color: var(--atl-white);
  background: var(--atl-ink);
}

.atl-source-card span,
.atl-source-card strong {
  display: block;
}

.atl-source-card span {
  color: #8bc8b7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atl-source-card strong {
  margin: 12px 0 18px;
  font-family: var(--atl-serif);
  font-size: 24px;
  font-weight: 400;
}

.atl-source-card a {
  color: var(--atl-amber);
}

.atl-related {
  margin-top: 55px;
}

.atl-related h2 {
  font-family: var(--atl-serif);
  font-size: 39px;
  font-weight: 400;
}

.atl-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--atl-line);
  border-left: 1px solid var(--atl-line);
}

@media (max-width: 900px) {
  .atl-single-hero-inner,
  .atl-explorer-layout,
  .atl-single-grid {
    grid-template-columns: 1fr;
  }

  .atl-single-hero-media {
    width: min(680px, 100%);
  }

  .atl-map-detail {
    min-height: auto;
    border-top: 1px solid var(--atl-line);
    border-left: 0;
  }

  .atl-live-list,
  .atl-fallback-list,
  .atl-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .atl-single-facts {
    grid-template-columns: 1fr 1fr;
  }

  .atl-trip-shape {
    grid-template-columns: 1fr;
  }

  .atl-single-facts div:nth-child(2) {
    border-right: 0;
  }

  .atl-single-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--atl-line);
  }
}

@media (max-width: 560px) {
  .atl-explorer-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .atl-explorer-toolbar label {
    width: 100%;
  }

  .atl-explorer-toolbar p {
    margin: 4px 0 0;
  }

  .atl-map-shell {
    min-height: 430px;
  }

  .atl-live-list,
  .atl-fallback-list,
  .atl-related-grid,
  .atl-single-facts {
    grid-template-columns: 1fr;
  }

  .atl-single-facts div,
  .atl-single-facts div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--atl-line);
  }

  .atl-single-facts div:last-child {
    border-bottom: 0;
  }

  .atl-editorial-summary dl {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atl-festival-page *,
  .atl-festival-archive * {
    scroll-behavior: auto !important;
  }
}
