/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f5f1eb;
  --bg-soft: #fcfaf7;
  --text: #1d1712;
  --muted: #70655c;
  --gold: #c39a5d;
  --gold-soft: #e9d1ae;
  --dark: #14110f;
  --dark-2: #1d1815;
  --line: #1d17121f;
  --line-light: #ffffff1f;
  --white: #fff;
  --shadow-soft: 0 24px 60px #17110c1f;
  --shadow-strong: 0 24px 70px #0000003d;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--bg);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

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

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

p, li {
  line-height: 1.75;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.cover-image {
  object-fit: cover;
}

.lux-page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  color: var(--white);
  background: var(--dark);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(#0808089e 0%, #08080861 30%, #080808b8 100%), linear-gradient(90deg, #00000070 0%, #0000001f 46%, #0000008a 100%);
}

.hero-header, .hero-content {
  z-index: 2;
  position: relative;
}

.hero-header {
  padding-top: 20px;
}

.hero-header-inner {
  border: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #110e0c6b;
  border-radius: 999px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  display: grid;
}

.hero-brand {
  align-items: center;
  gap: 14px;
  display: inline-flex;
}

.hero-brand-logo {
  object-fit: contain;
  width: 58px;
  height: auto;
}

.hero-brand-copy strong, .hero-brand-copy span {
  display: block;
}

.hero-brand-copy strong {
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.2rem;
}

.hero-brand-copy span {
  color: #ffffffb8;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .88rem;
}

.hero-nav {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  display: flex;
}

.hero-nav a {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffffe6;
  font-size: .79rem;
  transition: color .18s, opacity .18s;
}

.hero-nav a:hover {
  color: var(--gold-soft);
}

.hero-header-cta, .primary-link, .secondary-link {
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.hero-header-cta, .primary-link {
  background: var(--gold);
  color: var(--dark);
}

.hero-header-cta:hover, .primary-link:hover, .secondary-link:hover {
  transform: translateY(-1px);
}

.secondary-link {
  color: var(--white);
  background: #ffffff0f;
  border: 1px solid #ffffff57;
}

.secondary-link-dark {
  color: var(--dark);
  background: none;
  border-color: #14110f29;
}

.hero-content {
  width: var(--container);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 380px);
  align-items: end;
  gap: 32px;
  margin: auto auto 64px;
  display: grid;
}

.hero-copy {
  max-width: 780px;
  padding-top: 120px;
}

.section-kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
}

.section-kicker:before {
  content: "";
  background: currentColor;
  width: 42px;
  height: 1px;
}

.section-kicker.light {
  color: var(--gold-soft);
}

.hero-copy h1, .section-heading h2, .intro-copy h2, .rooms-copy h2, .reservation-copy h2, .contact-copy h2 {
  letter-spacing: -.03em;
  margin: 18px 0 0;
  font-family: Georgia, Times New Roman, serif;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: .95;
}

.hero-copy h2 {
  color: #ffffffeb;
  max-width: 760px;
  margin: 12px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.hero-copy p, .section-heading p, .intro-copy p, .rooms-copy p, .reservation-copy p, .contact-copy p, .offer-card p, .room-tile p, .attraction-card p {
  color: inherit;
  font-size: 1.05rem;
}

.hero-copy p {
  color: #ffffffc7;
  max-width: 720px;
  margin-top: 22px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  display: flex;
}

.hero-side-card {
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-strong);
  background: #0f0c0a9e;
  border: 1px solid #ffffff1f;
  align-self: end;
  padding: 28px;
}

.side-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-size: .76rem;
  font-weight: 800;
  display: inline-block;
}

.hero-side-card ul, .benefits-list {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.hero-side-card li, .benefits-list li {
  padding-left: 24px;
  position: relative;
}

.hero-side-card li:before, .benefits-list li:before {
  content: "";
  background: var(--gold);
  border-radius: 999px;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 11px;
  left: 0;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.section-dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-center .section-kicker {
  justify-content: center;
}

.section-heading-center .section-kicker:before {
  display: none;
}

.light-heading p {
  color: #ffffffbd;
}

.section-heading h2, .intro-copy h2, .rooms-copy h2, .reservation-copy h2, .contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.04;
}

.section-heading p, .intro-copy p, .rooms-copy p, .reservation-copy p, .contact-copy p, .offer-card p, .room-tile p, .attraction-card p {
  color: var(--muted);
}

.intro-grid, .rooms-layout, .reservation-grid, .contact-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 36px;
  display: grid;
}

