@font-face {
    font-family: 'Opticiansans';
    src: url('./public/assets/OpticiansansRegular-0pnR.woff2') format('woff2');
    /* font-weight: 400; */
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'OptimaLTStdDemi';
  src: url('./public/assets/OptimaLTStd-DemiBold.woff2') format('woff2');
   font-style: normal;
    font-display: swap;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0c0c0a;
  color: #f0ebe0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── TOKENS ── */
:root {
  --gold:     #b8965a;
  --gold-lt:  #d4b07a;
  --dark:     #0c0c0a;
  --dark-2:   #111108;
  --cream:    #f0ebe0;
  --muted:    rgba(240,235,224,0.55);
  --muted-2:  rgba(240,235,224,0.3);
  --border:   rgba(184,150,90,0.18);
  /* --serif:    'Cormorant Garamond', Georgia, serif; */
  --nav-h:    68px;
}

.Opticiansans-font {
  font-family: 'Opticiansans', system-ui, sans-serif;
  font-style: normal;
}

.OptimaLTStdDemi-font {
  font-family: 'OptimaLTStdDemi', system-ui, sans-serif;
  font-style: normal;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #0c0c0a;
  padding: 13px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  font-family: 'Opticiansans', system-ui, sans-serif;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-gold.mt { margin-top: 16px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(240,235,224,0.75);
  border: 0.5px solid rgba(240,235,224,0.28);
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
  font-family: 'Opticiansans', system-ui, sans-serif;
}
.btn-ghost:hover { border-color: rgba(240,235,224,0.7); color: var(--cream); transform: translateY(-1px); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(12,12,10,0.0);
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 0.5px solid transparent;
}
.nav.scrolled {
  background: rgba(12,12,10,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-logo {
  /* font-family: var(--serif); */
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  flex-shrink: 0;
}
.nav-center {
  display: flex; gap: 36px;
}
.nav-center a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-center a:hover { color: var(--gold); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 0.5px solid rgba(240,235,224,0.35);
  padding: 8px 20px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none;
  padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 0.5px;
  background: var(--cream); transition: all 0.35s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── DRAWER ── */
.drawer {
  position: fixed; inset: 0; z-index: 300;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--muted); font-size: 20px;
  transition: color 0.3s;
}
.drawer-close:hover { color: var(--gold); }
.drawer-link {
  /* font-family: var(--serif); */
  font-size: 40px; font-weight: 300;
  color: var(--cream); letter-spacing: 0.04em;
  transition: color 0.3s;
}
.drawer-link:hover { color: var(--gold); }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-backdrop.show { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,10,0.18) 0%,
    rgba(12,12,10,0.42) 55%,
    rgba(12,12,10,0.78) 100%
  );
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 24px; padding-top: var(--nav-h);
  max-width: 820px;
}
.hero-hl {
  /* font-family: var(--serif); */
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(240,235,224,0.65);
  line-height: 1.85; letter-spacing: 0.02em;
  margin-bottom: 52px;
  /* max-width: 440px;  */
  margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.scroll-text {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(240,235,224,0.35);
}
.scroll-bar {
  width: 0.5px; height: 0; background: var(--gold); opacity: 0.55;
  animation: scrollAnim 2.2s 2s infinite;
}
@keyframes scrollAnim {
  0%   { height:0; opacity:0; }
  50%  { opacity:.6; }
  100% { height:48px; opacity:0; }
}

/* ── HERO ENTRY ── */
.fade-up { opacity:0; transform:translateY(26px); animation: fadeUp 1s forwards; }
.d1 { animation-delay: 0.4s; }
.d2 { animation-delay: 0.7s; }
.d3 { animation-delay: 1.0s; }
.d4 { animation-delay: 1.4s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ── LOGO BADGE ── */
.logo-badge {
  display: flex; justify-content: center; align-items: center;
  padding: 52px 0 40px;
  background: var(--dark);
}
.logo-badge img { opacity: 0.8; }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark); gap: 0;
  min-height: 560px;
}
.about-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.kicker {
  font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  font-family: 'Opticiansans', system-ui, sans-serif;
}
.about-body {
  /* font-family: var(--serif); */
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300; line-height: 1.65; color: var(--cream);
  max-width: 440px;
}
.about-images {
  position: relative; overflow: hidden; min-height: 560px;
}
.about-img-tall {
  position: absolute; top:0; left:0;
  width: 60%; height: 100%; object-fit: cover;
  filter: brightness(0.9);
  transition: transform 8s ease;
}
.about-img-sq {
  position: absolute; bottom: 40px; right: 0;
  width: 50%; aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 8s ease;
}
.about-images:hover .about-img-tall,
.about-images:hover .about-img-sq { transform: scale(1.03); }

/* ── EVENTS STRIP ── */
.events-strip {
  overflow: hidden;
  background: var(--dark-2);
  padding: 0;
  cursor: grab;
}
.events-strip:active { cursor: grabbing; }
.events-track {
  display: flex; gap: 12px;
  padding: 40px 24px;
  width: max-content;
  animation: scrollTrack 40s linear infinite;
}
.events-track:hover { animation-play-state: paused; }
.event-tile {
  flex-shrink: 0;
  width: 220px;
  display: flex; flex-direction: column; gap: 12px;
}
.event-tile img {
  width: 220px; height: 280px; object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.4s, transform 0.5s;
}
.event-tile:hover img { filter: brightness(1); transform: scale(1.03); }
.event-tile span {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); transition: color 0.3s;
}
.event-tile:hover span { color: var(--gold); }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── COLLAGE BAND ── */
.collage-band {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr 2fr;
  gap: 2px;
  background: var(--dark-2);
  height: 320px;
}
.collage-band img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78);
  transition: filter 0.5s, transform 0.6s;
}
.collage-band img:hover { filter: brightness(1); transform: scale(1.04); }

