:root {
  --black: #000000;
  --gold: #c8a44d;
  --white: #ffffff;
  --dark: #1c1c1c;
  --ink: #090909;
  --muted: #b8b8b8;
  --line: rgba(200, 164, 77, 0.24);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Poppins, Montserrat, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.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:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold);
  color: var(--black);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  border-bottom: 0;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.34);
  transform: translateY(14px);
}

.brand img {
  width: 62px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
  overflow: hidden;
}

.section-deep {
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 77, 0.16), transparent 34%),
    linear-gradient(180deg, #050505 0%, #111 100%);
}

.section-black {
  background: var(--black);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 164px 0 104px;
  isolation: isolate;
  margin-bottom: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  height: 34vh;
  background: linear-gradient(180deg, transparent, var(--black) 76%, var(--black));
  pointer-events: none;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 95%;
}

.hero-video {
  z-index: 0;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-video iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero.has-video .hero-video {
  opacity: 1;
}

.hero-image {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: contrast(1.04) saturate(0.82);
  transform: scale(1.02);
  transition: opacity 1.1s ease;
}

.hero.has-video .hero-image {
  opacity: 0.14;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 72% 28%, rgba(200, 164, 77, 0.22), transparent 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 42%);
}

.grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.16;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.04) 75%, rgba(255, 255, 255, 0.04) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.03) 75%, rgba(255, 255, 255, 0.03) 76%, transparent 77%);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 18% 35%, rgba(200, 164, 77, 0.78) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 45%, rgba(255, 255, 255, 0.46) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 20%, rgba(200, 164, 77, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px);
  animation: float-particles 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 8;
  max-width: 760px;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", Montserrat, Impact, sans-serif;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 9.8rem;
  text-shadow: 0 0 42px rgba(200, 164, 77, 0.18);
}

h2 {
  max-width: 900px;
  font-size: 5.8rem;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}

.hero-copy,
.section-copy p,
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 550px;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f0d27a, var(--gold) 48%, #8b6a26);
  color: var(--black);
  border-color: rgba(255, 235, 166, 0.7);
  box-shadow: 0 0 26px rgba(200, 164, 77, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 40px rgba(200, 164, 77, 0.52);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(200, 164, 77, 0.66);
  box-shadow: 0 0 24px rgba(200, 164, 77, 0.18);
}

.scroll-mark {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  bottom: 32px;
  z-index: 9;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.split,
.artist-layout,
.booking-layout,
.expansion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.section-copy p {
  max-width: 690px;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 164, 77, 0.22);
}

.image-frame::before,
.artist-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(200, 164, 77, 0.38);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center top;
}

.philosophy-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.glass-card,
.unit-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 77, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card::after,
.unit-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 164, 77, 0.22), transparent 68%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.glass-card:hover,
.unit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 164, 77, 0.52);
  box-shadow: 0 24px 70px rgba(200, 164, 77, 0.11), 0 22px 60px rgba(0, 0, 0, 0.36);
}

.card-index {
  display: block;
  margin-bottom: 40px;
  color: rgba(200, 164, 77, 0.76);
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.glass-card p,
.unit-card p {
  margin: 0;
  color: var(--muted);
}

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

.unit-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background: #080808;
}

.unit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.86) 68%, rgba(0, 0, 0, 0.96)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16)),
    var(--card-image);
  background-size: cover;
  background-position: center top;
  opacity: 1;
  filter: grayscale(0.2) saturate(0.86) contrast(1.08);
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.45s ease, filter 0.35s ease;
}

.unit-card::after {
  z-index: 0;
}

.unit-card h3,
.unit-card p,
.unit-icon {
  position: relative;
  z-index: 1;
}

.unit-card:hover::before {
  transform: scale(1.08);
  filter: grayscale(0) saturate(1.08) contrast(1.08);
}