.intro-gallery {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.gallery-card {
  border-radius: var(--radius-lg);
  min-height: 250px;
  box-shadow: var(--shadow-soft);
  background: #ddd;
  position: relative;
  overflow: hidden;
}

.gallery-tall {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-wide {
  grid-column: span 1;
}

.mini-facts, .offer-grid, .rooms-grid, .attractions-grid, .reservation-facts {
  gap: 18px;
  display: grid;
}

.mini-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.mini-fact-card {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.mini-fact-card span, .reservation-fact span, .contact-panel span {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .85rem;
  display: block;
}

.mini-fact-card strong, .reservation-fact strong {
  font-size: 1.16rem;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card, .room-tile, .attraction-card, .reservation-card, .contact-panel {
  border-radius: var(--radius-lg);
}

.offer-card {
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  padding: 30px;
}

.offer-index {
  color: #ffffff57;
  margin-bottom: 20px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2rem;
  display: inline-block;
}

.offer-card h3, .room-tile h3, .attraction-card h3 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.6rem;
  line-height: 1.16;
}

.offer-card strong {
  color: var(--gold-soft);
  margin-top: 16px;
  font-size: .96rem;
  display: block;
}

.offer-card p {
  color: #ffffffbd;
  margin-bottom: 0;
}

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

.room-tile {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.room-tile span {
  color: #7d5b2e;
  background: #c39a5d24;
  border-radius: 999px;
  margin-bottom: 16px;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 700;
  display: inline-flex;
}

.room-tile p {
  margin-bottom: 0;
}

.reservation-strip {
  color: var(--white);
  background: linear-gradient(#1a1512 0%, #120f0d 100%);
}

.reservation-copy p {
  color: #ffffffc7;
}

.reservation-card {
  color: var(--dark);
  box-shadow: var(--shadow-strong);
  background: #f8f2ea;
  padding: 28px;
}

.reservation-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-fact {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #14110f14;
  padding: 18px;
}

.reservation-actions {
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  display: flex;
}

.attractions-layout {
  gap: 28px;
  display: grid;
}

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

.attraction-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.contact-footer {
  color: var(--white);
  background: linear-gradient(#16120f 0%, #0f0c0a 100%);
  padding-bottom: 28px;
}

.contact-grid {
  align-items: start;
}

.contact-copy p {
  color: #ffffffbd;
}

.contact-panel {
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  gap: 24px;
  padding: 32px;
  display: grid;
}

.contact-panel a, .contact-panel p {
  color: #ffffffe6;
  margin: 0;
  font-size: 1.02rem;
  display: block;
}

.contact-panel a + a, .contact-panel a + p {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid #ffffff14;
  margin-top: 36px;
  padding-top: 22px;
}

.footer-bottom p {
  color: #ffffff8f;
  margin: 0;
  font-size: .92rem;
}

@media (max-width: 1120px) {
  .hero-header-inner, .hero-content, .intro-grid, .rooms-layout, .reservation-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 140px;
  }

  .hero-header-inner {
    border-radius: 28px;
  }

  .hero-nav {
    justify-content: flex-start;
  }

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

  .mini-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-header {
    padding-top: 14px;
  }

  .hero-header-inner {
    gap: 16px;
    padding: 18px;
  }

  .hero-nav {
    gap: 12px 18px;
  }

  .hero-content {
    gap: 22px;
    margin: 60px auto 42px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-side-card {
    max-width: none;
  }

  .intro-gallery, .rooms-grid, .attractions-grid, .reservation-facts {
    grid-template-columns: 1fr;
  }

  .gallery-tall {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-header-cta {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-copy h2, .section-heading h2, .intro-copy h2, .rooms-copy h2, .reservation-copy h2, .contact-copy h2 {
    font-size: 2.15rem;
  }

  .hero-actions, .reservation-actions {
    flex-direction: column;
  }

  .primary-link, .secondary-link {
    width: 100%;
  }

  .mini-facts {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/