/* ── EXPERIENCES ── */
.experiences {
  background: var(--dark);
  padding: clamp(80px, 12vw, 100px) clamp(24px, 4vw, 72px);
}
.exp-header {
  text-align: center;
  margin-bottom: clamp(48px, 10vw, 80px);
}
.exp-header h2 {
  /* font-family: var(--serif); */
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; line-height: 1.12;
  color: var(--cream); margin-bottom: clamp(16px, 3vw, 20px);
}
.exp-desc {
  font-size: clamp(13px, 1.8vw, 14px); font-weight: 300; color: var(--muted);
  line-height: 1.85; max-width: 560px; margin: 0 auto;
}

.exp-list { display: flex; flex-direction: column; gap: 2px; }

.exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 55vh, 520px);
  max-height: calc(100vh - 100px) !important;
  position: relative;
}
.exp-card-img {
  overflow: hidden;
}
.exp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.82);
  transition: filter 0.5s, transform 0.7s;
}
.exp-row:hover .exp-card-img img { filter: brightness(1); transform: scale(1.04); }
.exp-card-text {
  background: var(--dark-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(32px, 7vw, 72px) clamp(24px, 8vw, 72px);
  z-index: 200;
}
.exp-card-text h3 {
  /* font-family: var(--serif); */
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 300; color: var(--cream);
  margin-bottom: clamp(12px, 2vw, 16px); line-height: 1.15;
}
.exp-card-text p {
  font-size: clamp(13px, 1.8vw, 14px); font-weight: 300; color: var(--muted);
  line-height: 1.8; max-width: 100%;
  margin-bottom: clamp(16px, 2vw, 20px);
}

/* ── MEMBERSHIP ── */
.membership {
  background: var(--dark-2);
  padding: 108px 0;
}
.mem-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; max-width: 1240px; margin: 0 auto;
  padding: 0 72px;
}
.mem-left h2 {
  /* font-family: var(--serif); */
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.12;
  color: var(--cream); margin-bottom: 28px;
}
.mem-body {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.9; margin-bottom: 20px;
}
.mem-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 24px;
}
.mem-tags span {
  border: 0.5px solid rgba(184,150,90,0.3);
  padding: 8px 18px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: all 0.3s;
}
.mem-tags span:hover { border-color: var(--gold); color: var(--gold); }
.mem-note {
  /* font-family: var(--serif); */
  font-size: 16px; font-style: italic;
  color: rgba(240,235,224,0.4); line-height: 1.75;
  margin-bottom: 40px;
}
.mem-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.perks-heading {
  /* font-family: var(--serif); */
  font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
}
.perks-section-heading {
  /* font-family: var(--serif); */
  font-size: 16px; font-weight: 400;
  color: var(--cream); 
  /* margin-bottom: 16px; */
}
.perks-list {
  list-style: none;
  padding-left: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.perks-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(184,150,90,0.1);
  font-size: 13px; font-weight: 300; color: rgba(240,235,224,0.6);
  letter-spacing: 0.03em;
}
.perks-list li:nth-child(odd)  { padding-right: 32px; border-right: 0.5px solid rgba(184,150,90,0.1); }
.perks-list li:nth-child(even) { padding-left: 32px; }
.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── SUITES ── */
.suites {
  background: var(--dark);
  padding: 100px 72px;
}
.suites-header {
  text-align: center; margin-bottom: 64px;
}
.suites-header h2 {
  /* font-family: var(--serif); */
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; color: var(--cream);
  margin-bottom: 16px;
}
.suites-header p {
  font-size: 14px; font-weight: 300; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.85;
}
.suites-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; max-width: 1100px; margin: 0 auto;
  justify-content: center;
}
.suite-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  transition-delay: var(--d, 0s);
}
.suite-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
  transition: filter 0.5s, transform 0.7s;
}
.suite-card:hover img { filter: brightness(0.75); transform: scale(1.05); }
.suite-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(transparent 40%, rgba(12,12,10,0.88) 100%);
}
.suite-pricing {
  display: flex; gap: 28px; margin-bottom: 12px;
}
.suite-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,235,224,0.4); margin-bottom: 3px;
}
.suite-price {
  /* font-family: var(--serif); */
  font-size: 26px; font-weight: 400;
  color: var(--gold);
}
.suite-card h3 {
  /* font-family: var(--serif); */
  font-size: 24px; font-weight: 400; color: var(--cream);
}

