:root {
  --black: #07060b;
  --black-soft: #0d0910;
  --plum: #180a19;
  --plum-2: #22101f;
  --wine: #351128;
  --wine-light: #551a3c;
  --gold: #d6aa55;
  --gold-light: #eacb83;
  --gold-soft: rgba(214, 170, 85, 0.15);
  --gold-border: rgba(214, 170, 85, 0.38);
  --cream: #f2e9dc;
  --cream-soft: #d7cdc4;
  --muted: #a99ea0;
  --white: #fffdf9;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max-width: 1500px;
  --page-padding: clamp(22px, 5vw, 78px);
  --section-space: clamp(85px, 9vw, 150px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--gold);
  color: #111;
}

.page {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 5%, rgba(124, 34, 87, 0.16), transparent 30%),
    var(--black);
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--page-padding);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
  background: rgba(7, 6, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214, 170, 85, 0.13);
}

.logo {
  justify-self: start;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
}

.nav a {
  position: relative;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
}

.nav a.active {
  color: var(--gold-light);
}

.header-book {
  justify-self: end;
  padding: 15px 27px;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17100b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-book:hover,
.header-book:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(214, 170, 85, 0.2);
}

.mobile-menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--cream);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  padding: 110px var(--page-padding) 40px;
  background: rgba(7, 6, 11, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  animation: menu-reveal 0.24s ease both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2rem;
  text-decoration: none;
}

.mobile-menu .mobile-book {
  color: var(--gold-light);
}

