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

:root {
  --color-bg: #000000;
  --color-bg-elevated: #111111;
  --color-bg-card: #161616;
  --color-text: #E8DCC8;
  --color-text-muted: #8a8580;
  --color-accent: #C49A4A;
  --color-accent-hover: #d4ac5e;
  --color-border: #2a2725;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

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

button {
  cursor: none;
}

ul {
  list-style: none;
}

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

/* ===== Demo Banner ===== */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 36px;
  background: #0A0A0A;
  border-bottom: 1px solid #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.demo-banner.hidden {
  transform: translateY(-100%);
}

.demo-banner p {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: #333;
  text-transform: uppercase;
}

.demo-banner a {
  color: #C49A4A;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: none;
  overflow-y: auto;
  padding: 40px 0;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: #0A0A0A;
  border: 1px solid #1C1712;
  padding: 56px;
  max-width: 560px;
  width: 90%;
  border-radius: 0;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: none;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #E8DCC8;
}

.modal-wordmark {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #E8DCC8;
  text-align: center;
}

.modal-rule {
  width: 40px;
  height: 1px;
  background: #C49A4A;
  margin: 12px auto 8px;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C49A4A;
  text-align: center;
  margin-bottom: 40px;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.form-field {
  margin-bottom: 32px;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #1C1712;
  padding: 12px 0;
  color: #E8DCC8;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-bottom-color 0.3s ease;
  border-radius: 0;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: #C49A4A;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #333;
}

.form-field textarea {
  height: 80px;
  resize: none;
  line-height: 1.6;
}

/* Date input styling */
.form-field input[type="date"] {
  -webkit-appearance: none;
  color: #E8DCC8;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) hue-rotate(5deg) saturate(3);
  cursor: none;
}

/* Select dropdown styling */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #C49A4A;
  pointer-events: none;
}

.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: none;
  padding-right: 20px;
}

.form-field select option {
  background: #0A0A0A;
  color: #E8DCC8;
}

.modal-submit {
  width: 100%;
  background: #C49A4A;
  color: #000000;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 0;
  cursor: none;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.modal-submit:hover {
  background: #E8DCC8;
}


/* Confirmation state */
.modal-confirmation {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.modal-confirmation.active {
  display: block;
}

.modal-confirm-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #E8DCC8;
  margin-bottom: 12px;
}

.modal-confirm-body {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: #666;
  letter-spacing: 1px;
}

.modal-confirm-disclaimer {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #666;
  text-align: center;
  margin-top: 40px;
  line-height: 1.6;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: #0D0B09;
  border: 1px solid rgba(196, 154, 74, 0.2);
  color: #C49A4A;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.toast.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Page Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-wordmark {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #E8DCC8;
}

/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C49A4A;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
}

/* ===== Placeholder Images ===== */
.placeholder-img {
  background-color: var(--color-bg-card);
  background-image:
    linear-gradient(135deg, rgba(196, 168, 122, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(196, 168, 122, 0.03) 0%, transparent 50%);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(196, 168, 122, 0.04) 50%,
    transparent 70%
  );
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, background-color 0.3s ease, backdrop-filter 0.3s ease, top 0.3s ease;
}

.header.visible {
  opacity: 1;
}

.header.scrolled {
  background-color: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #E8DCC8;
  text-transform: uppercase;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-item a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-item a:hover {
  color: #E8DCC8;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
}

.btn-book-outline {
  background: transparent;
  color: #C49A4A;
  padding: 9px 20px;
  border: 1px solid #C49A4A;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-book-outline:hover {
  background-color: #C49A4A;
  color: #000000;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--color-text);
}

/* ===== Hero ===== */
.hero-wrapper {
  height: 600vh;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.5) 45%, transparent 70%),
    linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.6) 12%, transparent 30%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.5) 0%, transparent 20%);
  z-index: 1;
}