/* ── JOIN CTA ── */
.join {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.join-bg {
  position: absolute; inset: 0;
}
.join-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.28);
  transition: transform 10s ease;
}
.join:hover .join-bg img { transform: scale(1.04); }
.join-scrim {
  position: absolute; inset: 0;
  background: rgba(12,12,10,0.3);
}
.join-body {
  position: relative; z-index: 2;
  padding: 80px 40px; max-width: 640px;
  gap: 24px; display: flex; flex-direction: column; align-items: center;
}
.join-body h2 {
  /* font-family: var(--serif); */
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300; color: var(--cream);
  line-height: 1.1; margin-bottom: 20px;
}
.join-body p {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.9; margin-bottom: 48px;
}

/* ── FOOTER ── */
.footer {
  background: #080806;
  border-top: 0.5px solid rgba(184,150,90,0.12);
  padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 11px; color: rgba(240,235,224,0.22); letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px; color: rgba(240,235,224,0.25);
  letter-spacing: 0.06em; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-join {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,235,224,0.3); transition: color 0.3s;
}
.footer-join:hover { color: var(--gold); }
.open-dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.25; transform:scale(0.7); }
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1; transform: translate(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .exp-card-text { padding: clamp(32px, 6vw, 56px) clamp(24px, 7vw, 56px); }
  .exp-card-text h3 { font-size: clamp(22px, 3.8vw, 40px); }
}

@media (max-width: 1024px) {
  .nav-center { display: none; }
  .nav-cta    { display: none; }
  .nav-burger { display: flex; }
  .nav        { padding: 0 28px; }
  .about      { grid-template-columns: 1fr; }
  .about-images { min-height: 340px; }
  .about-text { padding: 64px 36px; }
  .collage-band { grid-template-columns: repeat(3,1fr); height: 300px; }
  .col-d, .col-e { display: none; }
  .exp-row    { grid-template-columns: 1fr; min-height: auto; position: relative; }
  .exp-card-img { aspect-ratio: 16/9; min-height: 280px; }
  .exp-card-text { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,10,0.0) 0%, rgba(12,12,10,0.7) 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(32px, 6vw, 48px) clamp(24px, 6vw, 36px); }
  .mem-inner  { grid-template-columns: 1fr; gap: 56px; padding: 0 36px; }
  .suites-grid { grid-template-columns: 1fr 1fr; }
  .suites     { padding: 80px 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hero-hl { font-size: 48px; }
  .experiences { padding: 180px 24px; }
  .exp-header { padding: 0 24px; margin-bottom: 60px; }
  .exp-header h2 { font-size: clamp(28px, 6vw, 40px); }
  .exp-card-img { min-height: 240px; }
  .exp-card-text { background: linear-gradient(to bottom, rgba(12,12,10,0.0) 0%, rgba(12,12,10,0.75) 65%); }
  .exp-card-text h3 { font-size: clamp(20px, 5vw, 32px); margin-bottom: 12px; }
  .exp-card-text p { font-size: clamp(12px, 1.6vw, 13px); }
}

@media (max-width: 600px) {
  :root { --nav-h: 58px; }
  .hero-hl   { font-size: 40px; }
  .collage-band { grid-template-columns: 1fr 1fr; height: 220px; }
  .col-c     { display: none; }
  .perks-list { grid-template-columns: 1fr; }
  .perks-list li:nth-child(odd)  { padding-right: 0; border-right: none; }
  .perks-list li:nth-child(even) { padding-left: 0; }
  .suites-grid { grid-template-columns: 1fr; }
  .footer    { flex-direction: column; align-items: flex-start; }
  .exp-card-text { padding: 28px 20px; background: linear-gradient(to bottom, rgba(12,12,10,0.0) 0%, rgba(12,12,10,0.8) 60%); }
  .experiences { padding: 110px 20px; }
  .exp-header { padding: 0 20px; margin-bottom: 40px; }
  .exp-header h2 { font-size: clamp(24px, 7vw, 32px); }
  .exp-card-img { min-height: 200px; }
  .exp-card-text h3 { font-size: clamp(18px, 5.5vw, 28px); margin-bottom: 10px; }
  .exp-card-text p { font-size: clamp(11px, 1.5vw, 12px); line-height: 1.7; }
}

@media (max-width: 480px) {
  .experiences { padding: 78px 16px; }
  .exp-header { padding: 0 16px; margin-bottom: 32px; }
  .exp-header h2 { font-size: 22px; }
  .exp-desc { font-size: 13px; }
  .exp-card-img { aspect-ratio: 4/3; min-height: 160px; }
  .exp-card-text { padding: 24px 16px; background: linear-gradient(to bottom, rgba(12,12,10,0.1) 0%, rgba(12,12,10,0.85) 50%); }
  .exp-card-text h3 { font-size: 18px; margin-bottom: 8px; }
  .exp-card-text p { font-size: 11px; line-height: 1.6; }
}
