:root {
  --bg: #0a1515;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text: #f0ede8;
  --text-muted: rgba(240, 237, 232, 0.55);
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --blur: blur(14px);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.5s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 70px;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.2s var(--ease-out);
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  width: 260px;
}

.brand-preload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.progress-track {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.25s ease;
}

#progress-pct {
  font-size: 0.75rem;
  color: var(--text-muted);
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5%;
  transition: background 0.5s ease, padding 0.4s ease;
}

#main-nav.scrolled {
  background: rgba(10, 21, 21, 0.92);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 14px 5%;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 9px 22px;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:nth-child(3) {
  background: var(--gold);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 85px;
  left: 5%;
  width: 90%;
  height: auto;
  padding: 30px 0;
  background: rgba(10, 21, 21, 0.95);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 700;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  padding: 10px 20px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  width: 100%;
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--gold);
  transform: scale(1.05);
  letter-spacing: 0.05em;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

#scroll-story {
  height: 500vh;
  position: relative;
  background: #000;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#sequence-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 21, 21, 0.72) 100%),
    linear-gradient(to bottom, rgba(10, 21, 21, 0.55) 0%, transparent 30%, transparent 70%, rgba(10, 21, 21, 0.7) 100%);
  pointer-events: none;
}

#text-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.story-text {
  position: absolute;
  top: 50%;
  transform: translateY(-30px);
  width: 100%;
  padding: 0 8%;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

.story-text.active {
  opacity: 1;
  transform: translateY(-50%);
}

.story-text.center {
  text-align: center;
}

.story-text.left {
  text-align: left;
}

.story-text.right {
  text-align: right;
}

.story-text h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #8c6a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  margin-bottom: 12px;
}

.story-text p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(240, 237, 232, 0.85);
  letter-spacing: 0.06em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.story-text.hero h1 {
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #050505 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 25px rgba(201, 169, 110, 0.2));
}

.story-text.hero p {
  font-size: clamp(0.75rem, 1.8vw, 1.05rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
}

.story-text.bright-white h1 {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(201, 169, 110, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: opacity 0.6s ease;
}

.scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(240, 237, 232, 0.3);
  animation: scrollDrop 2.2s infinite var(--ease-out);
  transform-origin: top;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  40% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  41% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

#experience-section {
  padding: 130px 0;
  background: var(--bg);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
  animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }

  50% {
    box-shadow: 0 0 18px 2px rgba(201, 168, 76, 0.07);
  }
}

.glass-card::before,
.glass-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.glass-card::before {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  transform: translate(-10px, -10px);
}

.glass-card::after {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  transform: translate(10px, 10px);
}

.glass-card:hover {
  transform: translateY(4px) scale(0.98);
  box-shadow:
    inset 0 0 60px rgba(201, 168, 76, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.6);
  border-color: rgba(201, 168, 76, 0.15);
  animation: none;
}

.glass-card:hover::before,
.glass-card:hover::after {
  opacity: 0.6;
  transform: translate(0, 0);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.glass-card:hover .card-icon {
  transform: translateY(-6px) scale(1.1);
  filter: drop-shadow(0 6px 14px rgba(201, 168, 76, 0.45));
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.glass-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

#interior-section {
  padding: 100px 0 60px;
  background: var(--bg);
  overflow: hidden;
}

#interior-section .container {
  margin-bottom: 50px;
}

.showcase-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 20px 0 80px;
  cursor: grab;
}

.showcase-scroll::-webkit-scrollbar {
  display: none;
}

.showcase-track {
  display: flex;
  gap: 30px;
  padding: 0 5%;
  width: max-content;
}

.interior-card {
  position: relative;
  width: clamp(280px, 75vw, 520px);
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #111;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.interior-card:hover .card-media img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 21, 21, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.card-header {
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.8;
}

.interior-card h4 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.card-footer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease, margin-top 0.6s ease;
}

.sensory-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.interior-card:hover .card-footer,
.interior-card:focus .card-footer {
  max-height: 100px;
  opacity: 1;
  margin-top: 15px;
}

.interior-card:hover .card-header,
.interior-card:focus .card-header {
  transform: translateY(0);
}

.royal-filigree {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  color: var(--gold);
  opacity: 1;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.filigree-top {
  margin-top: 20px;
  margin-bottom: 30px;
}

.filigree-bottom {
  margin-top: 50px;
}

.royal-filigree svg {
  width: 100%;
  height: auto;
}

#packages-section {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #071010 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.5s ease,
    border-color 0.4s ease;
  overflow: hidden;
  animation: cardPulse 4s ease-in-out infinite;
}

.package-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(212, 184, 114, 0.08) 50%,
      rgba(255, 230, 120, 0.03) 60%,
      transparent 80%);
  transform: skewX(-20deg);
  transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 168, 76, 0.15),
    0 0 40px rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  background-color: rgba(201, 168, 76, 0.02);
  animation: none;
}