.unit-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.35rem;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: inset 0 0 0 1px rgba(200, 164, 77, 0.08), 0 0 22px rgba(200, 164, 77, 0.12);
  backdrop-filter: blur(8px);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(200, 164, 77, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  margin-top: 42px;
}

.service-tile {
  position: relative;
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid rgba(200, 164, 77, 0.16);
  border-bottom: 1px solid rgba(200, 164, 77, 0.16);
  border-left: 0;
  border-top: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(200, 164, 77, 0.1), transparent 46%),
    transparent;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 164, 77, 0);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-tile i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 164, 77, 0.26);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.45rem;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 28px rgba(200, 164, 77, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-tile span {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-tile small {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.service-tile:hover,
.service-tile:focus-visible {
  color: var(--gold);
  background: rgba(200, 164, 77, 0.08);
  outline: none;
  box-shadow: inset 0 0 36px rgba(200, 164, 77, 0.06);
}

.service-tile:hover::before,
.service-tile:focus-visible::before {
  border-color: rgba(200, 164, 77, 0.32);
  box-shadow: 0 0 34px rgba(200, 164, 77, 0.08);
}

.service-tile:hover i,
.service-tile:focus-visible i {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 34px rgba(200, 164, 77, 0.28);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(200, 164, 77, 0.18), transparent 32%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.service-modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(200, 164, 77, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(0, 0, 0, 0.96)),
    #0a0a0a;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.78), 0 0 60px rgba(200, 164, 77, 0.12);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 164, 77, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--gold);
  outline: none;
}

.modal-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 77, 0.42);
  color: var(--gold);
  font-size: 1.9rem;
  background: radial-gradient(circle, rgba(200, 164, 77, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 38px rgba(200, 164, 77, 0.18);
}

.service-modal h2 {
  max-width: 560px;
  font-size: 4.2rem;
}

.modal-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.modal-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.modal-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(200, 164, 77, 0.6);
}

.artist-media {
  position: relative;
  min-height: 650px;
}

.artist-media img {
  position: absolute;
  width: 62%;
  height: 76%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 77, 0.24);
  box-shadow: var(--shadow);
}

.artist-media img:first-child {
  left: 0;
  top: 0;
  object-position: center top;
}

.artist-media img:last-child {
  right: 0;
  bottom: 0;
  object-position: center top;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  margin-top: 42px;
}

.gallery-item {
  margin: 0;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 164, 77, 0.22);
  background: var(--dark);
}

.gallery-item.wide {
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.video-slot {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(200, 164, 77, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(200, 164, 77, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.global-map {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 77, 0.24);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(200, 164, 77, 0.16), transparent 46%),
    #050505;
  background-size: 46px 46px, 46px 46px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.global-map strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.07);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12rem;
  line-height: 1;
}

.node {
  position: absolute;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px rgba(200, 164, 77, 0.72);
}

.node-a { left: 22%; top: 58%; }
.node-b { left: 52%; top: 42%; }
.node-c { right: 18%; top: 32%; }

.route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  opacity: 0.64;
}

.route-a {
  left: 24%;
  top: 58%;
  width: 34%;
  transform: rotate(-20deg);
}

.route-b {
  left: 53%;
  top: 42%;
  width: 32%;
  transform: rotate(-12deg);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(200, 164, 77, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.44);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 77, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold);
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid rgba(200, 164, 77, 0.18);
  background: #030303;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-logo img {
  width: 88px;
  border-radius: var(--radius);
}

