:root {
  --bg: #f3efe6;
  --bg-deep: #1a1612;
  --paper: #fbf7f0;
  --ink: #1a1612;
  --muted: #6a6358;
  --line: #ddd4c4;
  --gold: #b08d57;
  --gold-deep: #8c6a34;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 6rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

body {
  margin: 0;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.125rem;
  overflow-x: hidden;
}

body:not(.home) {
  background: var(--bg);
}

body.interior.events-page {
  background: var(--paper);
  background-image: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

h1,
h2,
h3,
.logo,
.nav a,
.btn,
.kicker,
.meta {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

a {
  color: var(--gold-deep);
}

.wrap,
.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.narrow {
  max-width: 740px;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.page-intro {
  padding: 2.25rem 0 0.75rem;
}

.contact-page-intro {
  padding-bottom: 0;
}

/* Homepage photo background */
.home .site-header {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.home .logo,
.home .logo span,
.home .nav a,
.home .nav a.is-active,
.home .nav a:hover {
  color: #fbf7f0;
}

.home .header-inner {
  justify-content: flex-end;
}

.home .hero-layout {
  transform: translateY(-2rem);
}

.home .logo span,
.home .nav a {
  color: rgba(251, 247, 240, 0.78);
}

.home .nav a.is-active,
.home .nav a:hover {
  color: #fbf7f0;
}

.hero-photo {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 9rem 0 5rem;
  background-color: #1a1612;
  background-image:
    linear-gradient(90deg, rgba(26, 22, 18, 0.55) 0%, rgba(26, 22, 18, 0.18) 42%, rgba(26, 22, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(26, 22, 18, 0.12) 0%, rgba(26, 22, 18, 0.28) 70%, rgba(26, 22, 18, 0.5) 100%),
    url("../images/reece.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-reverse-video {
  opacity: 0;
  pointer-events: none;
}

.hero-reverse-video.is-active {
  opacity: 1;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(26, 22, 18, 0.62) 0%, rgba(26, 22, 18, 0.2) 44%, rgba(26, 22, 18, 0.05) 100%);
  pointer-events: none;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(251, 247, 240, 0.3);
  overflow: hidden;
}

.hero-video-stack {
  position: absolute;
  top: calc(50% + 3rem);
  right: 0;
  width: min(21vw, 300px);
  display: grid;
  gap: 0.75rem;
  transform: translateY(-50%);
}

.hero-spotify {
  width: 100%;
  height: 352px;
  overflow: hidden;
  order: -1;
}

.hero-layout {
  display: block;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  width: auto;
  margin-left: clamp(1rem, 4vw, 4rem);
  margin-right: 0;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
}

.hero-copy {
  max-width: 31rem;
  margin-left: 0;
  margin-right: auto;
}

.hero-photo .kicker {
  color: #e8dfd0;
  display: inline-block;
  padding-right: 1.2rem;
  border-right: 2px solid rgba(232, 223, 208, 0.5);
  margin-right: 1.2rem;
}

.hero-photo .lede {
  color: #e8dfd0;
  display: block;
  border-top: 2px solid rgba(232, 223, 208, 0.5);
  padding-top: 1rem;
  margin-top: 1rem;
}

.hero-photo h1 {
  color: #fbf7f0;
}

.hero.hero-photo h1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(3.8rem, 6vw, 5.4rem);
}

.hero-photo h1 img {
  width: 9.7rem;
  height: 9.7rem;
  flex: 0 0 9.7rem;
  object-fit: cover;
  border: 2px solid rgba(251, 247, 240, 0.8);
  border-radius: 50%;
}

.hero-photo h1 > .hero-name {
  display: flex;
  flex-direction: column;
  white-space: normal;
  line-height: 0.9;
}

.hero-photo .btn-primary {
  background: transparent;
  border: 1px solid #fbf7f0;
  color: #fbf7f0;
}

.hero-photo .btn-ghost {
  border-color: #fbf7f0;
  color: #fbf7f0;
}

.hero-photo .btn-primary:hover {
  background: rgba(251, 247, 240, 0.14);
}

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

@media (max-width: 1050px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 15;
    background: rgba(26, 22, 18, 0.42);
  }
}

.header-inner {
  width: min(1600px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 92px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 2rem;
  white-space: nowrap;
}

.logo img {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  object-fit: cover;
  border-radius: 50%;
}

.logo span {
  display: block;
  font-weight: 400;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  color: var(--gold-deep);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.75rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a + a {
  padding-left: 0.75rem;
}

.nav a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0.8em;
  background: currentColor;
  opacity: 0.45;
  transform: translateY(-50%);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1,
.hero-photo h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(3.8rem, 7vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}

.hero-photo .kicker,
.hero-photo .lede {
  color: #e8dfd0;
}

.hero-actions {
  display: none;
}

.hero-note {
  margin: 1.25rem 0 0;
  color: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(110deg, #e8dfd0 0%, #e8dfd0 34%, #fff 47%, #fff8e9 53%, #e8dfd0 66%, #e8dfd0 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: hero-note-shimmer 9s ease-in-out infinite;
}

.hero-note span {
  display: block;
}

@keyframes hero-note-shimmer {
  0%,
  52% {
    background-position: 100% 0;
  }

  76%,
  100% {
    background-position: 0 0;
  }
}

.mailing-list-block {
  position: absolute;
  left: 0;
  bottom: -1.25rem;
  z-index: 2;
}

@media (min-width: 901px) {
  .hero-layout {
    align-self: stretch;
    min-height: calc(100vh - 14rem);
  }

  .hero-note {
    font-size: clamp(1.35rem, 1.9vw, 1.8rem);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-note {
    color: #e8dfd0;
    background: none;
    animation: none;
  }
}

.mailing-list-label {
  margin: 1.1rem 0 0.75rem;
  color: rgba(251, 247, 240, 0.98);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mailing-list-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8.2rem, 10rem);
  gap: 0.8rem;
  max-width: 32rem;
  align-items: stretch;
}

.mailing-list-form input {
  min-width: 0;
  min-height: 3.7rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(251, 247, 240, 0.8);
  background: rgba(26, 22, 18, 0.42);
  color: #fbf7f0;
  font: inherit;
  font-size: 1.05rem;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mailing-list-form input:focus {
  border-color: rgba(251, 247, 240, 1);
  box-shadow: 0 0 0 3px rgba(251, 247, 240, 0.12);
  background: rgba(26, 22, 18, 0.5);
  outline: none;
}

.mailing-list-form input::placeholder {
  color: rgba(251, 247, 240, 0.72);
}

.mailing-list-form .button {
  min-height: 3.7rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(251, 247, 240, 0.9);
  background: rgba(251, 247, 240, 0.98);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mailing-list-form .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.mailing-list-form .button:disabled {
  opacity: 0.82;
  cursor: wait;
}

.mailing-list-form .form-status {
  grid-column: 1 / -1;
  min-height: 2.2rem;
  margin: 0.35rem 0 0;
  color: #fbf7f0;
  font-size: 1.05rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mailing-list-form .form-status.is-error {
  color: #ffd8d8;
}

.portrait {
  margin: 0;
  background: var(--bg-deep);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(26, 22, 18, 0.18);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.portrait figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  color: #d7cbb8;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 1.35rem;
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: #000;
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.contact-section {
  padding-top: 0.75rem;
}

.section h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.card h3,
.card h2 {
  margin: 0 0 0.65rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.artwork-item {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  min-width: 0;
  max-width: 100%;
  cursor: pointer;
}

.artwork-item:hover {
  box-shadow: 0 4px 12px rgba(26, 22, 18, 0.15);
}

.artwork-figure {
  margin: 0;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
}

.artwork-figure::after {
  content: "Reece Music ©";
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.7);
  background: rgba(26, 22, 18, 0.18);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  pointer-events: none;
}

.artwork-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image {
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-hero-image {
  height: 500px;
}

.about-content {
  max-width: 40rem;
  padding-top: 1.5rem;
}

.about-full-image {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}

.section.about-photo-section {
  padding-top: 1rem;
}

.section.about-intro-section {
  padding-bottom: 0;
}

.about-photo-section .about-full-image {
  margin-top: 0;
}

.about-full-image img {
  filter: grayscale(100%);
}

.contact-image {
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-image-intro {
  height: 100%;
}

.contact-image-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  min-height: 590px;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--bg-deep);
  isolation: isolate;
}

.contact-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18, 15, 13, 0.95) 0%, rgba(18, 15, 13, 0.82) 55%, rgba(18, 15, 13, 0.52) 100%);
}

.contact-section-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.contact-layout .hero-background-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-details {
  margin-top: 0.25rem;
  color: #fbf7f0;
}

.contact-details p {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  margin: 0 0 0.8rem;
}

.contact-details a {
  color: #f0d49c;
}

.contact-form {
  margin-top: 0.1rem;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fbf7f0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(251, 247, 240, 0.42);
  background: #fff;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .contact-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-form .contact-check input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  display: block;
  margin-top: 0.25rem;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid var(--gold-deep);
  background: var(--gold-deep);
  color: #fff;
  cursor: pointer;
}

.form-status {
  min-height: 1.5em;
  margin: 0.25rem 0 0;
  color: var(--gold-deep);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #f0b8a8;
}

.not-found {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(3rem, 10vw, 8rem) 0;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 1rem;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
}

.not-found p {
  margin: 0 auto 1.75rem;
  color: var(--muted);
}

.tickettailor-embed {
  margin: 1.5rem 0 4rem;
  width: 100%;
  padding: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.tickettailor-embed .tt-widget,
.tickettailor-embed .tt-widget > div,
.tickettailor-embed .tt-widget iframe,
.tickettailor-embed .tt-widget script {
  width: 100% !important;
  min-height: 360px !important;
}

.tickettailor-embed .tt-widget,
.tickettailor-embed .tt-widget * {
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif !important;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.3rem 0 0.1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    font-size: 1.1rem;
    padding-left: 0;
  }

  .nav a + a::before {
    display: none;
  }

  .hero-photo {
    min-height: 80vh;
    padding-top: 7rem;
  }

  .hero-video-stack {
    position: static;
    width: min(100%, 540px);
    margin-top: 2rem;
    transform: none;
  }

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

  .grid-3,
  .grid-2,
  .about-layout,
  .intro-with-image,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    min-height: 0;
    padding: 2rem 1.25rem 2.5rem;
  }

  .contact-layout::after {
    background: linear-gradient(180deg, rgba(18, 15, 13, 0.88) 0%, rgba(18, 15, 13, 0.72) 100%);
  }

  .contact-details p {
    font-size: 1.35rem;
  }

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

  .event p:not(.meta) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .project-sidebar {
    position: static;
  }

  .project-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.3rem 0 0.1rem;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .wrap {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .project-sidebar nav {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .artwork-item {
    width: 100%;
    border-radius: 0.8rem;
  }

  .artwork-figure {
    height: clamp(220px, 52vw, 300px);
  }

  .artwork-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .artwork-info {
    padding: 0.9rem 0.95rem 1rem;
  }

  .artwork-info h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
  }

  .price {
    font-size: 0.95rem;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    width: min(92vw, 440px);
  }

  .lightbox-panel img {
    height: 52vh;
  }

  .lightbox-meta {
    padding: 1rem 1rem 1.25rem;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }

  .logo span {
    letter-spacing: 0.12em;
    font-size: 0.58rem;
  }

  .hero,
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-photo {
    min-height: 72vh;
    padding: 6rem 0 2.5rem;
  }

  .hero-photo h1,
  .hero h1 {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
  }

  .lede {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-content {
    padding-top: 0;
  }

  .contact-details p {
    font-size: 1.15rem;
  }

  .card,
  .event {
    padding: 1.15rem;
  }

  .about-hero-image {
    height: min(500px, 110vw);
  }

  .contact-form {
    max-width: none;
  }
}

.tickettailor-embed .tt-widget a,
.tickettailor-embed .tt-widget button,
.tickettailor-embed .tt-widget input,
.tickettailor-embed .tt-widget select,
.tickettailor-embed .tt-widget label {
  font-size: 1.08rem !important;
}

.tickettailor-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  background: #fff;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 10, 0.8);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 92vw);
  background: rgba(251, 247, 240, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  overflow: hidden;
}

.lightbox-panel img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  display: block;
  background: var(--bg);
}

.lightbox-meta {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.lightbox-meta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.lightbox-meta p {
  margin: 0;
  color: var(--gold-deep);
  font-size: 1.2rem;
  font-weight: 700;
}

.lightbox-close,
.lightbox-back {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font: inherit;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: rgba(251, 247, 240, 0.9);
  font-size: 1.7rem;
  line-height: 1;
  z-index: 2;
}

body.lightbox-open {
  overflow: hidden;
}

.artwork-info {
  padding: 1rem 1.25rem;
}

.artwork-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.price {
  color: var(--gold-deep);
  font-weight: bold;
  margin: 0;
}

.event,
.project-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.event {
  grid-template-columns: 180px minmax(0, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem 1.5rem;
}

.past-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  max-width: 760px;
  margin-inline: auto;
}

.past-events .event {
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.past-events .event h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.past-events .event .meta {
  margin: 0;
  font-size: 0.72rem;
}

.section-links {
  padding-top: 1rem;
}

.section-links .card {
  border-top: 3px solid var(--gold);
}

.project-sidebar {
  position: sticky;
  top: 6rem;
}

.project-sidebar nav {
  display: grid;
  gap: 0.7rem;
}

.project-jump {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.project-jump.is-active,
.project-jump:hover {
  background: #efe6d4;
  border-color: var(--gold-deep);
}

.project-list {
  display: grid;
  gap: 1rem;
}

.project-item {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.project-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1.2rem 1.25rem;
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-toggle::after {
  content: "−";
  font-size: 1.7rem;
  color: var(--gold-deep);
}

.project-item:not(.is-open) .project-toggle::after {
  content: "+";
}

.project-content {
  max-height: 1200px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem 1.25rem;
}

.project-item:not(.is-open) .project-content {
  max-height: 0;
  padding: 0 1.25rem;
}

.project-content p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.record {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.2rem 1.25rem;
  font-size: 1.1rem;
}

.meta {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 0.4rem;
}

.event h3,
.record h3,
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
}

.event p:not(.meta) {
  grid-column: 2;
  margin-top: 0;
}

.event p,
.record p,
.card p {
  font-size: 1.08rem;
  line-height: 1.7;
}

.quote {
  font-size: 1.25rem;
  font-style: italic;
  margin: 0;
}

.notice {
  background: #efe6d4;
  border: 1px solid #e0d2b6;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}

.contact-list {
  padding-left: 1.1rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.4rem;
  color: var(--muted);
  font-size: 1.2rem;
}

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

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

.site-footer p,
.site-footer a {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

main.section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

@media (max-width: 860px) {
  .hero,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0 1rem;
  }

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .project-layout {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-video-stack {
    width: min(100%, 340px);
    margin-inline: auto;
  }

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

  .event p:not(.meta) {
    grid-column: auto;
  }
}

/* Small-screen layout corrections */
@media (max-width: 640px) {
  .wrap,
  .header-inner {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    min-height: 64px;
    padding: 0.65rem 0;
  }

  .logo {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.05rem;
  }

  .logo img {
    width: 1.9rem;
    height: 1.9rem;
    flex-basis: 1.9rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 2.6rem;
    height: 2.6rem;
  }

  .home .menu-toggle {
    border-color: rgba(251, 247, 240, 0.55);
  }

  .home .menu-toggle span {
    background: #fbf7f0;
  }

  .nav {
    flex-basis: 100%;
    gap: 0;
    padding: 0.5rem 0 0;
  }

  .nav.is-open {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0.85rem 0.35rem;
    background: var(--paper);
    box-shadow: 0 0.75rem 1.5rem rgba(26, 22, 18, 0.2);
  }

  .home .nav.is-open {
    background: rgba(26, 22, 18, 0.96);
  }

  .nav a {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .home .nav a {
    border-bottom-color: rgba(251, 247, 240, 0.2);
  }

  .hero-photo {
    min-height: auto;
    padding: 4rem 0 3rem;
    background-position: 62% top;
  }

  .home .hero-layout {
    transform: none;
  }

  .hero-background-video {
    inset: 0 0 auto;
    height: 100svh;
    object-position: 20% top;
  }

  .hero-layout {
    display: block;
    flex: 0 1 auto;
    width: min(var(--max), calc(100% - 1.5rem));
    margin-inline: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero.hero-photo h1,
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .hero-photo h1 {
    gap: 0.7rem;
  }

  .hero-photo h1 img {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
  }

  .lede {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .mailing-list-form {
    max-width: none;
  }

  .mailing-list-block {
    position: static;
    margin-top: 1.1rem;
  }

  .mailing-list-label {
    margin-top: 0;
  }

  .hero-actions {
    display: none;
  }

  .btn {
    padding: 0.85rem 1rem;
  }

  .hero-video-stack {
    width: 100%;
    margin-top: 2.25rem;
  }

  .hero-video {
    aspect-ratio: 16 / 9;
  }

  .hero-spotify {
    height: 280px;
  }

  .section h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-footer,
  .site-footer p,
  .site-footer a {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .hero-photo {
    min-height: calc(100svh + 45rem);
  }

  .hero-layout {
    align-self: flex-start;
  }

  .hero-video-stack {
    position: absolute;
    top: calc(78svh + 1rem);
    left: 50%;
    right: auto;
    width: min(70vw, 300px);
    margin-top: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .hero-note {
    font-size: 1rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .hero-note span {
    display: inline;
  }

  .hero-note span + span::before {
    content: " ";
  }

  .hero-photo h1 > .hero-name {
    flex-direction: row;
    gap: 0.35em;
    white-space: nowrap;
  }

  .mailing-list-block {
    position: absolute;
    left: 0;
    width: 100%;
    margin-top: 0;
    bottom: auto;
    top: calc(78svh + 1rem);
    transform: translateY(calc(-100% - 0.5rem));
  }
}