.hero-centre-text {
  position: absolute;
  left: 6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-wordmark {
  font-family: var(--font-title);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #E8DCC8;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  opacity: 0;
  animation: heroFadeIn 2.5s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-top: 1.75rem;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.hero-bottom-text {
  position: absolute;
  left: 6rem;
  bottom: 5rem;
  z-index: 3;
}

.hero-location {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.hero-location-rule {
  width: 40px;
  height: 1px;
  background-color: #C49A4A;
  margin-bottom: 1rem;
}

.hero-location-line {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C49A4A;
  line-height: 2;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.btn-hero {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A4A;
  background: transparent;
  border: 1px solid #C49A4A;
  padding: 12px 24px;
  border-radius: 0;
  cursor: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: #C49A4A;
  color: #000000;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #444, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Marquee ===== */
.marquee-section {
  background-color: #000000;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.marquee-header {
  text-align: left;
  padding-left: 80px;
  margin-bottom: 48px;
}

.marquee-rule {
  width: 60px;
  height: 1px;
  background-color: #C49A4A;
  margin-bottom: 24px;
}

.marquee-title {
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 300;
  color: #E8DCC8;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.marquee-row {
  overflow: hidden;
}

.marquee-row + .marquee-row {
  margin-top: 12px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.marquee-track-left {
  animation: marqueeLeft 45s linear infinite;
}

.marquee-track-right {
  animation: marqueeRight 45s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-img {
  flex-shrink: 0;
}

.marquee-img img {
  height: 380px;
  width: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  border-radius: 0;
}

/* ===== About ===== */
.about {
  background-color: var(--color-bg);
  padding: 0;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  animation: kenBurns 30s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #000000 100%),
    linear-gradient(to bottom, transparent 70%, #000000 100%),
    linear-gradient(to top, transparent 70%, #000000 100%);
  pointer-events: none;
}


.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px;
  padding-left: 80px;
  background-color: #000000;
}

.about-title {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  color: #E8DCC8;
  margin-bottom: 32px;
  list-style: none;
}

.about-title::before,
.about-title::marker {
  display: none;
  content: none;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-wrap.reveal .line-inner {
  transform: translateY(0);
}

.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #888;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-body.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A4A;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-cta.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-cta:hover {
  opacity: 0.7;
}

/* ===== Press ===== */
.press {
  background-color: #000000;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
}

.press-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-bottom: 64px;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
}

.press-logos span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
}

.press-logos .press-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #C49A4A;
  flex-shrink: 0;
}

.press-quotes {
  position: relative;
  width: 100%;
  max-width: 800px;
  min-height: 200px;
}

.press-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.press-quote.active {
  opacity: 1;
}

.press-quote blockquote {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: #E8DCC8;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 40px;
}

.press-quote-rule {
  width: 40px;
  height: 1px;
  background-color: #C49A4A;
  margin: 0 auto 24px;
}

.press-quote-source {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C49A4A;
  text-align: center;
}

.press-dots {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.press-dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
  border: none;
  padding: 0;
  cursor: none;
  transition: background-color 0.3s ease;
}

.press-dot-indicator.active {
  background-color: #C49A4A;
}

/* ===== Private Events ===== */
.events {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.events-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 120px 80px;
  min-height: 90vh;
}

.events-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-bottom: 24px;
}

.events-rule {
  width: 60px;
  height: 1px;
  background-color: #C49A4A;
  margin-bottom: 40px;
}

.events-title {
  font-family: var(--font-title);
  font-size: 96px;
  font-weight: 300;
  line-height: 1.0;
  color: #E8DCC8;
  margin-bottom: 32px;
}

.ev-line-wrap {
  display: block;
  overflow: hidden;
}

.ev-line-inner {
  display: block;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ev-line-wrap.reveal .ev-line-inner {
  transform: translateY(0);
}

.events-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #666;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.events-body.reveal {
  opacity: 1;
  transform: translateY(0);
}

.events-features {
  margin-bottom: 0;
}

.events-feature {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  border-left: 2px solid #C49A4A;
  padding-left: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.events-feature.reveal {
  opacity: 1;
  transform: translateY(0);
}

.events-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A4A;
  background: transparent;
  border: 1px solid #C49A4A;
  padding: 18px 40px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease, color 0.3s ease;
}

.events-cta.reveal {
  opacity: 1;
  transform: translateY(0);
}

.events-cta:hover {
  background-color: #C49A4A;
  color: #000000;
}

.events-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  z-index: 0;
  animation: eventsKenBurns 20s ease-in-out infinite alternate;
}

@keyframes eventsKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.events-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.97) 25%, rgba(0,0,0,0.85) 45%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to bottom, transparent 60%, #000000 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 20%, transparent 50%);
  pointer-events: none;
}

/* ===== Footer ===== */
.footer {
  background-color: #000000;
  border-top: 1px solid #1C1712;
  padding: 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 60px;
}

.footer-wordmark {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #E8DCC8;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: #444;
  margin-top: 12px;
}

.footer-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-bottom: 16px;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
}

.footer-directions {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C49A4A;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  transition: opacity 0.3s ease;
}

.footer-directions:hover {
  opacity: 0.7;
}

.footer-social {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: #E8DCC8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #1C1712;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: #333;
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: #333;
  transition: color 0.3s ease;
}

.footer-credit:hover {
  color: #C49A4A;
}

/* ===== Scroll Fade-Up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-image-wrap {
    height: 400px;
  }

  .about-text {
    padding: 60px 40px;
  }

  .about-title {
    font-size: 38px;
  }

  .press {
    padding: 80px 40px;
  }

  .press-quote blockquote {
    font-size: 36px;
  }

  .events-text {
    width: 60%;
    padding: 80px 40px;
  }

  .events-title {
    font-size: 64px;
  }

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

@media (max-width: 768px) {
  html, body, a, button {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-book-outline {
    display: none;
  }

  .hero-centre-text {
    left: 2rem;
  }

  .hero-wordmark {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-bottom-text {
    left: 2rem;
  }

  .marquee-header {
    padding-left: 24px;
  }

  .marquee-title {
    font-size: 42px;
  }

  .marquee-img img {
    height: 280px;
  }

  .marquee-section {
    padding: 60px 0 0 0;
  }

  .press {
    padding: 60px 24px;
    min-height: 60vh;
  }

  .press-quote blockquote {
    font-size: 28px;
  }

  .press-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
  }


  .about-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-image-wrap {
    height: 300px;
  }

  .marquee-img img {
    height: 220px;
  }

  .events-text {
    width: 100%;
    padding: 60px 24px;
  }

  .events-title {
    font-size: 48px;
    color: #fff;
  }

  .events-eyebrow {
    color: #d4ac5e;
  }

  .events-body {
    color: #999;
  }

  .events-feature {
    color: #999;
  }

  .events-overlay {
    background: rgba(0, 0, 0, 0.82);
  }

  .footer {
    padding: 60px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
