/* Root Variables */
:root {
  --color-bg-dark: #000000;
  --color-accent: #888888;
  --color-text-light: #ffffff;
  --color-overlay: rgba(0, 0, 0, 0.55);
  --font-serif: "Playfair Display", serif;
  --font-sans: "Open Sans", sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-blur: 10px;
  --transition-speed: 0.45s;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

a {
  color: var(--color-text-light);
  text-decoration: none;
  transition:
    color var(--transition-speed),
    border-color var(--transition-speed);
}

a:hover {
  color: var(--color-accent);
}

/* Utility Classes */
.diagonal-slide {
  opacity: 0;
  transform: translate(-40px, 40px);
  transition:
    opacity var(--transition-speed),
    transform var(--transition-speed);
}

.diagonal-slide.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity var(--transition-speed),
    transform var(--transition-speed);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  /* width: 100px; */
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--color-text-light);
  cursor: pointer;
  transition:
    background var(--transition-speed),
    border-color var(--transition-speed),
    transform var(--transition-speed);
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition-speed),
    opacity var(--transition-speed);
}

.menu-toggle.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.nav-links a {
  margin: 0 1rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
}

.nav-links a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-text-light);
  background: #000000;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1.2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: var(--color-accent);
}

/* About Me Section */
.about-me {
  position: relative;
  min-height: 70vh;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  background: url("../assets/landscape.jpg") center / cover no-repeat fixed;
}

.about-me::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58));
  z-index: 0;
}

.about-me-overlay {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: var(--color-overlay);
  padding: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-me-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.about-headshot {
  width: 220px;
  height: 220px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-me-copy {
  max-width: 750px;
  margin-top: 30px;
  text-align: center;
}

.about-me-copy h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-me-copy p {
  margin: 0;
}

/* Art Feature Section */
.art-feature {
  position: relative;
  min-height: 90vh !important;
  padding: 5rem 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.62)),
    url("../assets/act-2.jpeg") center 80% / cover no-repeat;
}

.art-feature::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.art-feature-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(2rem, 6vw, 3.6rem);
  /* background: rgba(8, 8, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px); */
}

.art-feature h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
}

.art-feature p:last-child {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  font-size: 1.02rem;
}

/* Acts Section */
.acts-shell {
  max-width: 1240px;
  position: relative;
  z-index: 1;
}

.acts-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.acts-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/act-9.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.acts-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.act-row {
  display: flex;
  align-items: stretch;
}

.act-row:nth-child(even) {
  flex-direction: row-reverse;
}

.act-media {
  flex: 0 0 56%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.act-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 6 / 4;
  object-fit: cover;
  /* filter: grayscale(100%); */
}

.act-content {
  flex: 1;
  padding: 1.45rem;
  text-align: left;
  background: rgba(17, 17, 17, 0.63);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.act-content h2 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.act-content p {
  margin: 0;
  color: var(--color-accent);
}

.act-buttons {
  margin-top: 1.15rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.watch-video-btn {
  font: inherit;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition:
    background var(--transition-speed),
    border-color var(--transition-speed),
    color var(--transition-speed);
}

.watch-video-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-panel {
  width: min(960px, 100%);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.65);
  color: var(--color-text-light);
  cursor: pointer;
}

.video-modal-frame-wrap {
  aspect-ratio: 16 / 9;
}

.video-modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery Section */
.gallery-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("../assets/act-16.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-shell {
  max-width: 1240px;
  overflow-x: clip;
}

.gallery-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}

.gallery-item.diagonal-slide {
  opacity: 0;
  transform: translateY(36px);
}

.gallery-item.diagonal-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    transform var(--transition-speed),
    border-color var(--transition-speed);
}

.gallery-photo:hover,
.gallery-photo.touch-pop,
.gallery-photo:active {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.88);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3600;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 1rem;
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox-panel {
  width: min(1100px, 96vw);
  max-height: 92vh;
  position: relative;
}

.gallery-lightbox-image {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 260ms ease;
}

.gallery-lightbox-image.is-fading {
  animation: lightbox-fade-in 320ms ease;
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0.28;
  }
  to {
    opacity: 1;
  }
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.65);
  color: var(--color-text-light);
  cursor: pointer;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.9rem;
  height: 3.7rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--transition-speed),
    background-color var(--transition-speed),
    transform var(--transition-speed);
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 0.65rem;
}

.gallery-lightbox-next {
  right: 0.65rem;
}

/* References Section */
.references-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.74)),
    url("../assets/act-3.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.references-shell {
  max-width: 1200px;
  text-align: center;
  display: grid;
  gap: 2rem;
}

.references-hero {
  max-width: 760px;
  text-align: center;
  justify-self: center;
}

.references-intro {
  margin: 1rem 0 0;
}

.references-history {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 760px;
  width: 100%;
  justify-self: center;
}

.history-column {
  padding: 1.5rem;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  text-align: center;
}

.history-column h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.history-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.9rem 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
}