@keyframes menu-reveal {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64%;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image-settle 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-image-settle {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 6, 11, 1) 0%,
      rgba(7, 6, 11, 0.98) 24%,
      rgba(7, 6, 11, 0.84) 41%,
      rgba(7, 6, 11, 0.44) 58%,
      rgba(7, 6, 11, 0.06) 82%
    ),
    linear-gradient(0deg, rgba(7, 6, 11, 0.4) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(680px, 50vw);
  margin-top: 70px;
  margin-left: var(--page-padding);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title {
  display: flex;
  overflow: hidden;
  margin: 0 0 36px -5px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(6rem, 11vw, 11.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.72;
}

.hero-title span {
  display: inline-block;
  animation: title-drop 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title span:nth-child(2) {
  animation-delay: 0.29s;
}

.hero-title span:nth-child(3) {
  animation-delay: 0.38s;
}

.hero-title span:nth-child(4) {
  animation-delay: 0.47s;
}

.hero-title span:nth-child(5) {
  animation-delay: 0.56s;
}

.hero-title span:nth-child(6) {
  animation-delay: 0.65s;
}

.hero-title span:nth-child(7) {
  animation-delay: 0.74s;
}

@keyframes title-drop {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero-description {
  max-width: 500px;
  color: var(--cream-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button-primary,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #16100b;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(214, 170, 85, 0.18);
}

.button-outline {
  border-color: var(--gold-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--cream);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(214, 170, 85, 0.08);
  transform: translateY(-2px);
}

.button-outline[hidden] {
  display: none;
}

.arrow-icon {
  display: inline-block;
  width: 16px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewX(28deg);
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 21px solid currentColor;
}

.play-icon.small {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 10px;
}

.hero-credits {
  position: absolute;
  z-index: 6;
  right: var(--page-padding);
  bottom: 36px;
  left: var(--page-padding);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 15px;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-credits span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 15px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.about-section {
  padding: calc(var(--section-space) * 0.85) var(--page-padding);
  background: linear-gradient(135deg, #0b070c, #170917 70%, #0b070c);
  border-top: 1px solid rgba(214, 170, 85, 0.18);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.showreel-copy h2,
.booking-heading h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.about-copy p:not(.eyebrow),
.showreel-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--cream-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy p:not(.eyebrow) {
  margin: 26px 0 0;
}

.about-copy .button-outline {
  margin-top: 30px;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--gold-border);
}

.stage-section {
  position: relative;
  padding: calc(var(--section-space) * 0.68) 0 var(--section-space);
  background:
    radial-gradient(circle at 0% 50%, rgba(126, 23, 88, 0.15), transparent 24%),
    linear-gradient(180deg, #120a13, #0d0710);
  border-top: 1px solid rgba(214, 170, 85, 0.18);
  border-bottom: 1px solid rgba(214, 170, 85, 0.18);
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 34px;
  padding: 0 var(--page-padding);
  gap: 30px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.circle-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  transition: background 0.25s ease, transform 0.25s ease;
}

.circle-button:hover,
.circle-button:focus-visible {
  background: var(--gold-soft);
  transform: scale(1.05);
}

.chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.chevron.left {
  transform: rotate(-135deg);
}

.chevron.right {
  transform: rotate(45deg);
}

.event-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(var(--page-padding), calc((100vw - var(--max-width)) / 2));
  scrollbar-width: none;
}

.event-track::-webkit-scrollbar {
  display: none;
}

.event-card {
  position: relative;
  flex: 0 0 clamp(285px, 26vw, 390px);
  height: clamp(430px, 52vw, 560px);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  background: #151015;
  cursor: pointer;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.event-card:hover img,
.event-card:focus-within img {
  filter: saturate(1.1);
  transform: scale(1.07);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 6, 11, 0.23) 58%, rgba(7, 6, 11, 0.94) 100%);
}

.event-info {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  transition: transform 0.35s ease;
}

.event-card:hover .event-info,
.event-card:focus-within .event-info {
  transform: translateY(-6px);
}

.event-label {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-info h3 {
  max-width: 320px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 500;
  line-height: 0.95;
}

.event-info p {
  margin: 7px 0 0;
  color: var(--cream-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.event-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showreel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 650px;
  background:
    radial-gradient(circle at 70% 45%, rgba(105, 31, 87, 0.18), transparent 38%),
    #0b070c;
  border-bottom: 1px solid rgba(214, 170, 85, 0.18);
}

.showreel-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.showreel-visual img,
.showreel-visual video,
.showreel-visual iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.showreel-visual video,
.showreel-visual iframe {
  border: 0;
  background: #050407;
}

.showreel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 50%, rgba(11, 7, 12, 0.25)),
    linear-gradient(0deg, rgba(11, 7, 12, 0.35), transparent 40%);
}

.showreel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 110px) var(--page-padding);
  background: linear-gradient(135deg, rgba(46, 13, 40, 0.2), transparent);
}

.showreel-copy p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 420px;
}

.showreel-copy .button-outline {
  align-self: flex-start;
  margin-top: 30px;
}

.booking-section {
  position: relative;
  padding: calc(var(--section-space) * 0.7) var(--page-padding) calc(var(--section-space) * 0.6);
  background:
    radial-gradient(circle at 95% 30%, rgba(114, 27, 81, 0.25), transparent 28%),
    linear-gradient(135deg, #160a17, #120812);
}

.booking-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.booking-heading {
  margin-bottom: 48px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.booking-type {
  position: relative;
  min-height: 270px;
  padding: 34px 27px;
  overflow: hidden;
  border-right: 1px solid var(--gold-border);
  transition: background 0.35s ease;
}

.booking-type:last-child {
  border-right: none;
}

.booking-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(214, 170, 85, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.booking-type:hover::before {
  opacity: 1;
}

.booking-type:hover {
  background: rgba(214, 170, 85, 0.025);
}

.booking-number {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.booking-type h3 {
  position: relative;
  z-index: 2;
  margin: 55px 0 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.booking-type p {
  position: relative;
  z-index: 2;
  margin: 15px 0 0;
  color: var(--cream-soft);
  font-size: 0.87rem;
  line-height: 1.65;
}

.trusted-section {
  overflow: hidden;
  padding: 29px 0;
  border-bottom: 1px solid var(--gold-border);
  background: #0c070d;
}

.trusted-label {
  padding: 0 var(--page-padding) 20px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(55px, 7vw, 120px);
  width: max-content;
  animation: marquee 32s linear infinite;
}

.logo-track span {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.75rem);
  letter-spacing: 0.03em;
  opacity: 0.58;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.logo-track span:hover {
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.final-cta {
  padding: clamp(52px, 6vw, 86px) var(--page-padding);
  background: linear-gradient(110deg, #44132f, #220b1c 55%, #12070f);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 40px;
}

.final-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta p {
  margin: 9px 0 0;
  color: var(--cream-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px var(--page-padding);
  background: #07060b;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.modal-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 25px;
  background: rgba(4, 3, 6, 0.9);
  backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(1100px, 100%);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid var(--gold-border);
  background: #120b12;
  animation: modal-reveal 0.35s ease both;
}

@keyframes modal-reveal {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-image {
  min-height: 600px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 70px);
}

.modal-copy h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.modal-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--cream-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  background: rgba(7, 6, 11, 0.65);
  color: var(--cream);
}

.modal-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.subpage {
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
}

.subpage-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at 80% 30%, rgba(100, 52, 62, 0.18), transparent 36%),
    var(--black);
}

.subpage-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(30px, 6vw, 100px) 100px var(--page-padding);
}

.subpage-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(4.3rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.85;
}

.subpage-intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--cream-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.subpage-hero-image,
.story-image,
.journal-visual {
  position: relative;
  overflow: hidden;
}

.subpage-hero-image img,
.story-image img,
.journal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-image img {
  object-position: center;
}

.subpage-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 28%);
}

.qualities {
  width: 100%;
  padding: 50px 40px;
  border-top: 1px solid rgba(214, 170, 85, 0.18);
  border-bottom: 1px solid rgba(214, 170, 85, 0.18);
  background: linear-gradient(135deg, #190a18 0%, #120812 55%, #0d0710 100%);
}

.qualities-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quality {
  padding: 20px 45px;
  text-align: center;
  border-right: 1px solid rgba(214, 170, 85, 0.18);
}

.quality:last-child {
  border-right: none;
}

.quality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.quality-icon svg {
  width: 31px;
  height: 31px;
  stroke: var(--gold);
  filter: drop-shadow(0 0 8px rgba(214, 170, 85, 0.08));
}

.quality h3 {
  margin: 0 0 15px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
}

.quality p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--cream-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 720px;
  border-bottom: 1px solid var(--gold-border);
  background: var(--black-soft);
}

.story-image img {
  object-position: top center;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(40px, 7vw, 120px);
}

.story-copy h2,
.events-heading h2,
.journal-copy h2,
.subpage-cta h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  font-weight: 400;
  line-height: 0.92;
}

.story-copy p:not(.eyebrow),
.journal-copy p {
  max-width: 680px;
  color: var(--cream-soft);
  font-size: 0.97rem;
  line-height: 1.82;
}

.story-copy p:not(.eyebrow) {
  margin: 22px 0 0;
}

.paulini-stats {
  width: 100%;
  padding: 42px 30px;
  border-top: 1px solid rgba(214, 170, 85, 0.42);
  border-bottom: 1px solid rgba(214, 170, 85, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 34, 84, 0.18), transparent 55%),
    linear-gradient(135deg, #1a0b1c 0%, #130a18 45%, #0e0914 100%);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  position: relative;
  padding: 6px 30px;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: linear-gradient(to bottom, transparent, rgba(214, 170, 85, 0.2), transparent);
}

.stat-number {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.stat-label {
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events-inner,
.subpage-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ticker {
  overflow: hidden;
  padding: 21px 0;
  border-bottom: 1px solid var(--gold-border);
  background: #170a16;
}

.ticker-track {
  display: inline-flex;
  gap: 35px;
  width: max-content;
  white-space: nowrap;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.events-featured {
  padding: clamp(80px, 8vw, 130px) var(--page-padding);
  background:
    radial-gradient(circle at 90% 10%, rgba(96, 27, 78, 0.2), transparent 30%),
    #0b070d;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter {
  padding: 10px 15px;
  border: 1px solid rgba(214, 170, 85, 0.2);
  background: transparent;
  color: var(--cream-soft);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.archive-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--black-soft);
}

.archive-card[hidden] {
  display: none;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-card:hover img,
.archive-card:focus-within img {
  transform: scale(1.07);
}

.archive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 6, 11, 0.3) 58%, rgba(7, 6, 11, 0.96));
}

.archive-copy {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 24px;
  left: 22px;
  transition: transform 0.3s ease;
}

.archive-card:hover .archive-copy,
.archive-card:focus-within .archive-copy {
  transform: translateY(-7px);
}

.archive-meta {
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.archive-copy h3 {
  margin: 8px 0 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 0.95;
}

.archive-subtitle,
.archive-description {
  color: var(--cream-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.archive-subtitle {
  margin-top: 7px;
}

.archive-description {
  margin: 12px 0 0;
}

.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.journal-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: #140913;
}

.journal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 110px);
}

.journal-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 25px 0 30px;
}

.subpage-cta {
  padding: 75px var(--page-padding);
  background: linear-gradient(110deg, #471432, #220b1c);
}

.subpage-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.subpage-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.live-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 10%, rgba(92, 24, 73, 0.13), transparent 27%),
    var(--black);
}

.live-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
  background: linear-gradient(135deg, #100912, #0b080e);
}

.live-hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 30px 70px var(--page-padding);
}

.live-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.1vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.live-hero-description {
  max-width: 540px;
  margin: 27px 0 0;
  color: var(--cream-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.live-hero-image {
  position: relative;
  overflow: hidden;
}

.live-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.live-hero-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #0d0910 0%, rgba(13, 9, 16, 0.58) 13%, transparent 38%);
}

.live-hero-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 6, 11, 0.28), transparent 40%);
}

