/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #c9a84c;
  --gold-dk:   #a8872f;
  --bg:        #0d0d0d;
  --bg-alt:    #111111;
  --text:      #f0ede6;
  --muted:     rgba(240,237,230,0.45);
  --border:    rgba(255,255,255,0.07);
  --max-w:     1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== PLACEHOLDER ===== */
.ph {
  width: 100%; height: 100%;
  background: #111; display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 13px 28px; border: 1px solid transparent;
  cursor: pointer; transition: all 0.2s;
}
.btn-gold    { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: var(--text); }

/* ===== TEXT LINK ===== */
.text-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.75; }

/* ===== NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 52px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text); text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav a:hover { color: var(--text); }
.nav a.nav-cta {
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 14px;
}
.nav a.nav-cta:hover { background: var(--gold); color: #000; }

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 52px;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 52px 80px 40px;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.hero-name {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.01em;
}
.hero-script {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
  color: var(--gold); line-height: 1.05;
  margin-bottom: 24px;
}
.hero-location {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-photo {
  position: relative; overflow: hidden;
  background: #080808;
}
.hero-photo img,
.hero-photo .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7);
}

/* ===== FEATURED VIDEO ===== */
.featured-video {
  background: var(--bg-alt);
  padding: 0;
  border-top: 1px solid var(--border);
}
.video-wrap {
  position: relative;
  width: 100%; aspect-ratio: 16/6;
  background: #0a0a0a;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-wrap .ph { position: absolute; inset: 0; background: #0a0a0a; }

/* ===== SPLIT BLOCKS (Arrangements / MLC) ===== */
.split-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  border-top: 1px solid var(--border);
}
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

.split-photo {
  position: relative; overflow: hidden;
  background: #080808; min-height: 420px;
}
.split-photo img,
.split-photo .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) brightness(0.65);
}

.split-text {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 64px 52px;
  background: var(--bg-alt);
}
.block-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; opacity: 0.85;
}
.block-heading {
  font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 300;
  letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 20px;
}
.block-body {
  font-size: 0.9rem; color: var(--muted); line-height: 1.8;
  max-width: 400px; margin-bottom: 32px;
}

/* ===== MERCH ===== */
.merch-section {
  border-top: 1px solid var(--border);
}
.merch-header-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 52px 40px 40px;
  background: var(--bg);
}
.merch-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.01em;
}
.merch-shop {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.merch-shop:hover { color: var(--text); }

.merch-dark { background: var(--bg-alt); }
.merch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.merch-item {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: #141414;
}
.merch-item img,
.merch-item .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.65);
  transition: filter 0.3s;
}
.merch-item:hover img { filter: grayscale(50%) brightness(0.85); }

/* ===== GALLERY ===== */
.gallery-section {
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.gallery-header-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 40px 32px;
}
.gallery-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.01em;
}
.gallery-see-all {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.gallery-see-all:hover { color: var(--text); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 3px;
}
.g-item { overflow: hidden; position: relative; background: #111; }
.g-item img,
.g-item .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.72);
  transition: filter 0.35s, transform 0.35s;
}
.g-item:hover img {
  filter: grayscale(50%) brightness(0.9);
  transform: scale(1.04);
}

/* ===== WHAT'S COMING ===== */
.upcoming-section {
  padding: 72px 40px 80px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.upcoming-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  letter-spacing: -0.01em; margin-bottom: 48px;
}
.upcoming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid var(--border);
}
.upcoming-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.upcoming-item:last-child { border-right: none; }
.upcoming-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.upcoming-item h3 {
  font-size: 1.25rem; font-weight: 300; margin-bottom: 12px;
}
.upcoming-item p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 36px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ===== SR-ONLY ===== */
.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;
}

/* ===== TYPING INDICATOR (chatbot widget) ===== */
.typing-indicator { display: inline-flex; gap: 5px; align-items: center; }
.typing-indicator span {
  width: 7px; height: 7px; background: var(--muted);
  border-radius: 50%; animation: ti-bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ti-bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 96px 24px 52px; }
  .hero-photo { height: 55vw; min-height: 260px; position: relative; }
  .hero-photo .ph { position: absolute; }

  .split-block { grid-template-columns: 1fr; min-height: auto; }
  .split-block.reverse { direction: ltr; }
  .split-photo { min-height: 260px; }
  .split-text { padding: 40px 24px; justify-content: flex-start; }

  .merch-header-row { padding: 40px 24px 28px; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-section { padding-top: 40px; }
  .gallery-header-row { padding: 0 24px 24px; }
  .gallery-grid { grid-template-rows: repeat(2, 160px); }

  .upcoming-section { padding: 52px 24px 60px; }
  .upcoming-grid { grid-template-columns: 1fr; }
  .upcoming-item { border-right: none; border-bottom: 1px solid var(--border); }
  .upcoming-item:last-child { border-bottom: none; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav a:not(.nav-cta) { display: none; }
  .site-header { padding: 0 20px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 130px); }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}
