/* ====================================================
   CUSTOM FONTS
==================================================== */
@font-face {
  font-family: 'Google Sans Flex';
  src: url('./fonts/GoogleSansFlex.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BeauRivage';
  src: url('./BeauRivage-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ====================================================
   VARIABLES
==================================================== */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --black: #050505;
  --dark: #0A0A0A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: #fff;
  font-family: 'Google Sans Flex', 'Georgia', sans-serif;
  overflow-x: hidden;
}

::selection {
  background: rgba(201, 169, 110, 0.3);
  color: #fff;
}

/* Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) #030303;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
::-webkit-scrollbar-track {
  background: #030303;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transition: background 0.4s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

/* ====================================================
   KEYFRAMES
==================================================== */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulse-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ====================================================
   UTILITY CLASSES
==================================================== */
.gold-text {
  background: linear-gradient(135deg, #C9A96E 0%, #E8D5A3 40%, #C9A96E 60%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-shimmer {
  background: linear-gradient(90deg, #C9A96E 0%, #E8D5A3 25%, #fff 50%, #E8D5A3 75%, #C9A96E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Scroll-reveal animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in-x {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease;
}
.scale-in-x.visible {
  transform: scaleX(1);
}

.scale-in-x-center {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.5s ease;
}
.scale-in-x-center.visible {
  transform: scaleX(1);
}

/* ====================================================
   HK BACK BUTTON
==================================================== */
.hk-back {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #050505;
  text-decoration: none;
  padding: 10px 18px;
  border: none;
  background: #EFEDE6;
  transition: background .3s, color .3s;
}
.hk-back:hover { background: #FF4D2E; color: #fff; }
.hk-back:hover .hk-star { fill: #fff; }
.hk-star { flex-shrink: 0; transition: fill .3s; }

/* ====================================================
   CUSTOM CURSOR
==================================================== */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C9A96E;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, background 0.3s ease;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* ====================================================
   NAV
==================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-color 0.6s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 169, 110, 0.1);
}

.nav-logo {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'BeauRivage', cursive;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:not(.nav-reserve):hover { color: #C9A96E; }

.nav-reserve {
  color: #050505 !important;
  background: #C9A96E;
  padding: 0.6rem 1.5rem;
}
.nav-reserve:hover { background: #E8D5A3 !important; }

/* ====================================================
   HERO
==================================================== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

#hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  will-change: transform;
  background: #050505;
}

#hero-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1.5s ease-in-out;
}

#video-fwd { opacity: 1; }
#video-rev { opacity: 0; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(5, 5, 5, 0.15) 0%,
    rgba(5, 5, 5, 0.05) 40%,
    rgba(5, 5, 5, 0.6) 100%
  );
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

#hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  will-change: opacity;
}

.hero-eyebrow {
  color: #C9A96E;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'BeauRivage', cursive;
}

.hero-title em {
  font-style: italic;
}

.hero-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  margin: 2rem auto;
  max-width: 200px;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: 'BeauRivage', cursive;
}

.hero-cta-wrap { margin-top: 3.5rem; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #C9A96E;
  padding: 0.9rem 3rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  font-family: inherit;
}
.hero-cta:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: #C9A96E;
}
.hero-cta:hover .discover-arrow { transform: translateY(3px); }

.discover-arrow {
  display: inline-block;
  line-height: 1;
  transition: transform 0.3s ease;
}

#scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #C9A96E, transparent);
  animation: pulse-down 2s ease-in-out infinite;
}

#scroll-indicator span {
  color: rgba(201, 169, 110, 0.5);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
}

/* ====================================================
   STORY
==================================================== */
#story {
  padding: 12rem 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.story-deco-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3));
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.eyebrow {
  color: #C9A96E;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.story-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  font-family: 'BeauRivage', cursive;
}

.story-ruler {
  height: 1px;
  background: linear-gradient(90deg, #C9A96E, transparent);
  margin-bottom: 2.5rem;
}

.story-body {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.story-quote {
  list-style: none;
  border-left: 2px solid rgba(201, 169, 110, 0.5);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-family: 'BeauRivage', cursive;
}

.story-stats {
  display: flex;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}
.stat:not(:last-child) {
  border-right: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  justify-content: center;
}
.stat-value .gold-text {
  font-size: 2.4rem;
  font-weight: 300;
}
.stat-unit {
  color: #C9A96E;
  font-size: 0.85rem;
}
.stat-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* Story image */
.story-image-wrap { position: relative; }

.story-img-inner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.story-img-parallax {
  position: absolute;
  inset: -10%;
  will-change: transform;
}
.story-img-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 5, 5, 0.6) 100%);
}

/* Gold corner accents */
.gold-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
}
.gold-corner.top-right {
  top: -12px; right: -12px;
  border-top: 1px solid rgba(201, 169, 110, 0.6);
  border-right: 1px solid rgba(201, 169, 110, 0.6);
}
.gold-corner.bottom-left {
  bottom: -12px; left: -12px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.6);
  border-left: 1px solid rgba(201, 169, 110, 0.6);
}

/* ====================================================
   FULLSCREEN QUOTE
==================================================== */
#quote {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
}

.quote-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 3rem;
  will-change: transform, opacity;
  opacity: 0;
}

.quote-line {
  height: 1px;
  width: 60px;
  background: rgba(201, 169, 110, 0.5);
  margin: 0 auto 2.5rem;
}
.quote-line-bottom {
  margin: 2.5rem auto 0;
}

