:root {
  --navy: #071425;
  --navy-2: #0b1d34;
  --gold: #d9b46c;
  --gold-2: #f0d58c;
  --cream: #f8f5ef;
  --slate: #1d2939;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.site-header {
  background: rgba(5, 12, 23, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(5, 12, 23, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(217, 180, 108, .24), rgba(255, 255, 255, .05));
  border: 1px solid rgba(217, 180, 108, .45);
  box-shadow: 0 0 30px rgba(217, 180, 108, .12);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-link {
  display: block;
  padding: .9rem 0;
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--gold);
}

.hero-section {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero-aurora {
  background:
    radial-gradient(circle at 20% 30%, rgba(217, 180, 108, .16), transparent 25%),
    radial-gradient(circle at 70% 10%, rgba(78, 169, 255, .12), transparent 24%),
    linear-gradient(180deg, transparent 55%, var(--navy) 100%);
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section {
  padding: 6.5rem 0;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: .98;
  color: #fff;
  letter-spacing: -.02em;
}

.section-copy {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
  font-size: 1.08rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn-primary {
  display: inline-flex;
  padding: .95rem 1.45rem;
  color: #08111f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 20px 50px rgba(217, 180, 108, .22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(217, 180, 108, .28);
}

.btn-secondary,
.btn-outline {
  display: inline-flex;
  padding: .9rem 1.35rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.image-frame {
  position: relative;
  border-radius: 2rem;
  padding: .75rem;
  background: linear-gradient(135deg, rgba(217, 180, 108, .42), rgba(255, 255, 255, .08));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 1.2rem -1rem -1rem 1.2rem;
  border: 1px solid rgba(217, 180, 108, .25);
  border-radius: 2rem;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.hotel-card,
.package-card,
.review-card,
.detail-card,
.form-card,
.contact-panel,
.responsible-panel {
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 25px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.hotel-card {
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.hotel-card img {
  transition: transform .6s ease;
}

.hotel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 180, 108, .45);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
}

.hotel-card:hover img {
  transform: scale(1.06);
}

.package-card,
.review-card {
  border-radius: 1.5rem;
  padding: 2rem;
}

.package-card {
  transition: transform .25s ease, border-color .25s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 180, 108, .5);
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border-radius: 1rem;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.feature-chip i {
  color: var(--gold);
}

.responsible-panel {
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.stat-card {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
}

.stat-card span {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
}

.stat-card p {
  color: rgba(255, 255, 255, .68);
  margin-top: .25rem;
}

.detail-card {
  border-radius: 2rem;
  overflow: hidden;
}

.mini-package {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .05);
  padding: 1.25rem;
  transition: transform .2s ease, border-color .2s ease;
}

.mini-package:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 180, 108, .45);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.timeline-item {
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: 0 1.2rem 1.2rem 0;
  background: rgba(255, 255, 255, .055);
}

.timeline-item span {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

.timeline-item p {
  color: rgba(255, 255, 255, .72);
  margin-top: .75rem;
  line-height: 1.7;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, .68);
  transition: color .2s ease, transform .2s ease;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(217, 180, 108, .35);
  background: rgba(255, 255, 255, .05);
  transition: transform .2s ease, background .2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(217, 180, 108, .15);
}

.contact-panel {
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.contact-panel i {
  color: var(--gold);
  margin-top: .2rem;
}

.contact-panel strong {
  color: #fff;
  margin-right: .25rem;
}

.contact-panel a {
  color: var(--gold);
}

.form-card {
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  margin-bottom: .55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  padding: .95rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group select option {
  color: #071425;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 180, 108, .1);
}

.input-error {
  border-color: #ff8a8a !important;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(217, 180, 108, .3);
  border-radius: 1.5rem;
  background: rgba(5, 12, 23, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
  padding: 1.25rem;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .68);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal {
  width: min(620px, 100%);
  border: 1px solid rgba(217, 180, 108, .35);
  border-radius: 1.5rem;
  background: #071425;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
  padding: 2rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .045);
  margin-top: .8rem;
}

.toggle-row input {
  width: 42px;
  height: 22px;
  accent-color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1024px) {
  .hero-section {
    background-attachment: scroll;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .image-frame img {
    height: 360px;
  }

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

  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
  }
}


.hotel-page-hero {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hotel-fact-strip {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.hotel-fact-strip div {
  padding: 1.35rem;
  background: rgba(5, 12, 23, .62);
}

.hotel-fact-strip strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .9;
}

.hotel-fact-strip span {
  display: block;
  margin-top: .45rem;
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
}

.destination-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .27);
  isolation: isolate;
}

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 20, 37, .1), rgba(5, 12, 23, .86));
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.02);
  transition: transform .7s ease, filter .7s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.destination-card>div {
  padding: 1.5rem;
}

.destination-card p {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

.destination-card h3 {
  margin-top: .55rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.destination-card span {
  display: block;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  margin-top: .8rem;
}

.collection-feature {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
  transition: transform .25s ease, border-color .25s ease;
}

.collection-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 180, 108, .42);
}

.collection-feature i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(217, 180, 108, .35);
  background: rgba(217, 180, 108, .08);
  margin-bottom: 1.2rem;
}

.collection-feature h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 1.85rem;
}

.collection-feature p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
  margin-top: .6rem;
}

