:root {
  --paper: #f6f7fb;
  --white: #ffffff;
  --ink: #173246;
  --navy: #284b63;
  --navy-deep: #18374d;
  --music: #28b8ad;
  --music-soft: #c9f0e8;
  --theatre: #d56b4c;
  --theatre-soft: #f4c4b4;
  --travel: #6f9a5e;
  --travel-soft: #d9e8cb;
  --line: rgba(23, 50, 70, 0.18);
  --muted: #677b89;
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

::selection {
  background: var(--music);
  color: var(--navy-deep);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.navbar {
  position: relative;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  min-height: 48px;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand span {
  color: var(--music);
  font-size: 28px;
  font-weight: 500;
}

.menu-button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, width 0.25s ease;
}

.menu-button span:last-child {
  width: 17px;
}

.menu-button[aria-expanded="true"] span:first-child {
  width: 23px;
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  width: 23px;
  transform: translateY(-4.5px) rotate(-45deg);
}

.desktop-nav {
  display: none;
}

.nav-cta {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.nav-cta::before {
  content: "↗";
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  z-index: 90;
  min-height: calc(100svh - 76px);
  padding: 28px 20px 32px;
  background: var(--paper);
  transform: translateX(-102%);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(26px, 7.5vw, 36px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.mobile-nav nav a span {
  width: 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}


.section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  padding-bottom: 32px;
}

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

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 9vw, 64px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.section-heading-row > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy);
}

.button-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost:hover {
  background: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy-deep);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: 44px 20px 76px;
  display: grid;
  align-content: space-between;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 18vw, 126px);
  line-height: 0.77;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.hero h1 em,
.contact-cta h2 em {
  color: var(--theatre);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  margin: 28px 0 0;
  padding-left: 54%;
  font-size: clamp(16px, 4vw, 23px);
  line-height: 1.35;
  font-weight: 550;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-art {
  position: relative;
  height: 310px;
  margin-top: -20px;
  overflow: hidden;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(40, 75, 99, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 270px;
  height: 270px;
  right: -40px;
  top: 10px;
}

.orbit-two {
  width: 180px;
  height: 180px;
  right: 5px;
  top: 55px;
}

.shape {
  position: absolute;
  z-index: 2;
  display: flex;
  font-weight: 800;
  line-height: 0.85;
}

.shape-music {
  width: 138px;
  height: 138px;
  right: 84px;
  top: 0;
  border-radius: 50%;
  background: var(--music);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 24px;
  transform: rotate(-9deg);
}

.shape-theatre {
  width: 116px;
  height: 145px;
  right: 4px;
  top: 112px;
  border-radius: 60px 60px 18px 18px;
  background: var(--theatre);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 27px;
  text-align: center;
  transform: rotate(8deg);
}

.shape-travel {
  width: 150px;
  height: 90px;
  left: 4px;
  bottom: 10px;
  padding: 18px;
  border-radius: 22px 52px 22px 22px;
  background: var(--travel);
  color: var(--white);
  justify-content: space-between;
  align-items: flex-end;
  font-size: 19px;
  transform: rotate(-4deg);
}

.shape-travel b {
  font-size: 34px;
  font-weight: 400;
}

.hero-stamp {
  position: absolute;
  left: 29%;
  top: 62px;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  white-space: pre-line;
  transform: rotate(8deg);
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.hero-ticker div {
  min-width: max-content;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  animation: ticker 22s linear infinite;
}

.hero-ticker i {
  padding: 0 16px;
  color: var(--music);
  font-size: 8px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.about-section {
  padding-top: 110px;
}

.about-grid {
  border-top: 1px solid var(--line);
  display: grid;
}

.about-quote {
  padding: 34px 0 44px;
}

.about-quote p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 7vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.about-quote span {
  color: var(--muted);
  font-size: 13px;
}

.stats-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-grid div {
  min-height: 130px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.stats-grid div:nth-child(even) {
  padding-left: 22px;
}

.stats-grid strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stats-grid span {
  color: var(--muted);
  font-size: 12px;
}

.directions-section {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: var(--navy-deep);
  color: var(--white);
}

.directions-section .section-heading {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.directions-section .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.direction-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.direction-card {
  position: relative;
  min-height: 420px;
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: transform 0.3s ease;
}

.direction-card:hover {
  transform: translateY(-6px);
}

.direction-card.music {
  background: var(--music);
}

.direction-card.theatre {
  background: var(--theatre);
  color: var(--white);
}

.direction-card.travel {
  background: var(--travel-soft);
}

.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  align-self: center;
  width: 154px;
  height: 154px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 82px;
  font-weight: 400;
  transform: rotate(-8deg);
}

.direction-card:nth-child(2) .card-icon {
  border-radius: 50% 50% 18px 18px;
  transform: rotate(5deg);
}

.direction-card:nth-child(3) .card-icon {
  border-style: dashed;
  transform: rotate(8deg);
}

.direction-card h3 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.direction-card p {
  max-width: 290px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.circle-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.reasons-section {
  padding-bottom: 106px;
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px 8px;
}

.reason-item > span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.reason-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.reason-item p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.events-section {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: var(--white);
}

.events-section > * {
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-row {
  position: relative;
  min-height: 156px;
  padding: 22px 54px 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 8px 14px;
}

.event-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.event-row.music::before { background: var(--music-soft); }
.event-row.theatre::before { background: var(--theatre-soft); }
.event-row.travel::before { background: var(--travel-soft); }
.event-row:hover::before { transform: scaleY(1); }

.event-row > * {
  position: relative;
  z-index: 1;
}

.event-date {
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-date strong {
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.event-date span,
.event-tag {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-row h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.event-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  min-height: 54px;
  margin-top: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}

.gallery-section {
  padding-bottom: 106px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-tile,
.gallery-more {
  position: relative;
  min-height: 230px;
  padding: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-tile > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gallery-tile p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.gallery-photo {
  margin: 0;
  padding: 0;
  background: var(--navy);
}

.gallery-photo-link {
  width: 100%;
  height: 100%;
  display: block;
  cursor: zoom-in;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-photo:hover img {
  transform: scale(1.035);
}

.gallery-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 50, 70, .82);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.gallery-music {
  grid-column: 1 / 3;
  min-height: 300px;
  background: var(--music-soft);
}

.gallery-theatre {
  background: var(--theatre);
  color: var(--white);
}

.gallery-travel {
  background: var(--travel-soft);
}

.visual-note,
.visual-face {
  align-self: center;
  font-family: Georgia, serif;
  font-size: 112px;
  line-height: 1;
}

.visual-note {
  color: var(--navy);
  transform: rotate(12deg);
}

.visual-face {
  font-size: 86px;
  transform: rotate(-9deg);
}

.visual-route {
  align-self: center;
  display: flex;
  flex-direction: column;
  font-size: 72px;
  line-height: 0.65;
}

.visual-route i {
  font-size: 30px;
  letter-spacing: 0.05em;
}

.gallery-more {
  grid-column: 1 / 3;
  min-height: 180px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-more span {
  color: rgba(255,255,255,.58);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-more strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gallery-more > [aria-hidden] {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 28px;
}

.testimonials-section {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: var(--music);
}

.testimonials-section > * {
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.testimonials-section .eyebrow {
  color: rgba(23, 50, 70, .65);
}

.testimonial-wrap {
  position: relative;
  min-height: 470px;
  padding: 35px 0 0;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: .55;
}

.testimonial-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-copy blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 7.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.testimonial-copy > p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.testimonial-copy > p span {
  color: rgba(23, 50, 70, .65);
  font-size: 11px;
}

.slider-controls {
  min-height: 70px;
  border-top: 1px solid rgba(23, 50, 70, .25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 50, 70, .35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-controls span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--muted);
  font-size: 10px;
}

.faq-list summary strong {
  font-size: 17px;
  line-height: 1.25;
}

.faq-list summary i {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  transition: transform .25s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -6px 40px 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-cta {
  position: relative;
  min-height: 660px;
  padding: 82px 20px 36px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-cta > div:not(.contact-ring) {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.contact-cta .eyebrow {
  color: rgba(255, 255, 255, .55);
}

.contact-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 13vw, 96px);
  line-height: .92;
  letter-spacing: -.065em;
}

.contact-cta > div > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0;
  color: rgba(255, 255, 255, .7);
}

.contact-cta .button-light {
  min-width: 190px;
}

.contact-ring {
  position: absolute;
  right: -140px;
  bottom: 40px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.06);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.contact-ring::after {
  content: "";
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  position: absolute;
}

.contact-details {
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.contact-details a:first-child {
  color: var(--white);
  font-size: 20px;
  font-weight: 650;
}

.footer {
  padding: 56px 20px 20px;
  background: #102b3d;
  color: var(--white);
}

.footer-main,
.footer-bottom {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.brand-light span {
  color: var(--music);
}

.footer-main > div:first-child > p {
  margin: 20px 0 44px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 20px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  min-height: 34px;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.footer-links span {
  color: rgba(255,255,255,.55);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 12px;
  background: rgba(10, 27, 40, .68);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal {
  position: relative;
  width: min(580px, 100%);
  max-height: calc(100svh - 24px);
  padding: 34px 22px 24px;
  border-radius: 28px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.26);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.modal h2 {
  max-width: 430px;
  margin: 0 0 16px;
  padding-right: 46px;
  font-size: clamp(34px, 8vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
}

.modal > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.join-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.join-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.join-form input,
.join-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.join-form input:focus,
.join-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(40,75,99,.1);
}

.join-form .button {
  width: 100%;
  margin-top: 6px;
}

.join-form small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
  text-transform: none;
}

.success-state {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.success-state > span {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--music);
  display: grid;
  place-items: center;
  font-size: 30px;
}

.success-state h2 {
  padding: 0;
}

.success-state > p:not(.eyebrow) {
  max-width: 370px;
  margin: 0 0 28px;
  color: var(--muted);
}

/* Inner pages */

.accent-music { --page-accent: var(--music); --page-soft: var(--music-soft); }
.accent-theatre { --page-accent: var(--theatre); --page-soft: var(--theatre-soft); }
.accent-travel { --page-accent: var(--travel); --page-soft: var(--travel-soft); }
.accent-navy { --page-accent: var(--navy); --page-soft: #dbe5ea; }

.inner-hero {
  position: relative;
  min-height: 640px;
  padding: 86px 20px 38px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inner-hero > div:first-child {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.inner-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(48px, 13vw, 108px);
  line-height: .93;
  font-weight: 650;
  letter-spacing: -.065em;
}

.inner-hero > div:first-child > p:last-child {
  max-width: 650px;
  margin: 32px 0 0;
  font-size: clamp(17px, 4vw, 23px);
  line-height: 1.45;
}

.inner-hero-mark {
  position: absolute;
  right: -90px;
  bottom: -70px;
  width: 320px;
  height: 320px;
  border: 1px solid var(--page-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--page-accent);
  font-family: Georgia, serif;
  font-size: 140px;
  opacity: .4;
  transform: rotate(9deg);
}

.page-stats {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.page-stats div {
  min-height: 130px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.page-stats strong {
  color: var(--page-accent);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.06em;
}

.page-stats span {
  color: var(--muted);
  font-size: 12px;
}

.content-sections {
  padding: 38px 0 90px;
}

.content-section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 24px;
}

.page-content-section {
  padding-bottom: 100px;
}

.content-body {
  max-width: 900px;
  min-height: 220px;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 22px 65px rgba(24, 55, 77, .08);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.content-body h2,
.content-body h3 {
  margin: 1.7em 0 .55em;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.content-body h2:first-child,
.content-body h3:first-child,
.content-body p:first-child {
  margin-top: 0;
}

.content-body a {
  color: var(--page-accent);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 18px;
}

.page-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.page-gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.page-gallery-item a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
}

.page-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.page-gallery-item a:hover img {
  transform: scale(1.025);
}

.page-gallery-item figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.weekly-schedule {
  min-width: 0;
}

.schedule-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.schedule-heading h2 {
  margin: 0;
  font-size: clamp(38px, 8vw, 72px);
  line-height: .98;
  font-weight: 650;
  letter-spacing: -.055em;
}

.schedule-heading > p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.schedule-scroll {
  margin-right: -20px;
  padding: 0 20px 14px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--music) transparent;
  scrollbar-width: thin;
}

.schedule-scroll:focus-visible {
  outline: 3px solid rgba(40, 184, 173, .45);
  outline-offset: 4px;
}

.schedule-grid {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(7, 240px);
  gap: 10px;
}

.schedule-day {
  aspect-ratio: 1;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 12px 32px rgba(24, 55, 77, .05);
}

.schedule-day:nth-child(3n + 1) {
  border-top: 5px solid var(--music);
}

.schedule-day:nth-child(3n + 2) {
  border-top: 5px solid var(--theatre);
}

.schedule-day:nth-child(3n) {
  border-top: 5px solid var(--travel);
}

.schedule-day-weekend {
  background: #eef4ea;
}

.schedule-day header {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.schedule-day header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.schedule-day h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -.035em;
}

.schedule-day-content,
.schedule-empty {
  margin: 0;
  padding-top: 16px;
  font-size: 13px;
  line-height: 1.7;
}

.schedule-day-content {
  flex: 1;
  overflow-y: auto;
  white-space: pre-line;
}

.schedule-empty {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
}

.schedule-empty::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--travel);
  display: inline-block;
}

.schedule-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (min-width: 1100px) {
  .schedule-scroll {
    margin-right: 0;
    padding-right: 0;
  }

  .schedule-grid {
    width: 100%;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .schedule-day {
    padding: 15px;
    border-radius: 18px;
  }

  .schedule-day h3 {
    font-size: 14px;
  }

  .schedule-hint {
    display: none;
  }
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 76px 14px 20px;
  background: rgba(7, 20, 30, .96);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  color: #fff;
  overscroll-behavior: contain;
}

.photo-lightbox-close,
.photo-lightbox-arrow {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(16, 43, 61, .88);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background .2s ease, transform .2s ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-arrow:hover {
  background: var(--music);
  color: var(--navy-deep);
  transform: scale(1.05);
}

.photo-lightbox-close:focus-visible,
.photo-lightbox-arrow:focus-visible {
  outline: 3px solid var(--music);
  outline-offset: 3px;
}

.photo-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 34px;
  font-weight: 300;
}

.photo-lightbox-figure {
  width: min(1180px, 100%);
  height: 100%;
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.photo-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 170px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

.photo-lightbox-figure figcaption {
  width: 100%;
  min-height: 54px;
  padding: 14px 2px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.photo-lightbox-counter {
  margin-left: auto;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.photo-lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.photo-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.photo-lightbox-prev {
  left: 14px;
}

.photo-lightbox-next {
  right: 14px;
}

@media (max-width: 699px) {
  .photo-lightbox-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .photo-lightbox-arrow:hover {
    transform: scale(1.05);
  }

  .photo-lightbox-prev {
    left: calc(50% - 64px);
  }

  .photo-lightbox-next {
    right: calc(50% - 64px);
  }

  .photo-lightbox-figure {
    padding-bottom: 64px;
  }

  .photo-lightbox-figure img {
    max-height: calc(100svh - 220px);
  }
}

@media (min-width: 700px) {
  .page-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.content-card-grid {
  display: grid;
  gap: 10px;
}

.content-card {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 1px 0 var(--line);
}

.content-card > span {
  margin-bottom: auto;
  color: var(--page-accent);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.04em;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.legal-page,
.not-found {
  min-height: calc(100svh - 76px);
  padding: 80px 20px;
}

.legal-page {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-page h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(46px, 12vw, 92px);
  line-height: .95;
  letter-spacing: -.065em;
}

.legal-lead {
  max-width: 580px;
  margin: 28px 0 70px;
  font-size: 20px;
}

.legal-copy {
  max-width: 700px;
  margin-left: auto;
}

.legal-copy h2 {
  margin: 36px 0 10px;
  font-size: 20px;
}

.legal-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-date {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.not-found {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.not-found > div:last-child {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.not-found > div > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0;
  color: var(--muted);
}

.not-found-orbit {
  position: absolute;
  right: -180px;
  top: 50%;
  width: 480px;
  height: 480px;
  border: 1px solid var(--music);
  border-radius: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  color: var(--music);
  font-size: 110px;
  font-weight: 800;
  letter-spacing: -.08em;
  opacity: .35;
}

@media (min-width: 720px) {
  .nav-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .section {
    width: min(1280px, calc(100% - 64px));
    padding: 120px 0;
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 420px);
    align-items: end;
  }

  .hero {
    padding: 80px 32px 76px;
    grid-template-columns: 56% 44%;
    align-items: center;
  }

  .hero-copy {
    align-self: center;
  }

  .hero h1 {
    font-size: clamp(82px, 11vw, 142px);
  }

  .hero-lead {
    padding-left: 44%;
  }

  .hero-art {
    height: 520px;
    margin: 0;
  }

  .orbit-one {
    width: 460px;
    height: 460px;
    right: -100px;
    top: 25px;
  }

  .orbit-two {
    width: 320px;
    height: 320px;
    right: -30px;
    top: 95px;
  }

  .shape-music {
    width: 210px;
    height: 210px;
    right: 170px;
    top: 35px;
    font-size: 38px;
  }

  .shape-theatre {
    width: 170px;
    height: 230px;
    right: 18px;
    top: 200px;
    font-size: 40px;
  }

  .shape-travel {
    width: 230px;
    height: 140px;
    left: 20px;
    bottom: 30px;
    padding: 28px;
    font-size: 27px;
  }

  .hero-stamp {
    left: 24%;
    top: 192px;
    width: 116px;
    height: 116px;
    font-size: 13px;
  }

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

  .about-quote {
    padding: 40px 50px 40px 0;
  }

  .stats-grid {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .stats-grid div:nth-child(odd) {
    padding-left: 28px;
  }

  .direction-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .direction-card {
    min-height: 500px;
  }

  .reason-item {
    min-height: 126px;
    grid-template-columns: 50px minmax(230px, .8fr) 1fr;
    align-items: center;
  }

  .reason-item p {
    grid-column: 3;
    max-width: 560px;
  }

  .events-section,
  .directions-section,
  .testimonials-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .event-row {
    grid-template-columns: 90px 100px 1fr 220px 48px;
    gap: 18px;
  }

  .event-date {
    grid-row: auto;
  }

  .event-row .circle-arrow {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: 1.35fr .65fr .65fr;
    grid-template-rows: 250px 170px;
  }

  .gallery-tile,
  .gallery-more {
    min-height: 0;
  }

  .gallery-music {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-theatre {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-travel {
    grid-column: 3;
    grid-row: 1;
  }

  .gallery-more {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .testimonial-wrap {
    padding-left: 18%;
  }

  .quote-mark {
    position: absolute;
    left: 0;
    top: 28px;
  }

  .footer {
    padding: 72px 32px 24px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(150px, 220px));
    justify-content: start;
    column-gap: 56px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .modal-backdrop {
    align-items: center;
  }

  .modal {
    padding: 48px;
  }

  .page-stats {
    width: min(1280px, calc(100% - 64px));
    grid-template-columns: repeat(3, 1fr);
  }

  .page-stats div {
    min-height: 180px;
    padding: 30px;
    border-right: 1px solid var(--line);
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section {
    width: min(1280px, calc(100% - 64px));
    padding-top: 100px;
  }

  .content-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-card {
    min-height: 340px;
  }

  .legal-page,
  .not-found {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (min-width: 1200px) {
  .navbar {
    height: 88px;
  }

  .nav-inner {
    padding: 0 48px;
  }

  .menu-button {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .desktop-nav a {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 650;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transition: transform .2s ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    min-width: 132px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
  }

  .nav-cta::before {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 88px);
    padding-right: 48px;
    padding-left: 48px;
  }

  .hero-art {
    height: 600px;
  }

  .hero-lead {
    padding-left: 51%;
  }

  .direction-card {
    min-height: 590px;
    padding: 30px;
  }

  .card-icon {
    width: 190px;
    height: 190px;
    font-size: 105px;
  }

  .direction-card h3 {
    font-size: 52px;
  }

  .reason-item h3 {
    font-size: 28px;
  }

  .testimonial-wrap {
    min-height: 560px;
  }

  .contact-cta {
    min-height: 760px;
    padding: 110px 48px 50px;
  }

  .contact-details {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-details a:first-child {
    font-size: 28px;
  }

  .inner-hero {
    min-height: 720px;
    padding: 120px 48px 50px;
  }

  .inner-hero-mark {
    right: 2vw;
    bottom: -110px;
    width: 520px;
    height: 520px;
    font-size: 220px;
  }

  .page-stats {
    margin-top: 50px;
  }

  .page-stats strong {
    font-size: 58px;
  }
}

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