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

:root {
  --black: #080808;
  --deep: #0d0d0d;
  --charcoal: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --cream: #f5efe6;
  --muted: #8a8070;
  --white: #faf8f5;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  transition: background 0.5s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.logo {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--white);
  text-decoration: none;
}
.logo span {
  color: var(--gold);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 48px;
}
nav ul li a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://picsum.photos/seed/maldives/1800/1000");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 1) 0%,
    rgba(8, 8, 8, 0.55) 45%,
    rgba(8, 8, 8, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 90px;
  max-width: 820px;
  animation: heroFadeUp 1.2s 0.4s both;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  font-size: 1rem;
  color: rgba(245, 239, 230, 0.65);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 17px 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, gap 0.3s;
}
.btn-primary::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  gap: 20px;
}
.btn-primary:hover::after {
  transform: translateX(4px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 90px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroFadeUp 1.4s 0.8s both;
}
.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

/* ── SECTIONS ── */
.section-padding {
  padding: 130px 60px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 72px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── DESTINATIONS ── */
#destinations {
  background: var(--deep);
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: none;
}
.card:first-child,
.card:nth-child(2) {
  aspect-ratio: 3/4;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.65) saturate(0.8);
}
.card:hover img {
  transform: scale(1.06);
  filter: brightness(0.45) saturate(0.6);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.3) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}
.card .locations {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 16px;
}
.card .description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.75);
  max-width: 340px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.card:hover .description {
  max-height: 100px;
  opacity: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.price-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
}
.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 12px 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, background 0.3s,
    border-color 0.3s, color 0.3s;
}
.btn-card::after {
  content: "→";
}
.card:hover .btn-card {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ── FEATURES ── */
#why-us {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}
.features-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 239, 230, 0.55);
  max-width: 400px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.feature-item {
  padding: 52px 40px 52px 0;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.4s;
}
.feature-item:last-child {
  border-right: none;
  padding-right: 0;
}
.feature-item:not(:first-child) {
  padding-left: 40px;
}
.feature-item:hover {
  background: rgba(201, 168, 76, 0.02);
}
.icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.feature-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.feature-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245, 239, 230, 0.5);
}

/* ── STATS STRIP ── */
.number-strip {
  background: var(--gold);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(8, 8, 8, 0.2);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(8, 8, 8, 0.6);
}

/* ── CONTACT ── */
#contact {
  background: var(--black);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-info h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.contact-info > p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 52px;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail .label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail .value {
  font-size: 0.9rem;
  color: var(--white);
}
.contact-detail .value a {
  color: var(--white);
  text-decoration: none;
}
.contact-detail .value a:hover {
  color: var(--gold);
}

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.field {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: none;
  margin-right: -1px;
  color: var(--gold);
}
.field:last-child {
  margin-right: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  transition: background 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 239, 230, 0.3);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(201, 168, 76, 0.04);
}
.contact-form select option {
  background: var(--charcoal);
}
.single-field {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: none;
}
.single-field.textarea-wrap {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.single-field.textarea-wrap textarea {
  resize: none;
  min-height: 160px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 22px 40px;
  font-size: 0.75rem;
}

/* ── FOOTER ── */
.premium-footer {
  background: var(--deep);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245, 239, 230, 0.4);
  max-width: 320px;
  margin-top: 16px;
}
.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer-column h4 {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-contact-info {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.3);
  display: flex;
  gap: 16px;
}
.footer-contact-info a {
  color: rgba(245, 239, 230, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-info a:hover {
  color: var(--gold);
}
.copyright {
  font-size: 0.72rem;
  color: rgba(245, 239, 230, 0.2);
  letter-spacing: 0.05em;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .navbar nav {
    display: none;
  }
  .navbar {
    padding: 22px 28px;
    justify-content: center;
  }
  .navbar.scrolled {
    padding: 16px 28px;
  }
  .hero-content {
    padding: 0 28px 70px;
  }
  .scroll-hint {
    display: none;
  }
  .section-padding {
    padding: 80px 28px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .card {
    aspect-ratio: 4/3 !important;
  }
  .card-content {
    text-align: center;
    padding: 28px 24px;
  }
  .card .description {
    max-height: none;
    opacity: 1;
    margin: 0 auto;
  }
  .card-footer {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .btn-card {
    opacity: 1;
    transform: none;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
  }
  .section-label {
    justify-content: center;
  }
  .features-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    padding: 36px 0 !important;
  }
  .number-strip {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(8, 8, 8, 0.2);
    padding: 24px 0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .field {
    margin-right: 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-contact-info {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .premium-footer {
    padding: 60px 28px 32px;
  }
}