.hotel-editorial-card {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .032));
  box-shadow: 0 32px 100px rgba(0, 0, 0, .3);
}

.hotel-editorial-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hotel-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .8s ease;
}

.hotel-editorial-card:hover .hotel-editorial-media img {
  transform: scale(1.05);
}

.hotel-floating-note {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(5, 12, 23, .72);
  backdrop-filter: blur(14px);
}

.hotel-floating-note span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.hotel-floating-note strong {
  display: block;
  margin-top: .2rem;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hotel-editorial-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .82);
  padding: .7rem .95rem;
  font-size: .92rem;
}

.amenity-pill i {
  color: var(--gold);
}

.insight-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .045);
  padding: 1.25rem;
}

.insight-card h3 {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: .9rem;
}

.insight-card h3 i {
  color: var(--gold);
  font-size: 1.1rem;
}

.insight-card p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
}

.insight-card ul {
  display: grid;
  gap: .75rem;
}

.insight-card li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255, 255, 255, .74);
  line-height: 1.55;
}

.insight-card li i {
  color: var(--gold);
  margin-top: .25rem;
}

.stay-tier-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.35rem;
  padding: 1.45rem;
  background: rgba(255, 255, 255, .05);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.stay-tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 180, 108, .48);
  background: rgba(255, 255, 255, .07);
}

.tier-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(217, 180, 108, .34);
  background: rgba(217, 180, 108, .08);
  flex: 0 0 auto;
}

.tier-list {
  display: grid;
  gap: .65rem;
}

.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
  line-height: 1.45;
}

.tier-list i {
  color: var(--gold);
  margin-top: .2rem;
}

@media (max-width: 1024px) {
  .hotel-page-hero {
    background-attachment: scroll;
  }

  .hotel-editorial-media,
  .hotel-editorial-media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hotel-fact-strip {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .destination-card {
    min-height: 330px;
  }

  .hotel-editorial-media,
  .hotel-editorial-media img {
    min-height: 340px;
  }

  .hotel-floating-note strong {
    font-size: 1.45rem;
  }
}



.policy-hero {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .065);
  color: rgba(255, 255, 255, .78);
  padding: .72rem 1rem;
  font-size: .9rem;
  backdrop-filter: blur(14px);
}

.toc-card,
.legal-card,
.legal-intro,
.notice-band {
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  box-shadow: 0 25px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.toc-card {
  border-radius: 1.5rem;
  padding: 1.4rem;
}

.policy-toc {
  display: grid;
  gap: .45rem;
}

.policy-toc a {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255, 255, 255, .72);
  border-radius: .95rem;
  padding: .72rem .8rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.policy-toc a:hover {
  color: var(--gold);
  background: rgba(217, 180, 108, .08);
  transform: translateX(4px);
}

.policy-toc i {
  color: var(--gold);
  font-size: .75rem;
}

.legal-intro {
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.legal-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  transition: transform .25s ease, border-color .25s ease;
}

.legal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 180, 108, .42);
}

.legal-section-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: rgba(217, 180, 108, .18);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.legal-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(217, 180, 108, .35);
  background: rgba(217, 180, 108, .08);
}

.legal-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.legal-card p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.86;
  margin-top: .9rem;
}

.legal-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.2rem;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

.policy-list i {
  color: var(--gold);
  margin-top: .25rem;
}

.notice-band {
  border-radius: 1.6rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  border-color: rgba(217, 180, 108, .25);
}

.notice-band i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(217, 180, 108, .1);
  border: 1px solid rgba(217, 180, 108, .34);
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .policy-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .policy-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-card .flex {
    gap: 1rem;
  }

  .legal-icon {
    width: 44px;
    height: 44px;
  }

  .notice-band {
    grid-template-columns: 1fr;
  }
}