.quote-text {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 750px;
  font-family: 'BeauRivage', cursive;
}

/* ====================================================
   SCENT NOTES
==================================================== */
#notes {
  padding: 14rem 0;
  background: #080808;
  position: relative;
  overflow: hidden;
}

.notes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.notes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}
.notes-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
}

.notes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.notes-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 5rem;
  font-family: 'BeauRivage', cursive;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.note-col { padding: 0 3rem; }

.note-icon {
  color: #C9A96E;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.note-category {
  color: #C9A96E;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.note-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.note-item {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: 'BeauRivage', cursive;
}
.note-1 { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; }
.note-2 { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }
.note-3 { color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

.note-sep {
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
  align-self: center;
}

/* ====================================================
   FEATURES
==================================================== */
#features {
  padding: 14rem 0;
  background: #0A0A0A;
  overflow: hidden;
  position: relative;
}

.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.features-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-bottom: 10rem;
}

.features-img-wrap { position: relative; }

.features-img-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.features-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-tagline .eyebrow { margin-bottom: 1.5rem; }

.features-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  font-family: 'BeauRivage', cursive;
}

.features-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.feature-item {
  padding: 3rem 2rem;
  text-align: center;
}
.feat-border {
  border-left: 1px solid rgba(201, 169, 110, 0.15);
}

.feature-icon {
  color: #C9A96E;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.feature-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.feature-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ====================================================
   ORNAMENT
==================================================== */
.ornament {
  height: 120px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}
.orn-v {
  width: 1px;
  height: 40px;
}
.orn-top { background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.4)); }
.orn-bot { background: linear-gradient(to bottom, rgba(201, 169, 110, 0.4), transparent); }
.orn-h {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
}

/* ====================================================
   RESERVE
==================================================== */
#reserve {
  position: relative;
  padding: 16rem 0;
  overflow: hidden;
  background: #050505;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reserve-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
}

.reserve-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.reserve-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'BeauRivage', cursive;
}

.reserve-ruler {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  margin: 2rem auto;
  max-width: 120px;
}

.reserve-body {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 3.5rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}
.cd-item {
  text-align: center;
  padding: 0 1.5rem;
}
.cd-value {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  min-width: 3ch;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.cd-sep {
  color: rgba(201, 169, 110, 0.3);
  font-size: 2rem;
  font-weight: 300;
  padding-top: 2px;
  line-height: 1;
}

/* Form */
.reserve-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.reserve-form input {
  flex: 1;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.reserve-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.reserve-form input:focus { border-bottom-color: #C9A96E; }

.reserve-form button {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #C9A96E;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}
.reserve-form button:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: #C9A96E;
}

.reserve-success {
  display: none;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 2rem 3rem;
  max-width: 480px;
  margin: 0 auto;
}
.reserve-success.visible { display: block; }
.reserve-success p {
  color: #C9A96E;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
}

/* ====================================================
   FOOTER
==================================================== */
footer {
  padding: 6rem 4rem;
  background: #030303;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.footer-brand { text-align: center; }

.footer-logo {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'BeauRivage', cursive;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.footer-ruler {
  height: 1px;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: #C9A96E; }
.footer-link-disabled {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: default;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

/* ====================================================
   MOBILE RESPONSIVE
==================================================== */

/* Touch devices: restore cursor & hide custom cursor elements */
@media (pointer: coarse) {
  * { cursor: auto !important; }
  #cursor-dot, #cursor-ring { display: none !important; }
}

@media (max-width: 768px) {
  /* NAV */
  #nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-links {
    display: none;
  }

  /* STORY */
  #story {
    padding: 6rem 0;
  }
  .story-inner {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 0 1.5rem;
  }
  .story-image-wrap {
    order: -1;
    width: 100%;
    transform: translateY(20px);
  }
  .story-image-wrap.visible {
    transform: translateY(0);
  }
  .story-text {
    width: 100%;
  }
  .story-img-inner {
    aspect-ratio: 4 / 3;
  }

  /* QUOTE */
  .quote-content {
    padding: 0 1.5rem;
  }
  .quote-text {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  /* NOTES */
  #notes {
    padding: 6rem 0;
  }
  .notes-inner {
    padding: 0 1.5rem;
  }
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .note-sep {
    display: none;
  }
  .note-col {
    padding: 0;
  }

  /* FEATURES */
  #features {
    padding: 6rem 0;
  }
  .features-inner {
    padding: 0 1.5rem;
  }
  .features-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .features-tagline {
    width: 100%;
  }
  .features-img-wrap {
    max-width: 320px;
    width: 100%;
    transform: translateY(20px);
  }
  .features-img-wrap.visible {
    transform: translateY(0);
  }
  .features-img-frame {
    aspect-ratio: 3 / 4;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-border:nth-child(odd) {
    border-left: none;
  }

  /* RESERVE */
  #reserve {
    padding: 6rem 0;
  }
  .reserve-inner {
    padding: 0 1.5rem;
  }
  .reserve-form {
    flex-direction: column;
    gap: 1rem;
  }
  .reserve-form button {
    padding: 0.9rem 2rem;
    width: 100%;
  }

  /* COUNTDOWN */
  .cd-value {
    font-size: 1.4rem;
  }
  .cd-sep {
    font-size: 1.1rem;
  }
  .cd-item {
    padding: 0 0.6rem;
  }

  /* FOOTER */
  footer {
    padding: 4rem 1.5rem;
  }
}