.package-card:hover::after {
  left: 140%;
}

.package-card.featured {
  border-color: rgba(201, 168, 76, 0.35);
  background-color: rgba(201, 168, 76, 0.04);
}

.package-card.featured::after {
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(212, 184, 114, 0.18) 50%,
      rgba(255, 230, 120, 0.08) 60%,
      transparent 80%);
}

.package-card.featured:hover {
  background-color: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 168, 76, 0.3),
    0 0 40px rgba(201, 168, 76, 0.18);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}

.pkg-badge {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.pkg-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.pkg-inclusions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pkg-inclusions li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.pkg-inclusions li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.pkg-ideal {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  font-style: italic;
}

.btn-pkg {
  margin-top: auto;
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.35s ease;
}

.btn-pkg:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-pkg-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg) !important;
}

.btn-pkg-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

#trust-section {
  padding: 130px 0;
  background: #071010;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 90px;
}

.trust-item {
  padding: 36px 28px;
  border-top: 1px solid var(--border);
}

.trust-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
  transform: rotate(-180deg) scale(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;

  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.trust-grid.visible .trust-item .trust-icon {
  transform: rotate(0deg) scale(1);
}

.trust-grid.visible .trust-item h4,
.trust-grid.visible .trust-item p {
  clip-path: polygon(0 0, 150% 0, 150% 100%, 0 100%);
}


.trust-grid.visible .trust-item:nth-child(1) .trust-icon {
  transition-delay: 0.10s;
}

.trust-grid.visible .trust-item:nth-child(1) h4 {
  transition-delay: 0.25s;
}

.trust-grid.visible .trust-item:nth-child(1) p {
  transition-delay: 0.40s;
}

.trust-grid.visible .trust-item:nth-child(2) .trust-icon {
  transition-delay: 0.20s;
}

.trust-grid.visible .trust-item:nth-child(2) h4 {
  transition-delay: 0.35s;
}

.trust-grid.visible .trust-item:nth-child(2) p {
  transition-delay: 0.50s;
}

.trust-grid.visible .trust-item:nth-child(3) .trust-icon {
  transition-delay: 0.30s;
}

.trust-grid.visible .trust-item:nth-child(3) h4 {
  transition-delay: 0.45s;
}

.trust-grid.visible .trust-item:nth-child(3) p {
  transition-delay: 0.60s;
}

.trust-grid.visible .trust-item:nth-child(4) .trust-icon {
  transition-delay: 0.40s;
}

.trust-grid.visible .trust-item:nth-child(4) h4 {
  transition-delay: 0.55s;
}

.trust-grid.visible .trust-item:nth-child(4) p {
  transition-delay: 0.70s;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;

  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color 0.4s, transform 0.4s;
}

.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial cite {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: normal;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials.visible .testimonial p,
.testimonials.visible .testimonial cite {
  clip-path: polygon(0 0, 150% 0, 150% 100%, 0 100%);
}

.testimonials.visible .testimonial:nth-child(1) p {
  transition-delay: 0.2s;
}

.testimonials.visible .testimonial:nth-child(1) cite {
  transition-delay: 0.8s;
}

.testimonials.visible .testimonial:nth-child(2) p {
  transition-delay: 0.6s;
}

.testimonials.visible .testimonial:nth-child(2) cite {
  transition-delay: 1.2s;
}

.testimonials.visible .testimonial:nth-child(3) p {
  transition-delay: 1.0s;
}

.testimonials.visible .testimonial:nth-child(3) cite {
  transition-delay: 1.6s;
}

#cta-section {
  min-height: 80vh;
  position: relative;
  background-image: url('/static/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 21, 21, 0.5) 0%, rgba(10, 21, 21, 0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
}

.cta-content {
  text-align: center;
  max-width: 680px;
}

.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}

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

.cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;

  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text) !important;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  text-decoration: none;
}

.cta-buttons a:hover {
  transform: translateY(-4px);
}


.cta-buttons .btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.cta-buttons .btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
  color: #25d366 !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold) !important;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

#site-footer {
  padding: 50px 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: none;
}

@media (min-width: 769px) {

  .packages-grid.reveal-stagger>*:nth-child(1) {
    transform: translateX(-60px);
  }

  .packages-grid.reveal-stagger>*:nth-child(2) {
    transform: translateY(40px);
  }

  .packages-grid.reveal-stagger>*:nth-child(3) {
    transform: translateX(60px);
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }

  #experience-section,
  #packages-section,
  #trust-section {
    padding: 80px 0;
  }

  #interior-section {
    padding: 80px 0 0;
  }

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

  .trust-grid {
    gap: 0;
  }

  .trust-item {
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  #cta-section {
    background-attachment: scroll;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .showcase-track {
    padding: 10px 5% 40px;
    gap: 14px;
  }

  .showcase-item {
    width: 80vw;
  }
}