.career-section {
  border-bottom: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at 82% 50%, rgba(97, 27, 76, 0.12), transparent 30%),
    linear-gradient(135deg, #100913, #09070d);
}

.career-inner {
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 32%) minmax(0, 68%);
}

.timeline-column {
  padding: 46px 42px 54px var(--page-padding);
  border-right: 1px solid var(--gold-border);
}

.section-label {
  margin-bottom: 30px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.live-timeline {
  position: relative;
  padding-left: 30px;
}

.live-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(214, 170, 85, 0.16));
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px #100913;
}

.timeline-year {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.timeline-title {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.05;
}

.timeline-description {
  max-width: 275px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.appearances-column {
  min-width: 0;
  padding: 46px var(--page-padding) 52px 34px;
}

.appearances-column .section-label {
  margin-bottom: 30px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.appearance-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 11px;
}

.appearance-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 85, 0.34);
  background: #100a10;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.appearance-card:hover,
.appearance-card:focus-within {
  border-color: rgba(234, 203, 131, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.appearance-image {
  position: relative;
  width: 100%;
  height: clamp(112px, 9.4vw, 148px);
  overflow: hidden;
  background: #09070d;
}

.appearance-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.appearance-card:hover .appearance-image img,
.appearance-card:focus-within .appearance-image img {
  transform: scale(1.055);
}

.appearance-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 6, 11, 0.34) 100%);
}

