:root {
  --ink: #211c29;
  --lavender: #dcd5f0;
  --mist: #f3f1f7;
  --muted: #645b70;
  --ember: #f3aa74;
  --earth: #b5c9b9;
  --water: #accadc;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.8;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #9274b7;
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(76px, 9.8vw, 150px);
}
h2 {
  font-size: clamp(52px, 6vw, 88px);
}
em {
  font-weight: 400;
}
p + p {
  margin-top: 1.3em;
}
.section {
  padding: 110px max(6vw, 24px);
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1.6;
}
.site-header {
  height: 99px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mist);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}
.brand-mark {
  width: 43px;
  height: 47px;
  flex: none;
}
.brand-sub {
  display: block;
  font-family: var(--body);
  font-size: 7px;
  letter-spacing: 0.19em;
  margin-top: 8px;
  font-weight: 600;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 600;
}
.site-header nav > a:not(.button) {
  position: relative;
}
.site-header nav > a:not(.button):after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: currentColor;
  transition: width 0.25s;
}
.site-header nav > a:hover:after,
.site-header nav > a[aria-current]:after {
  width: 100%;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 15px 23px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--mist);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: var(--lavender);
  color: var(--ink);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.nav-cta {
  padding: 12px 19px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid currentColor;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}
.text-link span {
  font-size: 24px;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.menu-toggle {
  display: none;
}
.skip {
  position: absolute;
  z-index: 99;
  left: 12px;
  top: -70px;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.hero {
  height: min(790px, calc(100svh - 99px));
  min-height: 620px;
  position: relative;
  color: var(--mist);
  background: var(--ink);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: left 47%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #211c29 0%,
      #211c29 29%,
      rgba(33, 28, 41, 0.75) 43%,
      rgba(33, 28, 41, 0.16) 65%,
      rgba(33, 28, 41, 0.15)
    ),
    linear-gradient(0deg, rgba(33, 28, 41, 0.6), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 75px 6vw;
  width: 100%;
}
.hero .eyebrow {
  color: var(--lavender);
  margin-bottom: 40px;
}
.hero h1 {
  font-size: clamp(96px, 12vw, 184px);
  line-height: 0.83;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--lavender);
  padding-left: 8vw;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 45px;
  font-size: 12px;
  line-height: 1.9;
}
.button.light {
  background: transparent;
  border-color: #bfb4c9;
  color: var(--mist);
}
.button.light:hover {
  background: var(--lavender);
  color: var(--ink);
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 75px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll span {
  font-size: 25px;
}
.hero-side {
  position: absolute;
  right: 2vw;
  top: 48%;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.21em;
}
.element-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 6vw;
  background: var(--lavender);
}
.element-strip a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 22px;
  font-size: 12px;
  border-right: 1px solid #bdb2ce;
  transition: background 0.2s;
}
.element-strip a:first-child {
  border-left: 1px solid #bdb2ce;
}
.element-strip a:hover,
.element-strip a[aria-current] {
  background: #cbc0e1;
}
.element-strip a > span:first-child {
  font-size: 28px;
  font-family: var(--display);
  line-height: 1;
}
.element-strip a > span:last-child {
  margin-left: auto;
}
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12vw;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 140px;
}
.intro-copy .eyebrow {
  margin-bottom: 25px;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.intro-portrait {
  position: relative;
  align-self: center;
  margin-top: 36px;
}
.intro-portrait > img {
  aspect-ratio: 0.89;
  object-fit: cover;
  object-position: 44% center;
  border-radius: 48% 48% 0 0;
}
.intro-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  margin-top: 17px;
}
.intro-portrait figcaption span {
  color: var(--muted);
  font-size: 9px;
}
.portrait-orbit {
  position: absolute;
  right: -35px;
  top: 20px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  transform: rotate(15deg);
}
.portrait-orbit svg {
  width: 45px;
  height: 48px;
}
.elements {
  background: var(--lavender);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading .eyebrow {
  margin-bottom: 25px;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 320px;
  padding-bottom: 8px;
}
.element-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.element-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.element-card > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 0.7s;
}
.element-card:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(21, 15, 25, 0.86),
    transparent 65%,
    rgba(21, 15, 25, 0.45)
  );
}
.element-card:hover > img {
  transform: scale(1.05);
}
.element-card-top,
.element-card-bottom {
  position: absolute;
  z-index: 1;
  left: 23px;
  right: 23px;
}
.element-card-top {
  top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.element-card-top > span:last-child {
  font-size: 28px;
}
.element-card-bottom {
  bottom: 27px;
}
.element-card h3 {
  font-size: 64px;
  color: var(--mist);
}
.element-card p {
  font-size: 10px;
  margin-top: 12px;
}
.circle-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #aaa;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 19px;
}
.element-card.earth img {
  object-position: 57%;
}
.performance {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 9vw;
  align-items: center;
  background: var(--ink);
  color: var(--mist);
}
.performance-photo {
  position: relative;
}
.performance-photo > img {
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: 55% center;
}
.performance-copy h2 {
  margin: 22px 0 25px;
}
.performance-copy h2 em {
  color: var(--lavender);
}
.performance-copy > p:not(.eyebrow) {
  font-size: 12px;
  color: #c9c2d2;
  max-width: 380px;
}
.performance-copy .text-link {
  margin: 20px 0 35px;
}
.play-link {
  display: flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  bottom: 27px;
  left: 27px;
  font-size: 11px;
}
.play-link > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--ink);
  border-radius: 50%;
  font-size: 32px;
}
.performance-detail {
  width: 58%;
  margin-left: auto;
}
.performance-detail img {
  aspect-ratio: 1.6;
  object-fit: cover;
}
.performance-detail figcaption {
  font-size: 8px;
  margin-top: 10px;
  color: #c9c2d2;
}
.quote-section {
  text-align: center;
  background: var(--lavender);
  padding: 90px 14vw;
}
.quote-section > span {
  font-family: var(--display);
  font-size: 70px;
  line-height: 1;
}
.quote-section blockquote {
  font-family: var(--display);
  font-size: clamp(31px, 3.7vw, 55px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 25px auto;
  max-width: 850px;
}
.quote-section .eyebrow {
  font-size: 9px;
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 23px;
  align-items: center;
}
.teaser-grid img {
  object-fit: cover;
  aspect-ratio: 0.75;
}
.teaser-grid a:nth-child(2) {
  margin-top: 70px;
}
.teaser-grid a:nth-child(2) img {
  aspect-ratio: 0.8;
}
.teaser-grid a:last-child {
  margin-top: -50px;
}
footer {
  background: var(--ink);
  color: var(--mist);
  padding: 0 6vw;
}
.footer-top {
  padding: 85px 0;
  position: relative;
}
.footer-top .eyebrow {
  color: var(--lavender);
  margin-bottom: 26px;
}
.footer-top h2 {
  font-size: clamp(53px, 7.5vw, 110px);
}
.footer-top .button {
  position: absolute;
  right: 0;
  bottom: 95px;
  background: var(--lavender);
  color: var(--ink);
}
.footer-top .button:hover {
  background: var(--mist);
}
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #514859;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  color: #c9c2d2;
}
.footer-name {
  font-family: var(--display);
  font-size: 22px;
  color: var(--mist);
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.footer-bottom small {
  font-size: 8px;
}
.page-heading {
  padding-top: 90px;
  padding-bottom: 65px;
}
.page-heading h1 {
  margin: 28px 0;
}
.page-heading > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
  font-size: 14px;
}
.elements-index {
  padding-top: 0;
}
.element-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  background: var(--lavender);
}
.element-hero > div {
  padding: 100px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.element-hero h1 {
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  font-size: clamp(92px, 11vw, 168px);
}
.element-hero h1 span {
  font-size: 65px;
  opacity: 0.55;
}
.element-subtitle {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.element-hero figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 730px;
}
.element-hero.fire {
  background: #edd0bd;
}
.element-hero.earth {
  background: var(--earth);
}
.element-hero.water {
  background: var(--water);
}
.element-hero.air {
  background: var(--lavender);
}
.element-hero.earth img {
  object-position: 33% center;
}
.element-hero.water img,
.element-hero.air img {
  max-height: 650px;
  object-position: center 35%;
}
.element-story,
.story-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
}
.big-symbol {
  font-family: var(--display);
  font-size: 140px;
  line-height: 1.2;
  display: block;
  margin-bottom: 30px;
}
.element-story aside .eyebrow {
  max-width: 180px;
}
.prose {
  max-width: 750px;
  font-size: 15px;
  line-height: 1.95;
  color: #4d4458;
}
.prose h3 {
  font-size: 43px;
  line-height: 1.1;
  color: var(--ink);
  margin: 45px 0 23px;
}
.prose h3:first-child {
  margin-top: 0;
}
.prose h4 {
  font-size: 17px;
  margin: 20px 0;
}
.prose p {
  margin: 0 0 25px;
}
.prose p:empty {
  display: none;
}
.prose p > a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose p > a > img {
  width: auto;
  max-width: 100%;
  float: right;
  margin: 4px 0 18px 25px;
}
.prose:after {
  content: "";
  display: block;
  clear: both;
}
.prose .button {
  margin-top: 25px;
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  background: var(--lavender);
  align-items: center;
}
.about-hero h1 {
  margin: 25px 0;
}
.about-hero p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
}
.about-hero figure img {
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: 57%;
  border-radius: 48% 48% 0 0;
}
.aside-statement {
  font-family: var(--display);
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-top: 30px;
}
.gallery-heading-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.gallery-heading-bottom p {
  color: var(--muted);
  font-size: 13px;
}
.gallery-heading-bottom > span {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.gallery-grid {
  padding-top: 0;
  columns: 3;
  column-gap: 22px;
}
.gallery-grid a {
  display: block;
  break-inside: avoid;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  background: var(--lavender);
}
.gallery-grid img {
  transition: transform 0.6s;
}
.gallery-grid a:hover img {
  transform: scale(1.03);
}
.gallery-grid a > span {
  position: absolute;
  bottom: 14px;
  right: 14px;
  border-radius: 50%;
  background: var(--mist);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-grid a:hover > span,
.gallery-grid a:focus > span {
  opacity: 1;
}
.film {
  padding-top: 0;
}
.film video {
  width: 100%;
  max-height: 78vh;
  background: var(--ink);
}
.film > p {
  font-size: 11px;
  margin-top: 18px;
}
.booking-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5vw;
  align-items: center;
  background: var(--lavender);
}
.booking-hero h1 {
  margin: 28px 0 40px;
  font-size: clamp(72px, 8.9vw, 130px);
}
.booking-hero > img {
  aspect-ratio: 0.88;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10vw;
  padding-top: 85px;
}
.contact-layout h1 {
  font-size: clamp(65px, 8vw, 120px);
  margin: 28px 0;
}
.contact-layout > div > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
}
.email-link {
  display: inline-block;
  font-size: 12px;
  border-bottom: 1px solid;
  margin: 28px 0;
}
.contact-layout > div > img {
  width: 160px;
  height: 195px;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 50% 50% 0 0;
}
.contact-layout form {
  background: var(--lavender);
  padding: 40px;
  height: fit-content;
}
.form-intro {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 32px;
}
.contact-layout label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 22px 0 7px;
}
.contact-layout label span {
  font-size: 9px;
  font-weight: 400;
}
.contact-layout input,
.contact-layout select,
.contact-layout textarea {
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #8e829e;
  padding: 9px 0 12px;
  border-radius: 0;
  font-size: 13px;
}
.contact-layout textarea {
  resize: vertical;
}
.form-note {
  font-size: 10px;
  color: #51465e;
  line-height: 1.8;
  margin: 20px 0;
}
.contact-layout .button {
  width: 100%;
}
#form-status {
  font-size: 11px;
}
.lightbox {
  position: fixed;
  inset: 0;
  border: 0;
  background: #211c29;
  color: white;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 65px 85px;
}
.lightbox::backdrop {
  background: var(--ink);
}
.lightbox[open] {
  display: grid;
  place-items: center;
}
.lightbox figure {
  max-height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox figure img {
  max-height: calc(100dvh - 165px);
  max-width: calc(100vw - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox figcaption {
  font-size: 11px;
}
.lightbox button {
  position: absolute;
  border: 1px solid #897f93;
  background: transparent;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 25px;
  display: grid;
  place-items: center;
}
.lightbox-close {
  right: 22px;
  top: 22px;
}
.lightbox-prev {
  left: 20px;
  top: 48%;
}
.lightbox-next {
  right: 20px;
  top: 48%;
}
.lightbox-count {
  position: absolute;
  bottom: 18px;
  text-align: center;
  font-size: 10px;
}
.hero-content {
  animation: rise-in 1s both;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(6vw, calc((100vw - 1400px) / 2));
    padding-right: max(6vw, calc((100vw - 1400px) / 2));
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 18px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero {
    min-height: 600px;
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero h1 {
    font-size: 13vw;
  }
  .hero h1 em {
    padding-left: 3vw;
  }
  .intro {
    gap: 7vw;
  }
  .element-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .element-card {
    min-height: 470px;
  }
  .element-card h3 {
    font-size: 75px;
  }
  .element-card p {
    font-size: 12px;
  }
  .element-card-top {
    font-size: 10px;
  }
  .performance {
    gap: 6vw;
  }
  .contact-layout {
    gap: 5vw;
  }
  .contact-layout form {
    padding: 28px;
  }
  .prose p > a > img {
    max-width: 50%;
  }
  .element-hero h1 span {
    font-size: 45px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .hero-side {
    display: none;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 75px;
  }
  .site-header {
    height: 80px;
    padding: 0 22px;
  }
  .brand {
    font-size: 30px;
    gap: 8px;
  }
  .brand-mark {
    width: 32px;
    height: 38px;
  }
  .brand-sub {
    font-size: 5.7px;
    margin-top: 6px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 0;
    background: none;
    padding: 10px 0 10px 10px;
    font-size: 12px;
    color: var(--ink);
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: var(--mist);
    padding: 24px;
    box-shadow: 0 15px 20px #211c2915;
  }
  .site-header nav.is-open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-header nav > a:not(.button) {
    padding: 13px 0;
    font-size: 16px;
  }
  .site-header nav > .button {
    margin-top: 15px;
  }
  .section {
    padding: 65px 24px;
  }
  .hero {
    min-height: 650px;
    height: calc(100svh - 80px);
    max-height: 820px;
  }
  .hero-image {
    width: 100%;
    object-position: 33% center;
  }
  .hero-shade {
    background:
      linear-gradient(0deg, #211c29ed, transparent 65%),
      linear-gradient(90deg, #211c2977, transparent),
      linear-gradient(180deg, #211c29aa, transparent 40%);
  }
  .hero-content {
    padding: 47px 24px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-bottom: 48px;
  }
  .hero h1 {
    font-size: clamp(70px, 16vw, 110px);
    line-height: 0.94;
  }
  .hero h1 em {
    padding-left: 0;
    white-space: nowrap;
    font-size: 0.93em;
  }
  .hero-bottom {
    margin-top: 34px;
    gap: 22px;
    justify-content: space-between;
    font-size: 11px;
    align-items: end;
  }
  .hero-bottom .button {
    padding: 12px 15px;
    gap: 18px;
  }
  .hero-scroll {
    left: 24px;
    bottom: 25px;
    gap: 40px;
    font-size: 8px;
  }
  .element-strip {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .element-strip a {
    padding: 19px 24px;
    border-bottom: 1px solid #bdb2ce;
    gap: 14px;
  }
  .element-strip a:first-child {
    border-left: 0;
  }
  .element-strip a:nth-child(2n) {
    border-right: 0;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .intro-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
  }
  .intro h2 {
    font-size: 61px;
  }
  .intro-portrait {
    width: 82%;
    margin: 0 auto;
  }
  .intro-portrait > img {
    aspect-ratio: 1;
  }
  .portrait-orbit {
    right: -23px;
    width: 75px;
    height: 75px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p,
  .section-heading > .text-link {
    margin-top: 25px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  .element-cards {
    gap: 13px;
  }
  .element-card {
    min-height: 320px;
  }
  .element-card-top {
    left: 15px;
    right: 15px;
    top: 16px;
    font-size: 7px;
    align-items: start;
  }
  .element-card-top > span:last-child {
    font-size: 22px;
  }
  .element-card-bottom {
    left: 15px;
    right: 15px;
    bottom: 20px;
  }
  .element-card h3 {
    font-size: 47px;
  }
  .element-card p {
    font-size: 8px;
    max-width: 100px;
  }
  .circle-arrow {
    width: 24px;
    height: 24px;
    top: 10px;
    font-size: 15px;
    right: -3px;
  }
  .performance {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .performance-photo > img {
    aspect-ratio: 0.95;
  }
  .performance-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
  }
  .performance-detail {
    width: 60%;
    margin-top: 10px;
  }
  .performance-copy h2 {
    font-size: 68px;
  }
  .quote-section {
    padding: 60px 26px;
  }
  .quote-section blockquote {
    font-size: 35px;
  }
  .teaser-grid {
    gap: 12px;
    grid-template-columns: 1fr 1fr;
  }
  .teaser-grid a:nth-child(2) {
    margin-top: 40px;
  }
  .teaser-grid a:last-child {
    display: none;
  }
  .footer-top {
    padding: 60px 0;
  }
  .footer-top .eyebrow {
    font-size: 8px;
  }
  .footer-top .button {
    position: static;
    margin-top: 30px;
  }
  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom > div {
    gap: 25px;
  }
  .page-heading h1 {
    font-size: 82px;
  }
  .element-hero {
    grid-template-columns: 1fr;
  }
  .element-hero > div {
    padding: 60px 24px;
  }
  .element-hero h1 {
    font-size: 110px;
    margin: 20px 0;
    justify-content: space-between;
  }
  .element-hero h1 span {
    font-size: 60px;
    padding-right: 20px;
  }
  .element-subtitle {
    font-size: 33px;
  }
  .element-hero figure {
    height: 390px;
  }
  .element-hero figure img {
    max-height: none;
    object-position: center 42%;
  }
  .element-story,
  .story-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .big-symbol {
    display: none;
  }
  .element-story aside .eyebrow {
    max-width: none;
  }
  .prose {
    font-size: 14px;
    line-height: 1.9;
  }
  .prose h3 {
    font-size: 38px;
  }
  .prose p > a > img {
    max-width: 40%;
    margin-left: 17px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero h1 {
    font-size: 95px;
  }
  .about-hero figure {
    width: 90%;
    margin-left: auto;
  }
  .aside-statement {
    display: none;
  }
  .gallery-heading-bottom {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .gallery-grid {
    columns: 2;
    column-gap: 12px;
    padding-top: 0;
  }
  .gallery-grid a {
    margin-bottom: 12px;
  }
  .film {
    padding-top: 0;
  }
  .booking-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-hero h1 {
    font-size: 80px;
  }
  .booking-hero > img {
    width: 88%;
    margin-left: auto;
    aspect-ratio: 1;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-layout h1 {
    font-size: 81px;
  }
  .contact-layout > div > img {
    display: none;
  }
  .contact-layout form {
    padding: 26px 22px;
  }
  .lightbox {
    padding: 70px 15px;
  }
  .lightbox figure img {
    max-width: calc(100vw - 30px);
    max-height: calc(100dvh - 205px);
  }
  .lightbox figcaption {
    font-size: 9px;
    text-align: center;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 30px;
  }
  .lightbox-prev {
    left: 24px;
  }
  .lightbox-next {
    right: 24px;
  }
  .lightbox-count {
    bottom: 39px;
  }
  .elements-index {
    padding-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 720px) {
  .element-hero h1 {
    font-size: clamp(72px, 23vw, 110px);
    gap: 10px;
  }
  .element-hero h1 span {
    font-size: 44px;
    padding-right: 0;
  }
  .booking-hero h1 {
    font-size: clamp(60px, 19vw, 80px);
  }
}

@media (max-width: 720px) {
  .hero-bottom .button.light { background: rgba(33, 28, 41, 0.78); }
}