.hero-about {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.hero-about img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.1s linear;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 15vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.hero-content p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.intro-block {
  padding: 130px 0;
  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 35px;
}

.intro-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.intro-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}

.intro-visual:hover img {
  transform: scale(1.1);
}

.culture-section {
  padding: 130px 0;
  background: #071010;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.culture-card {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.culture-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(201, 168, 76, 0.05);
}

.culture-card h4 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}

.culture-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.exp-scroll-section {
  padding: 130px 0;
  background: var(--bg);
  overflow: hidden;
}

.exp-scroll-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 5% 80px;
  scrollbar-width: none;
  cursor: grab;
}

.exp-scroll-track::-webkit-scrollbar {
  display: none;
}

.exp-scroll-item {
  flex-shrink: 0;
  width: clamp(280px, 80vw, 900px);
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.exp-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.exp-scroll-item:hover img {
  transform: scale(1.05);
}

.exp-scroll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 21, 21, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
}

.exp-scroll-overlay h4 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin: 0;
  max-width: 600px;
}

.why-section {
  padding: 130px 0;
  background: #050a0a;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}

.why-item {
  padding: 40px;
  border-left: 1px solid var(--gold-dim);
  transition: border-color 0.4s ease;
}

.why-item:hover {
  border-left-color: var(--gold);
}

.why-item h5 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.story-strip {
  padding: 130px 0;
  background: var(--bg);
}

.strip-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.strip-frame {
  aspect-ratio: 9/16;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.strip-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) brightness(0.6);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.strip-frame:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.15);
}

.strip-caption {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s var(--ease-out);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.strip-frame:hover .strip-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .strip-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .strip-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-scroll-item {
    width: 85vw;
  }

  .exp-scroll-overlay {
    padding: 30px;
  }
}

#faq-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: #05080A;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ripple-bg {
  width: 100%;
  height: 100%;
}

.wave-line {
  animation: flow 15s linear infinite;
  transform-origin: center;
}

.wave-2 {
  animation-direction: reverse;
  animation-duration: 20s;
}

.wave-3 {
  animation-duration: 25s;
}

@keyframes flow {
  0% {
    transform: translateX(0) scale(1.1);
  }

  50% {
    transform: translateX(-5%) scale(1.1);
  }

  100% {
    transform: translateX(0) scale(1.1);
  }
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.faq-item:hover,
.faq-item:focus,
.faq-item.active {
  background: rgba(201, 168, 76, 0.03);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.faq-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.4s ease;
}

.faq-item:hover .faq-icon,
.faq-item.active .faq-icon {
  background: var(--gold);
}

.faq-item:hover .faq-icon svg,
.faq-item.active .faq-icon svg {
  stroke: #05080A;
}

.faq-icon svg {
  width: 24px;
  height: 24px;
  transition: stroke 0.4s ease;
}

.faq-content {
  flex: 1;
}

.faq-question {
  font-family: var(--font-base);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 15px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer,
.faq-item:hover .faq-answer {
  max-height: 150px;
  opacity: 1;
  margin-top: 10px;
}

#btn-instagram {
    transition: all 0.4s ease !important;
}
#btn-instagram:hover {
    background-color: #E1306C !important;
    border-color: #E1306C !important;
    color: #ffffff !important;
}


#faq-section {
    position: relative;
    background: #050a0a; 
    overflow: hidden;
}

#faq-section .faq-container {
    position: relative;
    z-index: 2; 
}

.faq-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ripple-bg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-line {
    transform-origin: center;
    animation: floatingWaves infinite ease-in-out alternate;
}

.wave-1 { animation-duration: 8s; opacity: 0.7; }
.wave-2 { animation-duration: 12s; animation-delay: -3s; animation-direction: alternate-reverse; }
.wave-3 { animation-duration: 15s; animation-delay: -7s; }

@keyframes floatingWaves {
    0% {
        transform: translateY(-2px) scaleX(1);
    }
    100% {
        transform: translateY(2px) scaleX(1.05);
    }
}



#btn-instagram:hover {
    background: #E1306C !important;
    border-color: #E1306C !important;
    color: #ffffff !important;
}


.metallic-link {
    font-weight: 600;
    text-decoration: none;
    position: relative;
    background: linear-gradient(
        to right,
        #bf953f,
        #fcf6ba,
        #b38728,
        #fbf5b7,
        #aa771c
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.metallic-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #aa771c);
    transition: width 0.3s ease;
}

.metallic-link:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

.metallic-link:hover::after {
    width: 100%;
}

.powered-by {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