.history-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.history-year {
  font-weight: 700;
  color: var(--color-text-light);
}

.history-detail {
  color: rgba(255, 255, 255, 0.78);
}

.references-section-heading {
  margin-bottom: 1rem;
}

.references-section-heading h2 {
  margin: 0.25rem 0 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
}

.references-awards {
  padding: 1.6rem;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  /* box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28); */
  max-width: 760px;
  width: 100%;
  justify-self: center;
}

.awards-list {
  display: grid;
  gap: 0.85rem;
}

.award-item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: baseline;
  padding: 0.9rem 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
  font-weight: 600;
}

.award-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.award-year,
.award-title {
  color: var(--color-text-light);
}

.award-festival,
.award-divider {
  color: rgba(255, 255, 255, 0.74);
}

.references-logos {
  padding: 1.6rem;
  background: rgba(10, 10, 10, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  max-width: 1080px;
  width: 100%;
  justify-self: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.logo-item {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(240, 240, 240, 0.5);
}

.logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform var(--transition-speed);
}

.logo-item:hover img,
.logo-item:focus-within img {
  transform: translateY(-2px);
}

/* Contact Page */
.contact-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.74)),
    url("../assets/landscape.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-shell {
  max-width: 980px;
  text-align: center;
  display: grid;
  gap: 1.75rem;
}

.contact-hero {
  max-width: 760px;
  justify-self: center;
}

.contact-intro {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form-wrap {
  width: 100%;
  display: grid;
  justify-items: center;
}

.contact-form-box {
  width: min(760px, 100%);
  padding: 1.8rem;
  background: rgba(17, 17, 17, 0.64);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

#contact-page-success {
  margin-top: 0.9rem;
}

.contact-direct {
  width: min(760px, 100%);
  justify-self: center;
  padding: 1.6rem;
  background: rgba(10, 10, 10, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-email-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-email {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Impressum Page */
.impressum-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.78)),
    url("../assets/landscape.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.impressum-shell {
  max-width: 820px;
}

.impressum-block {
  padding: 1.45rem;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.impressum-block h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.impressum-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Global Contact Section */
#global-contact {
  padding: 2rem 1rem 3.2rem;
}

.global-contact-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.64);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
}

.global-contact-box h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.global-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
  transition: opacity var(--transition-speed);
}

.global-contact-form.is-fading {
  opacity: 0;
}

.global-contact-form input,
.global-contact-form textarea,
.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--color-text-light);
  font: inherit;
  padding: 0.65rem 0.75rem;
}

.global-contact-form input::placeholder,
.global-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.ghost-button {
  width: fit-content;
  align-self: center;
  font: inherit;
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition:
    background var(--transition-speed),
    color var(--transition-speed),
    border-color var(--transition-speed);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-text-light);
}

.ghost-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.72);
}

.hidden-success {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-speed);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.65);
  padding: 0.85rem;
  margin-top: 1rem;
}

.show-message {
  opacity: 1;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  background-color: #111111;
  opacity: 1;
  transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.page-shell {
  min-height: calc(100vh - 170px);
  padding: 8rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-shell p {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    margin: 0 0.45rem;
    font-size: 0.95rem;
  }

  .act-row,
  .act-row:nth-child(even) {
    flex-direction: column;
  }

  .act-media {
    flex: auto;
    width: 100%;
  }

  .act-media.diagonal-slide {
    opacity: 1;
    transform: none;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.85rem 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 5rem 1.5rem 1.75rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
    text-align: center;
    z-index: 1001;
  }

  .nav-links.is-active {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    margin: 0;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }

  .about-me {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .about-me-overlay {
    padding: 1.6rem;
  }

  .about-me-layout {
    text-align: center;
  }

  .about-headshot {
    width: 220px;
    height: 220px;
  }

  .art-feature {
    min-height: 55vh;
    padding: 4rem 1rem;
    background-position: center;
  }

  .art-feature::before {
    inset: 0.85rem;
  }

  .art-feature-content {
    padding: 1.7rem;
  }

  .contact-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form-box,
  .contact-direct {
    padding: 1.25rem;
  }

  .references-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .award-item {
    gap: 0.35rem;
  }

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

  .gallery-item.portrait-item,
  .gallery-item.landscape-item {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-photo {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .gallery-lightbox-nav {
    width: 2.45rem;
    height: 3.2rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 720px) {
  .navbar {
    justify-content: space-between;
  }

  .acts-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .act-buttons {
    flex-direction: column;
  }

  .ghost-button {
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .history-column,
  .references-awards,
  .references-logos {
    padding: 1.15rem;
  }

  .history-item {
    flex-direction: column;
    gap: 0.1rem;
  }

  .history-year {
    min-width: 0;
  }

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

  .gallery-item,
  .gallery-item.portrait-item,
  .gallery-item.landscape-item,
  .gallery-item.hero-shot {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-photo {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .gallery-lightbox-prev {
    left: 0.35rem;
  }

  .gallery-lightbox-next {
    right: 0.35rem;
  }
}