.footer-layout p {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.domain {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.copyright {
  width: min(calc(100% - 40px), var(--max));
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.egwa-widget,
.egwa-widget * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.egwa-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
}

.egwa-chat-window {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: 365px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.egwa-widget.egwa-open .egwa-chat-window {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.egwa-header {
  background: #14b89a;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.egwa-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.egwa-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.75);
  display: block;
}

.egwa-status-dot {
  position: absolute;
  right: 1px;
  bottom: 4px;
  width: 13px;
  height: 13px;
  background: #22c55e;
  border: 2px solid #14b89a;
  border-radius: 50%;
}

.egwa-agent-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.egwa-agent-name {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.egwa-agent-status {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  opacity: 0.95;
}

.egwa-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.egwa-close:hover {
  color: #fff;
}

.egwa-body {
  min-height: 230px;
  padding: 28px 18px 20px;
  background: #f3efe9;
  background-image: radial-gradient(circle at 10px 10px, rgba(0, 0, 0, 0.04) 2px, transparent 2.2px);
  background-size: 40px 40px;
}

.egwa-time {
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 24px;
}

.egwa-message {
  background: #fff;
  color: #1f2937;
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: pre-line;
}

.egwa-input-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.egwa-input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  color: #1f2937;
  min-width: 0;
  background: transparent;
}

.egwa-input::placeholder {
  color: #b4b4b4;
  font-weight: 400;
}

.egwa-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  padding: 0;
  flex: 0 0 40px;
}

.egwa-send:hover {
  transform: scale(1.05);
  background: #20c45a;
}

.egwa-footer {
  padding: 10px 12px;
  background: #fafafa;
  text-align: center;
  color: #9b9b9b;
  font-size: 12px;
  font-weight: 400;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.egwa-floating-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  display: grid;
  place-items: center;
  margin-left: auto;
  padding: 0;
}

.egwa-floating-btn:hover {
  transform: scale(1.04);
}

.egwa-notification {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 13px;
  height: 13px;
  background: #ff3131;
  border-radius: 50%;
  border: 2px solid #25d366;
}

.egwa-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.egwa-close .egwa-icon {
  width: 20px;
  height: 20px;
}

.egwa-send .egwa-icon {
  width: 22px;
  height: 22px;
}

.egwa-footer .egwa-icon {
  width: 14px;
  height: 14px;
}

.egwa-floating-btn .egwa-icon {
  width: 34px;
  height: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes float-particles {
  from { transform: translate3d(0, -8px, 0); opacity: 0.56; }
  to { transform: translate3d(0, 12px, 0); opacity: 0.9; }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 7.2rem;
  }

  h2 {
    font-size: 4.6rem;
  }

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

  .unit-card:last-child {
    grid-column: 1 / -1;
  }

  .split,
  .artist-layout,
  .booking-layout,
  .expansion-layout {
    grid-template-columns: 1fr;
  }

  .image-frame {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .brand {
    width: 76px;
    height: 76px;
    transform: translateY(8px);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .hero-subtitle {
    font-size: 1.45rem;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .nav-menu {
    position: fixed;
    inset: 116px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(200, 164, 77, 0.22);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.94);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .philosophy-grid,
  .business-grid,
  .service-matrix,
  .gallery,
  .video-grid,
  .contact-form,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 150px;
  }

  .gallery-item,
  .gallery-item.wide {
    min-height: 420px;
  }

  .artist-media {
    min-height: 560px;
  }

  .footer-layout {
    align-items: start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-copy,
  .section-copy p,
  .section-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: 100svh;
    padding-top: 134px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 100%),
      radial-gradient(circle at 62% 26%, rgba(200, 164, 77, 0.22), transparent 34%);
  }

  .button {
    width: 100%;
  }

  .image-frame {
    min-height: 430px;
  }

  .artist-media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .artist-media::before {
    display: none;
  }

  .artist-media img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item,
  .gallery-item.wide {
    min-height: 360px;
  }

  .global-map {
    min-height: 330px;
  }

  .global-map strong {
    font-size: 8rem;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal h2 {
    font-size: 3rem;
  }

  .modal-icon {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }

  .egwa-widget {
    right: 14px;
    bottom: 14px;
  }

  .egwa-chat-window {
    width: calc(100vw - 28px);
    bottom: 82px;
  }

  .egwa-floating-btn {
    width: 56px;
    height: 56px;
  }

  .egwa-floating-btn .egwa-icon {
    width: 32px;
    height: 32px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