.appearance-copy {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  padding: 11px 12px 13px;
}

.appearance-title {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}

.appearance-subtitle {
  margin-top: 4px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.08;
}

.appearance-meta {
  margin-top: auto;
  padding-top: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.appearance-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--gold-light);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.live-cta {
  position: relative;
  overflow: hidden;
  padding: 58px var(--page-padding);
  background:
    radial-gradient(circle at 75% 50%, rgba(112, 31, 85, 0.32), transparent 30%),
    linear-gradient(110deg, #2b0d24, #160816);
}

.live-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--gold-border);
}

.live-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 55px;
}

.live-cta h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.live-cta h2 span {
  color: var(--gold-light);
}

.live-cta p {
  margin: 15px 0 0;
  color: var(--cream-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.live-cta-button-wrap {
  text-align: center;
}

.live-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 250px;
  padding: 18px 27px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #130e08;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-cta-button:hover,
.live-cta-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(214, 170, 85, 0.18);
}

.cta-small {
  margin-top: 11px !important;
  color: var(--muted) !important;
  font-size: 0.65rem !important;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav,
  .header-book {
    display: none;
  }

  .header {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-button {
    display: grid;
  }

  .hero-image-wrap {
    width: 72%;
  }

  .hero-content {
    width: 55vw;
  }

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

  .about-portrait img {
    min-height: 480px;
    max-height: 680px;
  }

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

  .booking-type:nth-child(2) {
    border-right: none;
  }

  .booking-type:nth-child(1),
  .booking-type:nth-child(2) {
    border-bottom: 1px solid var(--gold-border);
  }

  .showreel-visual {
    min-height: 560px;
  }

  .showreel-copy {
    padding-top: 95px;
  }

  .live-hero {
    grid-template-columns: 1fr;
  }

  .live-hero-image {
    min-height: 540px;
    order: -1;
  }

  .live-hero-image::before {
    background: linear-gradient(0deg, #0d0910 0%, rgba(13, 9, 16, 0.6) 20%, transparent 50%);
  }

  .live-hero-copy {
    padding-top: 50px;
  }

  .career-inner {
    grid-template-columns: 1fr;
  }

  .timeline-column {
    padding: 42px var(--page-padding);
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }

  .timeline-description {
    max-width: 550px;
  }

  .appearances-column {
    padding: 42px var(--page-padding);
  }

  .appearance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .appearance-image {
    height: 145px;
  }

  .subpage-hero,
  .story-section,
  .journal-promo {
    grid-template-columns: 1fr;
  }

  .subpage-hero-image {
    min-height: 600px;
    order: -1;
  }

  .subpage-hero-image::after {
    background: linear-gradient(0deg, var(--black), transparent 40%);
  }

  .subpage-hero-copy {
    padding-top: 60px;
  }

  .qualities-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality {
    padding: 35px 30px;
  }

  .quality:nth-child(2) {
    border-right: none;
  }

  .quality:nth-child(1),
  .quality:nth-child(2) {
    border-bottom: 1px solid rgba(214, 170, 85, 0.18);
  }

  .story-image {
    height: 650px;
  }

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

  .journal-visual {
    min-height: 500px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 32px 20px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(214, 170, 85, 0.18);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero {
    align-items: end;
    min-height: 820px;
  }

  .hero-image-wrap {
    top: 0;
    width: 100%;
    height: 68%;
  }

  .hero-image-wrap img {
    object-position: 61% top;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #07060b 0%, #07060b 24%, rgba(7, 6, 11, 0.82) 46%, rgba(7, 6, 11, 0.1) 78%);
  }

  .hero-content {
    width: auto;
    margin: 0 var(--page-padding) 105px;
  }

  .hero-title {
    margin-bottom: 26px;
    font-size: clamp(5.4rem, 22vw, 8.2rem);
  }

  .hero-description {
    max-width: 430px;
  }

  .hero-credits {
    bottom: 24px;
    gap: 8px 12px;
    font-size: 0.56rem;
  }

  .hero-credits span:not(:last-child)::after {
    margin-left: 12px;
  }

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

  .carousel-controls {
    align-self: flex-end;
  }

  .event-card {
    flex-basis: 82vw;
    height: 500px;
  }

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

  .booking-type,
  .booking-type:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }

  .booking-type:last-child {
    border-bottom: none;
  }

  .showreel-visual {
    min-height: 520px;
  }

  .final-cta-inner,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .modal-image {
    min-height: 390px;
  }

  .section-heading-row,
  .subpage-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .quality,
  .quality:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(214, 170, 85, 0.18);
  }

  .quality {
    padding: 35px 15px;
  }

  .quality:last-child {
    border-bottom: none;
  }

  .subpage-hero-image {
    min-height: 500px;
  }

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

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

  .appearance-image {
    height: 165px;
  }

  .live-hero-image {
    min-height: 460px;
  }

  .live-cta-inner {
    grid-template-columns: 1fr;
  }

  .live-cta-button-wrap {
    text-align: left;
  }

  .paulini-stats {
    padding: 22px 18px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 28px 12px;
    border-bottom: 1px solid rgba(214, 170, 85, 0.16);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 3.2rem;
  }
}

@media (max-width: 820px) {
  .appearance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appearance-image {
    height: 165px;
  }
}

@media (max-width: 520px) {
  .button-primary,
  .button-outline {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .about-copy h2,
  .section-heading h2,
  .showreel-copy h2,
  .booking-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .about-portrait img {
    min-height: 390px;
  }

  .event-card {
    height: 470px;
  }

  .footer-links {
    gap: 16px;
  }

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

  .appearance-image {
    height: 190px;
  }

  .appearance-copy {
    min-height: 88px;
  }

  .subpage-hero h1,
  .story-copy h2,
  .events-heading h2,
  .journal-copy h2,
  .subpage-cta h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .story-copy,
  .journal-copy {
    padding-right: var(--page-padding);
    padding-left: var(--page-padding);
  }
}

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

.career-showcase {
  width: 100%;
  border-top: 1px solid rgba(214, 170, 85, 0.25);
  border-bottom: 1px solid rgba(214, 170, 85, 0.25);
  background:
    radial-gradient(circle at 82% 40%, rgba(92, 25, 74, 0.12), transparent 32%),
    linear-gradient(135deg, #110914 0%, #0c080f 60%, #09070c 100%);
}

.career-showcase-inner {
  width: min(calc(100% - 48px), 1420px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 31% 69%;
  align-items: stretch;
}

.career-section-label {
  margin-bottom: 29px;
  color: #eacb83;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.career-timeline-column {
  min-width: 0;
  padding: 52px 44px 62px 0;
  border-right: 1px solid rgba(214, 170, 85, 0.24);
}

.career-timeline {
  position: relative;
  padding-left: 31px;
}

.career-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, #d6aa55 0%, rgba(214, 170, 85, 0.42) 70%, rgba(214, 170, 85, 0.12) 100%);
}

.career-timeline-item {
  position: relative;
  padding: 0 0 33px 20px;
}

.career-timeline-item:last-child {
  padding-bottom: 0;
}

.career-timeline-dot {
  position: absolute;
  left: -31px;
  top: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #eacb83;
  box-shadow: 0 0 0 4px #100912;
}

.career-timeline-year {
  margin-bottom: 7px;
  color: #eacb83;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.career-timeline-item h3 {
  margin: 0;
  color: #f2e9dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.05;
}

.career-timeline-item p {
  max-width: 290px;
  margin: 7px 0 0;
  color: #a99ea0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.58;
}

.career-showcase .appearances-column {
  min-width: 0;
  padding: 52px 0 58px 38px;
}

.career-showcase .appearance-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 232px));
  justify-content: start;
  align-items: start;
  gap: 13px 14px;
}

.career-showcase .appearance-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 170, 85, 0.34);
  background: #100a10;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.career-showcase .appearance-card:hover {
  border-color: rgba(234, 203, 131, 0.66);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.23);
  transform: translateY(-3px);
}

