/* ═══════════════════════════════════════════════════
   UNIQUE PALACE — LANDING PAGE
   Design: Editorial · Luxury · Timeless
   Palette: Charcoal · Warm Gold · Ivory White
═══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --charcoal:    #141414;
  --dark:        #1c1c1c;
  --mid-dark:    #242424;
  --gray:        #3a3a3a;
  --mid-gray:    #6b6b6b;
  --light-gray:  #a8a8a8;
  --off-white:   #f5f0ea;
  --white:       #ffffff;

  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #a07840;
  --champagne:   #f0e6d0;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h:    72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --gap:         clamp(24px, 4vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
select, input, textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

/* ── TYPOGRAPHY ──────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.body-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.85;
  color: var(--mid-gray);
  max-width: 560px;
}
.body-text.light { color: rgba(255,255,255,0.72); }

.section-header.centered { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.section-header.centered .section-title { margin: 0 auto; }
.section-header.centered .body-text { margin: 16px auto 0; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-header {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  padding: 10px 24px;
  font-size: 0.7rem;
}
.btn-header:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-lg { padding: 18px 44px; font-size: 0.78rem; }
.btn-full { width: 100%; }

/* ── LAYOUT ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.4s var(--ease-out) 0.3s forwards;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.45em;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.header-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}
.header-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  padding: 24px clamp(20px, 5vw, 60px) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 16px; }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav.open { display: flex; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease-out) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.12) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2s forwards;
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about-text .section-title { margin-bottom: 28px; }
.about-text .body-text { margin-bottom: 20px; }
.about-text .btn { margin-top: 16px; }

.about-visual {
  display: flex;
  justify-content: center;
}

.about-img-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  gap: 32px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features { background: var(--charcoal); }
.features .section-label { color: var(--gold); }
.features .section-title { color: var(--white); }
.features .section-title em { color: var(--gold-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}

.feature-card {
  background: var(--charcoal);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  transition: background 0.3s;
}
.feature-card:hover { background: var(--dark); }

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 24px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.feature-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--light-gray);
}

/* ═══════════════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════════════ */
.experience {
  background: var(--black);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,169,110,0.04) 0%, transparent 70%);
}

.experience-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.experience-inner .section-label { margin-bottom: 20px; }
.experience-inner .section-title { margin-bottom: 48px; }

.experience-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: left;
}

.exp-col .body-text { max-width: 100%; }

/* ═══════════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════════ */
.events { background: var(--off-white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.event-card {
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 2.5vw, 36px);
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.event-card:last-child { border-right: none; }
.event-card:hover { background: var(--white); }

.event-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.event-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  transition: width 0.4s var(--ease-out);
}
.event-card:hover .event-divider { width: 56px; }

.event-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.event-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--mid-gray);
  flex: 1;
  margin-bottom: 28px;
}

.event-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.2s, letter-spacing 0.3s;
  display: inline-block;
}
.event-link:hover {
  color: var(--gold);
  letter-spacing: 0.18em;
}

/* ═══════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════ */
.location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.location-text .section-title { margin-bottom: 24px; }
.location-text .body-text { margin-bottom: 36px; }

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.loc-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.loc-icon svg { width: 100%; height: 100%; }

.location-map {
  height: 480px;
}

.map-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.map-frame iframe { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.cta-final {
  background: var(--dark);
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201,169,110,0.08) 0%, transparent 65%);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.cta-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact-info .section-title { margin-bottom: 24px; }
.contact-info .body-text { margin-bottom: 36px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--mid-gray);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold-dark); }

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 100%; height: 100%; }

/* Form */
.contact-form-wrap { position: relative; }

.contact-form {
  background: var(--white);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-gray);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid,
.form-group input:user-invalid,
.form-group select:user-invalid,
.form-group textarea:user-invalid {
  border-color: #d93025;
}

.error-message {
  display: none;
  font-size: 0.72rem;
  color: #d93025;
  margin-top: 4px;
  letter-spacing: 0.02em;
  animation: fadeInShort 0.2s ease-out forwards;
}

.form-group input.is-invalid ~ .error-message,
.form-group select.is-invalid ~ .error-message,
.form-group textarea.is-invalid ~ .error-message,
.form-group input:user-invalid ~ .error-message,
.form-group select:user-invalid ~ .error-message,
.form-group textarea:user-invalid ~ .error-message {
  display: block;
}

@keyframes fadeInShort {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-note {
  font-size: 0.72rem;
  color: var(--light-gray);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Form success */
.form-success {
  display: none;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: clamp(32px, 5vw, 52px);
  min-height: 480px;
  width: 100%;
}
.form-success.visible {
  display: flex;
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
}

.form-success p {
  font-size: 0.88rem;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.35em;
}
.footer-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-top: 4px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ── UTILITY ─────────────────────────────────────── */
.br-desktop { display: block; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-card { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .event-card:nth-child(2n) { border-right: none; }
  .event-card:nth-last-child(-n+2) { border-bottom: none; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

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

  .experience-cols { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .exp-col .body-text { max-width: 100%; margin: 0 auto; }

  .events-grid { grid-template-columns: 1fr; }
  .event-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .event-card:last-child { border-bottom: none; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 320px; }

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

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

  .hero-ctas, .cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }

  .br-desktop { display: none; }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .footer-nav { gap: 20px; }
  .footer-nav a { font-size: 0.62rem; }
}

/* ═══════════════════════════════════════════════════
   GALLERY — ATMOSFERA
═══════════════════════════════════════════════════ */
.gallery {
  background: var(--charcoal);
  overflow: hidden;
  padding: 0;
}

.gallery-strip {
  display: flex;
  height: clamp(280px, 40vw, 520px);
  gap: 2px;
}

.gallery-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item--tall {
  flex: 1.4;
}

.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
  filter: brightness(0.88) saturate(0.9);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.gallery-caption {
  padding: 32px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.gallery-caption .section-label { margin-bottom: 0; }

.gallery-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.45);
  margin-left: auto;
}

/* ── About image overlay refinement ─────────────── */
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.3) 45%,
    rgba(10,10,10,0.1) 100%
  );
}

.about-img-inner { z-index: 1; }

/* ── Testimonial / Quote strip ───────────────────── */
.quote-strip {
  background: var(--off-white);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── Gallery responsive ──────────────────────────── */
@media (max-width: 768px) {
  .gallery-strip { height: clamp(200px, 55vw, 320px); }
  .gallery-item--tall { flex: 1.2; }
  .gallery-caption { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gallery-text { margin-left: 0; }
}

@media (max-width: 480px) {
  .gallery-strip { gap: 1px; }
}

/* ── Fine-tune: section dividers ─────────────────── */
.about { border-bottom: 1px solid rgba(0,0,0,0.06); }
.events { border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }

/* ── Fine-tune: CTA final background texture ─────── */
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── Fine-tune: form input date styling ──────────── */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}
