:root {
  --bg: #f6f1e8;
  --bg-strong: #f0e4d0;
  --surface: rgba(255, 251, 245, 0.8);
  --surface-strong: #fffaf3;
  --text: #1d1a17;
  --muted: #655c53;
  --line: rgba(49, 36, 23, 0.12);
  --accent: #a86f42;
  --accent-deep: #6a4020;
  --accent-soft: rgba(168, 111, 66, 0.14);
  --shadow: 0 28px 90px rgba(52, 33, 13, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 183, 138, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(104, 139, 96, 0.18), transparent 22%),
    linear-gradient(180deg, #f8f4ed 0%, #f5ecde 100%);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .page-shell,
body.is-loading .mobile-booking-bar {
  opacity: 0;
  visibility: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

.page-shell {
  width: min(calc(100% - 32px), 1360px);
  margin: 16px auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 40px;
  background: rgba(252, 248, 241, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  top: 50%;
  left: 50%;
  z-index: 80;
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
  transform: translate(-50%, -50%);
  animation: loaderDrift 2.8s ease-in-out infinite;
  background: rgba(244, 236, 223, 0.82);
  backdrop-filter: blur(10px);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(-50% - 8px)) scale(0.96);
}

.page-loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 249, 242, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(86, 49, 18, 0.12);
  transform: translate(-50%, -50%);
}

.loader-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(145deg, #c58d5d, #7f5230);
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 24px rgba(86, 49, 18, 0.16);
  animation: loaderFloat 2.8s ease-in-out infinite;
}

.loader-copy {
  display: grid;
  gap: 8px;
  flex: 1;
}

.loader-copy strong {
  font-size: 0.92rem;
  color: #342116;
}

.loader-line {
  width: 100%;
  height: 6px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(73, 48, 25, 0.12);
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d3a47a, #84522d, #d3a47a);
  animation: loaderProgress 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 40px);
  background: rgba(250, 245, 237, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(78, 55, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, #c58d5d, #7f5230);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.header-cta,
.button,
.contact-details a {
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.header-cta {
  padding: 12px 18px;
  background: var(--text);
  color: white;
}

.header-cta:hover,
.button:hover,
.contact-details a:hover {
  transform: translateY(-2px);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  min-height: calc(100vh - 110px);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(20, 17, 15, 0.78) 8%, rgba(20, 17, 15, 0.3) 52%, rgba(20, 17, 15, 0.15) 100%),
    url("assets/images/20250819_132520.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(248, 244, 237, 0.92));
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  color: white;
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d3b8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.offer-body p,
.soft-panel p,
.contact-copy p,
.amenities-list p,
.area-copy p,
.area-list li {
  line-height: 1.75;
  color: inherit;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
  color: rgba(255, 248, 240, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  padding: 15px 24px;
}

.button-primary {
  background: #f0d2b4;
  color: #29170c;
  box-shadow: 0 12px 24px rgba(240, 210, 180, 0.25);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.button-dark {
  background: var(--text);
  color: white;
}

.area .button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface-strong);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  line-height: 1.55;
}

.booking-panel {
  align-self: center;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 241, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 70px rgba(34, 20, 7, 0.25);
}

.offer-media img,
.intro-visual img,
.mini-gallery img,
.amenities-stack img,
.gallery-tile img,
.area-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-panel h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.booking-panel-top p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-facts,
.booking-actions,
.booking-contact {
  margin-top: 22px;
}

.booking-facts {
  display: grid;
  gap: 12px;
}

.booking-facts div,
.booking-contact {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.booking-facts span,
.booking-contact span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-contact strong,
.booking-contact a {
  display: block;
}

.booking-contact a {
  margin-top: 6px;
  color: var(--accent-deep);
  text-decoration: none;
}

.chip,
.capacity {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.chip {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.capacity {
  background: rgba(36, 27, 19, 0.08);
  color: var(--text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stats article,
.offer-card,
.soft-panel,
.amenities-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.8);
  box-shadow: 0 18px 40px rgba(80, 51, 20, 0.08);
}

.stats article {
  padding: 24px;
}

.stats strong {
  display: block;
  font-size: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.stats span,
.section-heading p,
.offer-body p,
.offer-body li,
.soft-panel p,
.amenities-list p,
.contact-copy p,
.contact-details span,
.area-list li {
  color: var(--muted);
}

.intro-grid,
.amenities-layout,
.area-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.intro-grid {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

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

.section-heading h2 {
  margin-bottom: 14px;
}

.intro-visual,
.area-poster {
  margin: 0;
  aspect-ratio: 4 / 5;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.intro-copy {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  height: 100%;
}

.area-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.area-copy {
  display: grid;
  align-content: stretch;
  gap: 18px;
  height: 100%;
}

.area-copy .soft-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-list {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 18px 40px rgba(80, 51, 20, 0.08);
  list-style: none;
  padding-left: 0;
}

.area-list li {
  position: relative;
  padding-left: 22px;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.area-list li + li {
  padding-top: 10px;
  border-top: 1px solid rgba(49, 36, 23, 0.08);
}

.area-poster img {
  height: 100%;
  object-fit: cover;
}

.soft-panel {
  padding: 28px;
}

.soft-panel h3,
.amenities-list h3,
.offer-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.mini-gallery img,
.amenities-stack img {
  min-height: 250px;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.offer-card {
  overflow: hidden;
}

.featured-card {
  transform: translateY(-14px);
}

.offer-media {
  height: 290px;
}

.offer-body {
  padding: 24px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.offer-body p {
  margin: 0 0 18px;
}

.fit-tag {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
}

.comparison {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 18px 40px rgba(80, 51, 20, 0.08);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr 1.15fr;
  gap: 16px;
  padding: 18px 20px;
}

.comparison-head {
  background: rgba(34, 24, 15, 0.06);
  font-weight: 800;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span,
.comparison-head span {
  color: var(--muted);
}

.offer-body ul,
.area-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.amenities-layout {
  align-items: start;
}

.amenities-list {
  display: grid;
  gap: 18px;
}

.amenities-list article {
  padding: 24px 24px 22px;
}

.amenities-list span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.amenities-stack {
  display: grid;
  gap: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 18px 40px rgba(80, 51, 20, 0.08);
}

.trust-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.trust-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-tile {
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(60, 35, 11, 0.1);
}

.gallery-tile.large {
  grid-column: span 2;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile img {
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: clamp(28px, 5vw, 42px);
  background:
    radial-gradient(circle at top right, rgba(226, 191, 145, 0.35), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(243, 232, 216, 0.96));
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details div {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  color: inherit;
}

.contact-details strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.mobile-booking-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(34, 20, 7, 0.18);
}

.mobile-booking-bar a {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  color: white;
  background: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 11, 7, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  width: min(1080px, 100%);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  background: #100d0b;
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: rgba(255, 244, 232, 0.82);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes loaderDrift {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(calc(-50% - 8px), calc(-50% + 2px));
  }
  50% {
    transform: translate(-50%, calc(-50% + 8px));
  }
  75% {
    transform: translate(calc(-50% + 8px), calc(-50% + 2px));
  }
}

@keyframes loaderProgress {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-loader {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .intro-grid,
  .amenities-layout,
  .area-layout,
  .contact-card,
  .offer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .booking-panel {
    max-width: 720px;
  }

  .featured-card {
    transform: none;
  }

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

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 16px), 1360px);
    margin: 8px auto;
    border-radius: 28px;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-points,
  .stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-actions {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-tile.large,
  .gallery-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .intro-visual,
  .area-poster {
    aspect-ratio: 16 / 11;
  }

  .mobile-booking-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 42px 16px;
  }

  .site-header {
    padding: 16px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-points {
    gap: 10px;
  }

  .booking-panel,
  .offer-body,
  .soft-panel,
  .contact-card,
  .trust-card,
  .amenities-list article,
  .comparison-row {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-loader {
    inset: 0;
  }
}