.career-showcase .appearance-image {
  position: relative;
  width: 100%;
  height: 142px;
  overflow: hidden;
  background: #09070d;
}

.career-showcase .appearance-image img {
  position: absolute;
  inset: 0;

  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;

  /* Keep faces and heads higher in frame. */
  object-position: center 20% !important;

  margin: 0 !important;
  padding: 0 !important;

  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.career-showcase .appearance-card:hover .appearance-image img {
  transform: scale(1.055);
}

.career-showcase .appearance-card.bodyguard .appearance-image img {
  object-position: center top !important;
}

.career-showcase .appearance-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 6, 11, 0.28) 100%);
}

.career-showcase .appearance-copy {
  height: 91px;
  display: flex;
  flex-direction: column;
  padding: 10px 11px 12px;
}

.career-showcase .appearance-title {
  margin: 0;
  color: #eacb83;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.career-showcase .appearance-subtitle {
  margin-top: 4px;
  color: #f2e9dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.05;
}

.career-showcase .appearance-meta {
  margin-top: auto;
  padding-top: 7px;
  color: #92878d;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.56rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

@media (min-width: 1450px) {
  .career-showcase .appearance-grid {
    grid-template-columns: repeat(3, 238px);
    gap: 14px;
  }

  .career-showcase .appearance-image {
    height: 148px;
  }
}

@media (max-width: 1050px) {
  .career-showcase-inner {
    width: min(calc(100% - 40px), 900px);
    grid-template-columns: 1fr;
  }

  .career-timeline-column {
    padding: 48px 0;
    border-right: none;
    border-bottom: 1px solid rgba(214, 170, 85, 0.24);
  }

  .career-timeline-item p {
    max-width: 650px;
  }

  .career-showcase .appearances-column {
    padding: 48px 0 55px;
  }

  .career-showcase .appearance-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-showcase .appearance-image {
    height: 160px;
  }
}

@media (max-width: 760px) {
  .career-showcase-inner {
    width: calc(100% - 34px);
  }

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

  .career-showcase .appearance-image {
    height: 185px;
  }
}

@media (max-width: 500px) {
  .career-showcase .appearance-grid {
    grid-template-columns: 1fr;
  }

  .career-showcase .appearance-card {
    max-width: 100%;
  }

  .career-showcase .appearance-image {
    height: 225px;
  }

  .career-showcase .appearance-copy {
    height: 94px;
  }
}

.contact-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(98, 34, 84, 0.16), transparent 30%),
    linear-gradient(135deg, #09070d 0%, #130914 58%, #07060b 100%);
}

.contact-hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 150px var(--page-padding) 86px;
  gap: clamp(38px, 7vw, 108px);
}

.contact-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(4rem, 7.4vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.contact-intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--cream-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-top: 38px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
  padding: 24px 28px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-detail:first-child {
  border-right: 1px solid var(--gold-border);
}

.contact-detail span {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail:hover,
.contact-detail:focus-visible {
  background: rgba(214, 170, 85, 0.06);
  color: var(--gold-light);
}

.contact-form {
  max-width: 720px;
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(214, 170, 85, 0.28);
  border-radius: 0;
  background: rgba(7, 6, 11, 0.58);
  color: var(--cream);
  font: 400 0.95rem/1.45 var(--sans);
  letter-spacing: 0;
  outline: none;
  padding: 13px 14px;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-light);
  background: rgba(7, 6, 11, 0.76);
  box-shadow: 0 0 0 3px rgba(214, 170, 85, 0.11);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(215, 205, 196, 0.62);
}

.contact-submit {
  margin-top: 8px;
}

.contact-image {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: #100a10;
}

.contact-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 18%;
}

.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(7, 6, 11, 0.24), transparent 42%),
    linear-gradient(90deg, rgba(7, 6, 11, 0.12), transparent 36%);
}

@media (max-width: 950px) {
  .contact-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .contact-image {
    order: -1;
    min-height: 520px;
  }

  .contact-image img {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    padding-top: 105px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-detail:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }

  .contact-detail {
    min-height: 112px;
    padding: 22px 0;
    overflow-wrap: anywhere;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-image,
  .contact-image img {
    min-height: 430px;
  }
}

/* Phone compatibility overrides. Keep this layer last so it wins over earlier page rules. */
@media (max-width: 700px) {
  :root {
    --page-padding: clamp(18px, 5vw, 28px);
    --section-space: 76px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .header {
    min-height: 72px;
    padding: 14px var(--page-padding);
  }

  .logo {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .mobile-menu {
    max-height: 100dvh;
    overflow-y: auto;
    padding-top: 96px;
    padding-bottom: 30px;
  }

  .mobile-menu a {
    font-size: clamp(1.7rem, 9vw, 2.1rem);
    line-height: 1;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-image-wrap {
    height: 58%;
  }

  .hero-content {
    margin: 0 var(--page-padding) 118px;
  }

  .hero-title {
    font-size: clamp(4.55rem, 20vw, 6.8rem);
    line-height: 0.76;
  }

  .hero-description,
  .subpage-intro,
  .live-hero-description,
  .contact-intro,
  .about-copy p:not(.eyebrow),
  .showreel-copy p:not(.eyebrow),
  .story-copy p,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.96rem;
  }

  .hero-actions,
  .final-cta-inner,
  .subpage-cta-inner,
  .live-cta-inner {
    width: 100%;
  }

  .button-primary,
  .button-outline,
  .live-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
  }

  .hero-credits {
    right: var(--page-padding);
    bottom: 20px;
    left: var(--page-padding);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
  }

  .hero-credits span::after {
    display: none !important;
  }

  .about-section,
  .stage-section,
  .booking-section,
  .final-cta,
  .subpage-cta,
  .live-cta {
    padding-right: var(--page-padding);
    padding-left: var(--page-padding);
  }

  .about-inner {
    gap: 32px;
  }

  .about-portrait img,
  .subpage-hero-image,
  .story-image,
  .live-hero-image,
  .contact-image,
  .contact-image img {
    min-height: 0;
  }

  .about-portrait img {
    height: min(96vw, 440px);
  }

  .showreel {
    min-height: 0;
  }

  .showreel-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .showreel-copy {
    padding: 42px var(--page-padding);
  }

  .section-top {
    padding-right: 0;
    padding-left: 0;
  }

  .event-track {
    margin-right: calc(var(--page-padding) * -1);
    margin-left: calc(var(--page-padding) * -1);
    padding-right: var(--page-padding);
    padding-left: var(--page-padding);
  }

  .event-card {
    flex-basis: min(84vw, 360px);
    height: min(128vw, 470px);
  }

  .event-info {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .booking-type {
    min-height: auto;
    padding: 28px 22px;
  }

  .booking-type h3 {
    margin-top: 34px;
  }

  .trusted-label {
    padding-right: var(--page-padding);
    padding-left: var(--page-padding);
  }

  .footer {
    padding: 24px var(--page-padding);
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 14px 20px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .modal {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }

  .modal-image {
    min-height: 0;
    height: 42dvh;
  }

  .modal-copy {
    padding: 28px 22px;
  }

  .subpage-hero,
  .live-hero {
    min-height: 0;
  }

  .subpage-hero-copy,
  .live-hero-copy {
    padding: 42px var(--page-padding) 58px;
  }

  .subpage-hero h1,
  .live-hero h1,
  .contact-copy h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
    line-height: 0.88;
  }

  .subpage-hero-image {
    height: min(118vw, 560px);
  }

  .story-section {
    min-height: 0;
  }

  .story-image {
    height: min(118vw, 540px);
  }

  .story-copy {
    padding: 46px var(--page-padding);
  }

  .qualities {
    padding: 26px var(--page-padding);
  }

  .quality {
    padding-right: 0;
    padding-left: 0;
  }

  .paulini-stats {
    padding-right: var(--page-padding);
    padding-left: var(--page-padding);
  }

  .live-hero-image {
    height: min(112vw, 520px);
  }

  .career-showcase-inner {
    width: calc(100% - (var(--page-padding) * 2));
  }

  .career-timeline-column,
  .career-showcase .appearances-column {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .career-timeline-item p {
    max-width: none;
  }

  .career-showcase .appearance-grid {
    grid-template-columns: 1fr;
  }

  .career-showcase .appearance-image {
    height: min(62vw, 255px);
  }

  .career-showcase .appearance-copy {
    height: auto;
    min-height: 88px;
  }

  .contact-hero {
    min-height: 0;
    padding: 96px var(--page-padding) 56px;
    gap: 30px;
  }

  .contact-image {
    width: 100%;
    height: min(102vw, 460px);
  }

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

  .contact-details {
    margin-top: 28px;
  }

  .contact-detail {
    padding: 20px 0;
    font-size: clamp(1.08rem, 5.7vw, 1.5rem);
  }

  .contact-form {
    margin-top: 26px;
  }

  .contact-form label {
    letter-spacing: 0.11em;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(4.05rem, 18.6vw, 4.9rem);
  }

  .hero-content {
    margin-bottom: 132px;
  }

  .hero-credits {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .subpage-hero h1,
  .live-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }
}
