@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg-fade-duration: 0.6s;
  --bg-motion-duration: 3s;
  --bg-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bg-zoom-start: scale(1.03);
  --bg-zoom-end: scale(1);
  --cream: #fbf9f6;
  --cream-strong: #f2ebd9;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.72);
  --gold: #c8a45a;
  --gold-deep: #c8a45a;
  --gold-soft: #f4ecd8;
  --text: #1a1a1a;
  --text-deep: #111111;
  --muted: #4a4a4a;
  --muted-deep: #333333;
  --line: rgba(200, 164, 90, 0.2);
  --shadow: 0 32px 84px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.05);
  --shadow-lift: 0 36px 72px rgba(0, 0, 0, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 164, 90, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(180deg, #fdfcf9 0%, #f7f3ea 50%, #f2ecdf 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(200, 164, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 90, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 56%, transparent 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.section-shell {
  position: relative;
  padding: 44px 0;
}

.about-page .subhero+.section-shell {
  padding-top: 16px;
}

.gallery-section {
  margin-top: 0;
  padding-top: 0;
}

.section-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(200px, 34vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(139, 94, 60, 0.75), transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
}

h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

p {
  margin: 0;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    opacity: 1;
    transform: none !important;
  }
}

.lead-copy {
  color: var(--text-deep);
  font-size: 1.1rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, color 240ms ease, background 240ms ease;
}

.book-now {
  min-width: 156px;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  color: #111111;
  background: linear-gradient(135deg, #ecdcaa 0%, #c8a45a 50%, #c8a45a 100%);
  border: 1px solid rgba(200, 164, 90, 0.4);
  box-shadow:
    0 18px 34px rgba(200, 164, 90, 0.24),
    0 0 18px rgba(200, 164, 90, 0.12);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg, #f5e9c8 0%, #ecdcaa 50%, #c8a45a 100%);
  box-shadow:
    0 24px 42px rgba(200, 164, 90, 0.3),
    0 0 24px rgba(200, 164, 90, 0.18);
}

.booking-action {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-booking {
  gap: 10px;
  width: fit-content;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8B5E3C 0%, #6f472a 50%, #4a2f19 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(139, 94, 60, 0.4) !important;
  box-shadow:
    0 16px 28px rgba(90, 61, 36, 0.3),
    0 0 12px rgba(139, 94, 60, 0.15) !important;
}

.btn-booking:hover,
.btn-booking:focus-visible {
  transform: translateY(-3px) scale(1.01) !important;
  background: linear-gradient(135deg, #9e704c 0%, #805638 50%, #65452d 100%) !important;
  border-color: rgba(158, 112, 76, 0.6) !important;
  box-shadow:
    0 22px 38px rgba(90, 61, 36, 0.4),
    0 0 18px rgba(139, 94, 60, 0.25) !important;
  color: #ffffff !important;
}

.btn-booking .btn-icon {
  transition: transform 220ms ease;
}

.btn-booking:hover .btn-icon,
.btn-booking:focus-visible .btn-icon {
  transform: translateX(2px);
}

.btn-outline {
  color: #111111;
  border-color: rgba(200, 164, 90, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-outline:hover {
  color: #111111;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.9);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: #000000;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

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

.site-header {
  position: fixed;
  top: -8px;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 10px 0 0;
  transition: padding 220ms ease, background 220ms ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: min(calc(100% - 24px), 1480px);
  padding: 6px 18px 6px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 10px 28px rgba(200, 164, 90, 0.05);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.scrolled {
  padding-top: 8px;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 24px rgba(200, 164, 90, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  flex: 0 1 auto;
}

.logo,
.footer-logo {
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 90, 0.28);
  box-shadow: 0 10px 24px rgba(200, 164, 90, 0.12);
}

.logo {
  width: 60px;
  height: 60px;
}

.footer-logo {
  width: 58px;
  height: 58px;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-kicker {
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 1.42rem;
  line-height: 1;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1 1 auto;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 1), transparent);
  box-shadow: 0 0 14px rgba(200, 164, 90, 0.35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 250, 242, 0.62);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #000000;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.hero,
.subhero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 100px 0 74px;
}

.hero-dark-overlay,
.hero-wood-texture {
  position: absolute;
  inset: 0;
}

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

.hero-slide {
  position: absolute;
  top: -12%;
  right: -12%;
  bottom: -12%;
  left: -12%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
  opacity: 0;
  transform: var(--bg-zoom-start);
  transition:
    opacity var(--bg-fade-duration) var(--bg-motion-ease),
    transform var(--bg-motion-duration) var(--bg-motion-ease);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: var(--bg-zoom-end);
}

.contain-slide {
  background-size: contain;
  background-color: #d9d4c7;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 16, 12, 0.26) 0%, rgba(20, 16, 12, 0.14) 44%, rgba(20, 16, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.1), rgba(20, 16, 12, 0.18));
}

.hero-pattern {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 246, 228, 0.56), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 20%),
    radial-gradient(circle at 56% 92%, rgba(214, 185, 125, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(200, 164, 90, 0.14), transparent 34%);
}

.hero-dark-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.34), rgba(20, 16, 12, 0.34)) !important;
}

.hero-wood-texture {
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 231, 205, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 78% 84%, rgba(200, 164, 90, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(200, 164, 90, 0.08), transparent 34%);
  mix-blend-mode: screen;
}

.hero-content-wrap,
.subhero-copy {
  position: relative;
  z-index: 2;
}

.hero-panel.hero-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--hero-panel-gap, 30px);
  min-height: calc(96vh - 214px);
}

.hero-left,
.hero-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.82s ease, transform 0.82s ease;
}

.hero-left.is-visible,
.hero-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  align-self: center;
  text-align: center;
  margin: var(--hero-left-margin-top, 0px) auto 0;
  width: 100%;
  flex: 0 1 auto;
}

.hero-left .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 247, 233, 0.14);
  border: 1px solid rgba(246, 223, 176, 0.22);
  color: rgba(255, 241, 217, 0.92);
  box-shadow:
    0 10px 30px rgba(12, 8, 5, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-title {
  color: var(--hero-title-color, #ffffff);
  font-family: var(--hero-title-font-family, "Cormorant Garamond", serif);
  font-size: var(--hero-title-size, clamp(2.15rem, 4.9vw, 3.8rem));
  line-height: 1.1;
  font-weight: var(--hero-title-weight, 600);
  max-width: var(--hero-title-max-width, none);
  position: relative;
  text-shadow: var(--hero-title-shadow, 0 2px 8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(232, 211, 176, 0.4), 0 0 35px rgba(232, 211, 176, 0.2));
}

.hero-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(232, 211, 176, 0) 0%, rgba(232, 211, 176, 0.25) 50%, rgba(232, 211, 176, 0) 100%);
  transform: translateX(-100%);
  animation: heroShimmer 8s linear infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* heroShimmer keyframes defined later */

.hero-title-primary {
  color: #ffffff;
}

.hero-title-accent {
  color: #ffffff;
}

.hero-subtitle {
  max-width: var(--hero-subtitle-max-width, 700px);
  margin: 0 auto;
  color: var(--hero-subtitle-color, #ffffff);
  font-family: var(--hero-subtitle-font-family, "Cormorant Garamond", serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  text-shadow: var(--hero-subtitle-shadow, 0 2px 8px rgba(0, 0, 0, 0.75), 0 0 15px rgba(232, 211, 176, 0.35), 0 0 30px rgba(232, 211, 176, 0.15));
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.hero-cta .btn {
  min-width: 168px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: var(--hero-right-margin-top, 0px);
}

.hero-booking-quote {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  color: #000000;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 0 0 16px 0;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUpBooking 1s ease forwards 0.4s;
}

@keyframes fadeUpBooking {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luxury-booking-bar {
  width: 100%;
  max-width: 1200px;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.booking-fields-horizontal {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.luxury-field {
  flex: 1;
  display: grid;
  gap: 8px;
}

.luxury-field .field-label {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.luxury-field input,
.luxury-field select {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
  color-scheme: dark;
}

.luxury-field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

.luxury-field input:hover,
.luxury-field select:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.luxury-field input:focus,
.luxury-field select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  outline: none;
  box-shadow: none;
}

.luxury-field select option {
  background: #202020;
  color: #ffffff;
}

.booking-actions-horizontal {
  flex: 0 0 auto;
}

.luxury-book-btn {
  height: 56px;
  padding: 0 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #8B5E3C 0%, #6f472a 50%, #4a2f19 100%) !important;
  border: 1px solid rgba(139, 94, 60, 0.4) !important;
  color: #ffffff !important;
  box-shadow:
    0 16px 28px rgba(90, 61, 36, 0.3),
    0 0 16px rgba(139, 94, 60, 0.15) !important;
}

.luxury-book-btn:hover {
  background: linear-gradient(135deg, #9e704c 0%, #805638 50%, #65452d 100%) !important;
  border-color: rgba(158, 112, 76, 0.6) !important;
  box-shadow:
    0 22px 38px rgba(90, 61, 36, 0.4),
    0 0 24px rgba(139, 94, 60, 0.25) !important;
}

@media (max-width: 991px) {
  .booking-fields-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .luxury-field {
    width: 100%;
  }

  .booking-actions-horizontal {
    width: 100%;
    margin-top: 8px;
  }

  .luxury-book-btn {
    width: 100%;
  }
}

.hero-right .booking-card {
  width: min(100%, 408px);
}

.booking-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 243, 219, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(248, 239, 225, 0.74), rgba(239, 228, 212, 0.56));
  box-shadow:
    0 26px 70px rgba(25, 17, 10, 0.28),
    0 10px 28px rgba(200, 164, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  animation: cardFloat 7.2s ease-in-out infinite;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), transparent 60%);
  pointer-events: none;
}

.booking-head,
.booking-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.booking-head h4,
.booking-card-head h2 {
  color: #22160d;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 0.94;
}

.booking-head .muted,
.booking-card-head p:last-child {
  color: rgba(63, 46, 28, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-fields-grid,
.booking-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field,
.booking-form-grid label {
  display: grid;
  gap: 8px;
}

.field-label,
.booking-form-grid span {
  color: rgba(53, 38, 24, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.booking-fields-grid input,
.booking-fields-grid select,
.booking-form-grid input,
.booking-form-grid select,
.booking-form-grid textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(137, 107, 68, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(244, 235, 220, 0.84));
  color: #2b1f14;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 18px rgba(94, 68, 34, 0.06);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.field select,
.booking-fields-grid select,
.booking-form-grid select {
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(76, 54, 29, 0.9) 50%),
    linear-gradient(135deg, rgba(76, 54, 29, 0.9) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(244, 235, 220, 0.84));
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.field input::placeholder,
.field select::placeholder,
.booking-form-grid input::placeholder,
.booking-form-grid textarea::placeholder {
  color: rgba(77, 61, 44, 0.56);
}

.field input:hover,
.field select:hover,
.booking-fields-grid input:hover,
.booking-fields-grid select:hover,
.booking-form-grid input:hover,
.booking-form-grid select:hover,
.booking-form-grid textarea:hover {
  border-color: rgba(200, 164, 90, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(94, 68, 34, 0.08);
}

.field input:focus,
.field select:focus,
.booking-fields-grid input:focus,
.booking-fields-grid select:focus,
.booking-form-grid input:focus,
.booking-form-grid select:focus,
.booking-form-grid textarea:focus {
  outline: none;
  border-color: rgba(200, 164, 90, 0.7);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(248, 241, 229, 0.94));
  box-shadow:
    0 0 0 4px rgba(200, 164, 90, 0.16),
    0 14px 28px rgba(94, 68, 34, 0.12);
  transform: translateY(-1px);
}

.booking-actions,
.booking-form-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.btn-book-submit,
.booking-confirm {
  width: 100%;
  min-height: 58px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #8B5E3C 0%, #6f472a 50%, #4a2f19 100%) !important;
  border: 1px solid rgba(139, 94, 60, 0.4) !important;
  box-shadow:
    0 16px 32px rgba(90, 61, 36, 0.3),
    0 0 26px rgba(139, 94, 60, 0.15) !important;
}

.btn-book-submit:hover,
.btn-book-submit:focus-visible,
.booking-confirm:hover,
.booking-confirm:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #9e704c 0%, #805638 50%, #65452d 100%) !important;
  border-color: rgba(158, 112, 76, 0.6) !important;
  box-shadow:
    0 22px 40px rgba(90, 61, 36, 0.4),
    0 0 30px rgba(139, 94, 60, 0.25) !important;
}

.learn-more {
  border-color: rgba(255, 239, 208, 0.2);
  background: rgba(255, 247, 233, 0.08);
  color: #fff6e6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 32px rgba(6, 4, 2, 0.16);
}

.learn-more:hover,
.learn-more:focus-visible {
  color: #fffaf1;
  border-color: rgba(255, 239, 208, 0.36);
  background: rgba(255, 247, 233, 0.14);
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1,
.hero-text,
.subhero-copy h1,
.subhero-copy .eyebrow,
.subtitle {
  color: var(--text-deep);
}

.hero-copy h1 {
  color: var(--text-deep);
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(255, 248, 238, 0.24);
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.58);
  color: rgba(34, 28, 20, 0.92);
  box-shadow:
    0 10px 26px rgba(94, 72, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-text {
  max-width: 520px;
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(43, 31, 20, 0.92);
}

.subtitle {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.68;
  color: rgba(43, 31, 20, 0.92);
}

.hero-text {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.66);
  box-shadow:
    0 18px 38px rgba(88, 63, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

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

.hero-actions .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(90, 63, 23, 0.16);
}

.subhero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 64px 0 54px;
  background: none;
  isolation: isolate;
}

.subhero::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image: var(--subhero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: var(--bg-zoom-start);
  animation: subheroCinematic var(--bg-motion-duration) var(--bg-motion-ease) infinite alternate;
  will-change: transform;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 18, 14, 0.24), rgba(22, 18, 14, 0.16) 52%, rgba(22, 18, 14, 0.08)),
    linear-gradient(180deg, rgba(22, 18, 14, 0.08), rgba(22, 18, 14, 0.16)),
    linear-gradient(135deg, rgba(200, 164, 90, 0.14), transparent 34%);
}

@keyframes subheroCinematic {
  from {
    transform: var(--bg-zoom-start);
  }

  to {
    transform: var(--bg-zoom-end);
  }
}

.subhero-copy {
  max-width: 720px;
}

.subhero-copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 12ch;
  text-shadow: 0 8px 24px rgba(255, 248, 238, 0.16);
}

.subhero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.64);
  box-shadow:
    0 10px 26px rgba(94, 72, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.booking-wrap {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}

.booking-strip {
  padding: 28px 28px 24px;
  border: 1px solid rgba(200, 164, 90, 0.24);
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.76);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(200, 164, 90, 0.08), 0 0 34px rgba(200, 164, 90, 0.1);
}

.hero-booking {
  align-self: end;
}

.booking-heading h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-top: 22px;
}

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

.hero-booking .booking-fields .btn {
  width: 100%;
}

.booking-fields label,
.contact-card label {
  display: grid;
  gap: 8px;
}

.booking-fields span,
.contact-card span {
  color: #000000;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-fields input,
.booking-fields select,
.contact-card input,
.contact-card textarea {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.booking-fields input:focus,
.booking-fields select:focus,
.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: rgba(200, 164, 90, 0.6);
  box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.contact-card textarea {
  min-height: 150px;
  height: auto;
  padding: 16px;
  resize: vertical;
}

.section-heading {
  max-width: 100%;
}

.section-heading-centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading-centered h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-centered h2::before {
  content: "\2726";
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  bottom: 10px;
  transform: translateX(-50%);
  color: var(--gold-deep);
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(200, 164, 90, 0.28);
  z-index: 1;
}

.section-heading-centered h2::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(240px, 46vw);
  bottom: 13px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(139, 94, 60, 0.55) 0%,
      rgba(200, 164, 90, 0.9) calc(50% - 16px),
      transparent calc(50% - 16px),
      transparent calc(50% + 16px),
      rgba(200, 164, 90, 0.9) calc(50% + 16px),
      rgba(139, 94, 60, 0.55) 100%);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 28px;
  font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
  color: #111111;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-heading h2::before {
  content: "\2726";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  color: var(--gold-deep);
  font-size: 0.95rem;
  text-shadow: 0 0 14px rgba(200, 164, 90, 0.28);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: min(240px, 46vw);
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(139, 94, 60, 0.55) 0%,
      rgba(200, 164, 90, 0.9) calc(50% - 16px),
      transparent calc(50% - 16px),
      transparent calc(50% + 16px),
      rgba(200, 164, 90, 0.9) calc(50% + 16px),
      rgba(139, 94, 60, 0.55) 100%);
  background-size: 200% 100%;
  animation: shimmerLine 2.8s linear infinite;
}

@keyframes shimmerLine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -20% 0;
  }
}

@keyframes heroShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes testimonial-shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  50% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-4px);
  }

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 36px;
  align-items: center;
}

.about-grid .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 100%;
}

.about-copy p {
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 450;
  color: #2b2b2b;
  letter-spacing: 0.01em;
  text-align: justify;
}

.about-copy .lead-copy {
  font-size: 1.1rem;
  line-height: 1.78;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-align: justify;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual:hover img {
  transform: scale(1.06) translateY(-2px);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 164, 90, 0.18);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.about-visual:hover .about-badge {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.mini-label {
  display: block;
  margin-bottom: 6px;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rooms-list {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(240px, 350px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.room-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 350px);
}

.room-card-reverse .room-media {
  order: 2;
}

.room-card-reverse .room-body {
  order: 1;
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 90, 0.4);
  box-shadow: var(--shadow-lift);
}

.room-media {
  overflow: hidden;
  min-width: 0;
}

.room-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 380ms ease;
}

.room-card:hover .room-media img {
  transform: scale(1.07);
}

.room-body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px 28px;
  min-width: 0;
  overflow: hidden;
}

.room-body .btn-booking {
  margin-top: 6px;
  color: #111111;
  font-weight: 600;
  max-width: 100%;
}

.room-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 164, 90, 0.15);
  color: #111111;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-body p {
  color: #111111;
  font-weight: 500;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.room-body h3,
.room-body .room-tag,
.room-body .btn-booking {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-card p,
.highlight-card p {
  color: #111111;
}

.contact-copy p,
.footer-brand p {
  color: var(--muted);
}

.room-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #202020;
  font-weight: 500;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.room-meta li {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.room-meta li::before {
  content: "\2022";
  color: var(--gold-deep);
  margin-right: 8px;
}

.amenities-grid,
.detail-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.amenities {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.03) 0%, rgba(26, 26, 26, 0.01) 100%),
    linear-gradient(135deg, #f5f0e6 0%, #ebe4d7 100%) !important;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 164, 90, 0.1), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(200, 164, 90, 0.15), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(200, 164, 90, 0.05), transparent 50%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.amenities::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

/* bright, clean hospitality variant */
.amenities-bright {
  overflow: hidden;
  position: relative;
  background: none !important;
}

.amenities-bright::before,
.amenities-bright::after {
  display: none;
}

.amenities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  position: relative;
  z-index: 1;
  gap: 24px;
  margin-top: 40px;
}

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

.amenity-card,
.detail-card {
  position: relative;
  padding: 36px 24px 32px;
  border: 1px solid rgba(138, 154, 134, 0.15);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(32, 40, 32, 0.08);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.feature-card {
  background: #f4ede3;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(200, 164, 90, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

.feature-card p {
  color: #111111;
  font-size: 16px;
  line-height: 1.72;
}

.amenity-card {
  min-height: 195px;
  padding: 28px 20px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  border-color: rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(32, 40, 32, 0.06);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 300ms ease;
}

.amenity-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.amenity-card:hover,
.amenity-card:focus-visible,
.detail-card:hover {
  transform: translateY(-12px);
  border-color: rgba(139, 94, 60, 0.22) !important;
  box-shadow:
    0 32px 54px rgba(0, 0, 0, 0.08),
    0 0 32px rgba(139, 94, 60, 0.08) !important;
}

/* bright amenity cards – flat white with subtle gold edge on hover */
.amenities-bright .amenity-card {
  border-color: rgba(0, 0, 0, 0.05);
  background: #ffffff;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
}


.amenity-card:focus-visible {
  outline: none;
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #4a3c18 !important;
  background-color: #4a3c18 !important;
  color: #ffffff !important;
  box-shadow:
    0 16px 28px rgba(90, 61, 36, 0.24),
    inset 0 2px 4px rgba(255, 255, 255, 0.1) !important;
  transition: none !important;
}

.amenity-icon svg {
  width: 32px;
  height: 32px;
}

.amenity-icon svg,
.amenity-icon svg path,
.amenity-icon svg rect,
.amenity-icon svg circle {
  stroke: #ffffff !important;
}

.amenity-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #111111;
}

.amenities .section-heading h2 {
  color: #111111;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.amenities .subtitle {
  color: #1a1a1a;
  font-weight: 450;
  font-size: 1.16rem;
  line-height: 1.78;
}

.amenities .eyebrow {
  color: #202020;
}

.amenity-card .amenity-icon,
.amenity-card:hover .amenity-icon,
.amenity-card:focus .amenity-icon,
.amenity-card:focus-within .amenity-icon,
.amenity-card:focus-visible .amenity-icon,
.amenity-card:active .amenity-icon {
  background: #47240b !important;
  background-color: #47240b !important;
  border: none !important;
  transform: none !important;
}

.section-actions {
  margin-top: 28px;
}

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

.highlight-card {
  padding: 26px 24px;
  border: 1px solid rgba(200, 164, 90, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.highlight-value {
  display: block;
  margin-bottom: 10px;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.masonry-gallery {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.gallery-track .gallery-item {
  flex: 0 0 340px;
}

/* Gallery Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
  background: #C49A45;
  color: #fff;
  border-color: #C49A45;
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  .gallery-track .gallery-item {
    flex: 0 0 280px;
  }
}

@media (max-width: 600px) {
  .gallery-track .gallery-item {
    flex: 0 0 240px;
  }
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease, filter 340ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

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

.testimonials-section {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}

.testimonial-card {
  padding: 34px 34px 28px;
  border: 1px solid rgba(200, 164, 90, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 244, 236, 0.92));
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 54px rgba(0, 0, 0, 0.08), 0 0 32px rgba(139, 94, 60, 0.08);
}

.testimonial-quote {
  color: #17130d;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(1.02rem, 1.53vw, 1.32rem);
  line-height: 1.5;
  font-weight: 500;
}

.testimonial-meta {
  display: grid;
  gap: 6px;
  margin-top: 26px;
}

.testimonial-meta strong,
.contact-links a,
.footer-contact {
  color: #000000;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
  max-width: 62ch;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.contact-links a {
  font-weight: 600;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(200, 164, 90, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-form {
  transition: all 0.4s ease;
}

.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 90, 0.36);
  box-shadow:
    0 0 30px rgba(200, 164, 90, 0.35),
    0 24px 44px rgba(70, 48, 18, 0.12);
}

.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(200, 164, 90, 0.28);
  box-shadow: 0 0 12px rgba(200, 164, 90, 0.18);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c8a45a;
  box-shadow: 0 0 15px rgba(200, 164, 90, 0.4);
  outline: none;
}

.home-page .hero+.section-shell {
  padding-top: 74px;
}

.about-page .subhero {
  --subhero-image: url("images/hero3.jpg");
}

.rooms-page .subhero {
  --subhero-image: url("images/room2.jpg");
}

.facilities-page .subhero {
  --subhero-image: url("images/hero4.jpg");
}

.gallery-page .subhero {
  --subhero-image: url("images/corridor1.jpg");
}

.contact-page .subhero {
  --subhero-image: url("images/hero2.jpg");
}

.booking-page .subhero {
  --subhero-image: url("images/room3.jpg");
}

.booking-page {
  animation: pageFadeIn 520ms ease both;
}

.booking-redirect-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.booking-redirect-shell::after {
  display: none;
}

.booking-embed-page .subhero {
  --subhero-image: linear-gradient(135deg, rgba(7, 83, 170, 0.82), rgba(16, 113, 227, 0.76));
}

.booking-embed-page {
  animation: pageFadeIn 520ms ease both;
}

.booking-embed-main {
  background:
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 18%, #ffffff 42%, #f7fbff 100%);
}

.booking-embed-shell {
  padding-top: 30px;
  padding-bottom: 56px;
}

.booking-embed-container {
  max-width: 1380px;
}

.booking-embed-frame-wrap {
  position: relative;
  min-height: 1200px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(15, 93, 176, 0.12);
  box-shadow:
    0 28px 72px rgba(18, 84, 160, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.booking-engine-frame {
  width: 100%;
  min-height: 1164px;
  border: 0;
  border-radius: 22px;
  background: #ffffff;
}

.booking-embed-loading {
  position: absolute;
  inset: 18px;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(74, 145, 227, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 255, 0.94));
  border-radius: 22px;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 1;
}

.booking-embed-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking-embed-loading-eyebrow {
  margin: 0;
  color: #0f5db0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-embed-loading h2 {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.booking-embed-loading .subtitle {
  max-width: 620px;
  color: #3d516a;
}

.booking-embed-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

body.is-transitioning {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-hero {
  position: relative;
  padding: 160px 0 84px;
  overflow: hidden;
}

.home-page .hero,
.home-page .hero-section,
.home-page .hero-media,
.home-page .hero-overlay {
  background: none !important;
  background-image: none !important;
}

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

.booking-hero-media {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06)),
    url("images/hero2.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.booking-hero-overlay {
  background: transparent;
}

.booking-hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-hero-shell .booking-card {
  width: 100%;
  max-width: 640px;
  padding: 32px 40px;
}

.booking-intro {
  max-width: 620px;
}

.booking-intro h1 {
  /* Removed restrictive max-width to allow clean 2-line layout */
}

.booking-intro .subtitle {
  max-width: 54ch;
  font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
}

.booking-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.booking-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(200, 164, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.56);
  color: var(--text-deep);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.booking-luxury-form {
  display: grid;
  gap: 16px;
}

.booking-form-span-2 {
  grid-column: span 2;
}

.booking-help-text {
  color: var(--muted-deep);
  font-size: 0.88rem;
}

.booking-support-section {
  padding-top: 70px;
}

.booking-support-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(200, 164, 90, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 244, 234, 0.92));
  box-shadow: var(--shadow);
}

.booking-support-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted-deep);
}

.booking-support-list li {
  position: relative;
  padding-left: 18px;
}

.booking-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dfbf76, #c8a45a);
  box-shadow: 0 0 12px rgba(200, 164, 90, 0.2);
}

.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 14, 8, 0.36);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.booking-success-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-success-card {
  width: min(100%, 520px);
  padding: 30px 28px;
  border: 1px solid rgba(200, 164, 90, 0.22);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 244, 232, 0.96));
  box-shadow: 0 28px 56px rgba(42, 28, 10, 0.22);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 280ms ease;
}

.booking-success-modal.is-open .booking-success-card {
  transform: translateY(0) scale(1);
}

.booking-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #000000;
  background: linear-gradient(135deg, #efd69d, #c8a45a 56%, #c8a45a);
  box-shadow: 0 18px 36px rgba(200, 164, 90, 0.24);
}

.booking-success-icon svg {
  width: 30px;
  height: 30px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 48px;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 164, 90, 0.09), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 44%, #131313 100%);

}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 50%, rgba(200, 164, 90, 0.03));
  pointer-events: none;
}

.footer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-particles span {
  position: absolute;
  bottom: -18%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.2px);
  animation: footerFloat linear infinite;
}

.footer-particles span:nth-child(odd) {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.footer-particles span:nth-child(even) {
  background: radial-gradient(circle, rgba(233, 203, 133, 0.92), rgba(233, 203, 133, 0.18) 68%, transparent 100%);
  box-shadow: 0 0 16px rgba(200, 164, 90, 0.24);
}

.footer-particles span:nth-child(1) {
  left: 5%;
  width: 5px;
  height: 5px;
  animation-duration: 16s;
  animation-delay: -3s;
}

.footer-particles span:nth-child(2) {
  left: 12%;
  width: 8px;
  height: 8px;
  animation-duration: 19s;
  animation-delay: -10s;
}

.footer-particles span:nth-child(3) {
  left: 20%;
  width: 4px;
  height: 4px;
  animation-duration: 15s;
  animation-delay: -5s;
}

.footer-particles span:nth-child(4) {
  left: 29%;
  width: 7px;
  height: 7px;
  animation-duration: 21s;
  animation-delay: -8s;
}

.footer-particles span:nth-child(5) {
  left: 38%;
  width: 5px;
  height: 5px;
  animation-duration: 17s;
  animation-delay: -12s;
}

.footer-particles span:nth-child(6) {
  left: 47%;
  width: 9px;
  height: 9px;
  animation-duration: 24s;
  animation-delay: -6s;
}

.footer-particles span:nth-child(7) {
  left: 58%;
  width: 4px;
  height: 4px;
  animation-duration: 18s;
  animation-delay: -9s;
}

.footer-particles span:nth-child(8) {
  left: 67%;
  width: 6px;
  height: 6px;
  animation-duration: 22s;
  animation-delay: -14s;
}

.footer-particles span:nth-child(9) {
  left: 76%;
  width: 5px;
  height: 5px;
  animation-duration: 16s;
  animation-delay: -4s;
}

.footer-particles span:nth-child(10) {
  left: 84%;
  width: 8px;
  height: 8px;
  animation-duration: 20s;
  animation-delay: -11s;
}

.footer-particles span:nth-child(11) {
  left: 91%;
  width: 4px;
  height: 4px;
  animation-duration: 17s;
  animation-delay: -7s;
}

.footer-particles span:nth-child(12) {
  left: 96%;
  width: 7px;
  height: 7px;
  animation-duration: 23s;
  animation-delay: -15s;
}

@keyframes footerFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }

  12% {
    opacity: 0.7;
  }

  55% {
    transform: translate3d(14px, -120px, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate3d(-10px, -260px, 0) scale(1.08);
    opacity: 0;
  }
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  border-color: rgba(200, 164, 90, 0.44);
  box-shadow: 0 14px 30px rgba(200, 164, 90, 0.14);
}

.footer-brand-copy {
  display: grid;
  gap: 12px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: clamp(1.75rem, 2.4vw, 2.1rem);
}

.footer-brand p {
  color: rgba(242, 239, 233, 0.74);
  max-width: 40ch;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 164, 90, 0.24);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-3px);
  color: #f1d48e;
  border-color: rgba(200, 164, 90, 0.56);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(200, 164, 90, 0.14);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 180px;
}

.footer-heading {
  color: #f1d48e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact a {
  position: relative;
  display: inline-flex;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 220ms ease, transform 220ms ease;
}

.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 164, 90, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #f1d48e;
  transform: translateX(3px);
}

.footer-contact a:hover::after,
.footer-contact a:focus-visible::after {
  transform: scaleX(1);
}

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(45, 33, 14, 0.52);
  backdrop-filter: blur(8px);
}

.lb-inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
}

.lb-inner img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
  background: var(--white);
}

.lb-caption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
}

.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #000000;
  cursor: pointer;
}

.luxury-about-section {
  background: linear-gradient(180deg, #f8f5ef 0%, #f2ede3 50%, #ebe4d7 100%);
  padding: 48px 0 20px;
}

.about-page .luxury-about-section {
  padding-top: 32px;
}

/* Welcome eyebrow with indicating black arrow */
.luxury-about-eyebrow::before,
.about-grid .section-heading .eyebrow::before {
  content: "\2192\2004";
  color: #111111;
  margin-right: 8px;
  font-weight: 700;
  display: inline-block;
}

.why-choose-section {
  padding-top: 10px !important;
}

.luxury-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.luxury-about-eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.luxury-about-heading {
  font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
  color: #111111;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  max-width: 900px;
}

.luxury-about-text p {
  color: #1f1f1f;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 65ch;
  text-align: left;
}

.luxury-about-text p:last-child {
  margin-bottom: 0;
}

.luxury-about-features {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.luxury-feature {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #c8a45a;
}

.luxury-feature strong {
  display: block;
  color: #111111;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.luxury-feature span {
  display: block;
  color: #1f1f1f;
  font-size: 0.95rem;
  line-height: 1.6;
}

.luxury-about-visuals {
  position: relative;
  height: 560px;
  width: 100%;
}

.luxury-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(20, 16, 12, 0.15);
  transform: translateZ(0);
}

.luxury-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.luxury-img-wrapper:hover img {
  transform: scale(1.06);
}

.img-top {
  height: 340px;
  width: 100%;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 1;
}

.img-bottom {
  height: 330px;
  width: 100%;
  top: 344px;
  left: 60px;
  right: 0;
  z-index: 2;
}

/* --- CINEMATIC IMAGE REVEAL --- */
.luxury-about-visuals .luxury-img-wrapper {
  opacity: 0;
  transform: translateY(40px) scale(0.92) translateZ(0);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.luxury-about-visuals.is-visible .luxury-img-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
}

.luxury-about-visuals.is-visible .img-top {
  transition-delay: 0.1s;
}

.luxury-about-visuals.is-visible .img-bottom {
  transition-delay: 0.3s;
}

@media (max-width: 991px) {
  .luxury-about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .luxury-about-heading {
    max-width: 100%;
  }

  .luxury-about-text p {
    max-width: 100%;
  }

  .luxury-about-visuals {
    height: 580px;
  }

  .img-top {
    height: 300px;
  }

  .img-bottom {
    height: 280px;
    top: 214px;
    left: 40px;
  }
}

@media (max-width: 768px) {
  .luxury-about-section {
    padding: 72px 0 16px;
  }

  .luxury-about-eyebrow {
    font-size: 0.8rem;
  }

  .luxury-about-visuals {
    position: relative;
    height: 570px;
  }

  .img-top {
    height: 260px;
    top: 0;
    left: 0;
  }

  .img-bottom {
    height: 280px;
    top: 194px;
    left: 30px;
  }
}

/* --- RESPONSIVE FIXES --- */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 1180px) {
  .booking-hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-embed-frame-wrap {
    min-height: 1080px;
  }

  .booking-engine-frame {
    min-height: 1044px;
  }

  .booking-card {
    max-width: 760px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .contact-grid,
  .about-grid,
  .detail-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding-top: 8px;
  }

  .navbar {
    gap: 14px;
    padding: 6px 14px 6px 16px;
    border-radius: 24px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
  }

  body.nav-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links a {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero-panel.hero-split {
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-left h1 {
    margin: 0 auto;
  }

  .hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .hero-cta .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 140px;
    max-width: 220px;
    height: 52px;
    min-height: 52px;
  }

  .hero {
    min-height: 74vh;
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .subhero {
    min-height: 36vh;
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .booking-hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .booking-embed-shell {
    padding-top: 22px;
    padding-bottom: 44px;
  }

  .booking-embed-frame-wrap {
    min-height: 980px;
    padding: 12px;
    border-radius: 22px;
  }

  .booking-engine-frame {
    min-height: 944px;
    border-radius: 16px;
  }

  .booking-embed-loading {
    inset: 12px;
    border-radius: 16px;
  }

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

  .booking-form-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .luxury-booking-bar {
    padding: 20px;
  }

  .booking-embed-frame-wrap {
    min-height: 920px;
    padding: 10px;
    border-radius: 18px;
  }

  .booking-engine-frame {
    min-height: 884px;
    border-radius: 14px;
  }

  .booking-embed-loading {
    inset: 10px;
    border-radius: 14px;
  }

  .booking-fields-horizontal {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .luxury-field {
    width: 100%;
  }

  .booking-actions-horizontal {
    width: 100%;
    margin-top: 8px;
  }

  .luxury-book-btn {
    width: 100%;
  }

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

  .booking-fields,
  .hero-booking .booking-fields,
  .amenities-grid,
  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card-reverse {
    grid-template-columns: 1fr !important;
  }

  .room-card-reverse .room-media {
    order: unset !important;
  }

  .room-card-reverse .room-body {
    order: unset !important;
  }

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

  .section-shell {
    padding: 36px 0;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .navbar {
    width: min(calc(100% - 16px), 1480px);
    padding: 4px 12px 4px 14px;
    border-radius: 20px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-kicker {
    font-size: 0.6rem;
  }

  .hero-text {
    font-size: 0.95rem;
    padding: 16px;
  }

  .luxury-booking-bar {
    border-radius: 16px;
    padding: 16px;
  }

  .room-body,
  .contact-card {
    padding: 20px 16px;
  }
}

@media (max-width: 1100px) {
  .room-card,
  .room-card-reverse {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  }
}

@media (max-width: 320px) {
  .hero-cta .btn {
    min-width: 100%;
  }
}

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

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

/* --- WHY CHOOSE US SECTION --- */

.why-choose-section,
.accommodation-section,
.gallery-section,
.testimonials-section {
  background: #ebe4d7 !important;
}

.why-choose-section {
  padding-top: 20px !important;
}

.gallery-page .gallery-section .section-heading {
  margin-top: 28px;
}

.section-heading-centered .subtitle {
  margin-left: auto;
  margin-right: auto;
  color: #1a1a1a !important;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.78;
}


.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  position: relative;
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 36px 28px 32px !important;
  text-align: center !important;
  border: 1px solid rgba(139, 94, 60, 0.2) !important;
  box-shadow:
    0 20px 48px rgba(20, 16, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #8B5E3C, #5a3d24);
  border-radius: 0 0 4px 4px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5E3C 0%, #5a3d24 100%) !important;
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 12px 28px rgba(90, 61, 36, 0.24) !important;
  transition: background 320ms ease, box-shadow 320ms ease;
}

.why-title {
  font-family: "Inter", "Poppins", sans-serif;
  color: #111111;
  font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* subtitle sizing inside amenities and why choose us sections */
.amenities .subtitle {
  font-size: 1.22rem;
  font-weight: 450;
}

.why-choose-section .subtitle {
  font-size: 1.05rem;
  font-weight: 450;
}

.why-desc {
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 28px 20px 24px;
  }
}

/* --- MODERN CONTACT SECTION --- */

.testimonials-section {
  padding-bottom: 24px !important;
}

.modern-contact-section {
  position: relative;
  padding: 24px 0 56px;
  background: #ebe4d7 !important;
  overflow: hidden;
}

.home-page .modern-contact-bg,
.home-page .modern-contact-bg::before,
.home-page .modern-contact-bg::after,
.home-page .modern-blob {
  display: none !important;
}

.modern-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: transparent !important;
  z-index: 0;
  overflow: hidden;
}

.modern-contact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="0.5"/><path d="M50 10 L50 90 M10 50 L90 50 M22 22 L78 78 M22 78 L78 22" stroke="rgba(255,255,255,0.15)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="0.5"/></svg>');
  background-size: 250px 250px;
  background-position: center;
  opacity: 0.5;
}

.modern-contact-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path d="M400,200 L450,120 L480,120 L480,80 L520,40 L560,80 L560,120 L590,120 L640,200 Z" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2"/><path d="M600,200 L650,140 L680,140 L680,100 L720,60 L760,100 L760,140 L790,140 L840,200 Z" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1.5"/><path d="M200,200 L250,150 L280,150 L280,110 L320,70 L360,110 L360,150 L390,150 L440,200 Z" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1.5"/></svg>');
  background-repeat: repeat-x;
  background-position: center bottom;
  opacity: 0.6;
}

.modern-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 1;
}

.modern-blob-1 {
  top: -40px;
  left: -5%;
  width: 450px;
  height: 450px;
  background: #ffffff;
  animation: blobFloat 9s infinite alternate ease-in-out;
}

.modern-blob-2 {
  bottom: -80px;
  right: -5%;
  width: 550px;
  height: 550px;
  background: #fdf6e3;
  animation: blobFloat 12s infinite alternate-reverse ease-in-out;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -40px) scale(1.08);
  }
}

.modern-contact-section .container {
  position: relative;
  z-index: 2;
}

.modern-contact-heading {
  text-align: center;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.modern-contact-heading h2 {
  font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
  color: #111111;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.modern-contact-heading p {
  color: #333333;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* --- STAGGERED CONTACT GRID --- */
.staggered-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: 12px auto 0;
}

.staggered-card {
  flex: 1 1 calc(33.333% - 30px);
  max-width: 350px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(200, 164, 90, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.staggered-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.staggered-card .card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px auto;
  color: #ffffff;
  background: linear-gradient(135deg, #8B5E3C 0%, #6f472a 50%, #4a2f19 100%);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.staggered-card .card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 600;
}

.staggered-card .card-text {
  color: #000000 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.staggered-card .card-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.facilities-page .amenities.section-shell {
  padding-top: 20px;
  padding-bottom: 36px;
}

.facilities-page .amenities-grid {
  margin-top: 28px;
}

.staggered-card .card-links a {
  color: #000000 !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.staggered-card .card-links a:hover {
  color: #c8a45a;
}

/* Tablet: centered 2-column layout */
@media (max-width: 991px) {
  .staggered-contact-grid {
    gap: 24px;
  }

  .staggered-card {
    flex: 1 1 calc(50% - 24px);
    max-width: 400px;
  }

}

/* Mobile: stacked vertically */
@media (max-width: 767px) {
  .staggered-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  flex: 1 1 calc(33.333% - 16px);
  max-width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 2px solid rgba(200, 164, 90, 0.3);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top-color: rgba(200, 164, 90, 0.5);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a45a, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.contact-card h4 {
  font-family: "Cormorant Garamond", serif;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.contact-card p {
  color: #000000;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
  font-family: "Inter", sans-serif;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .contact-cards-grid {
    justify-content: flex-start;
  }

  .contact-card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: none;
  }
}

@media (max-width: 767px) {
  .contact-cards-grid {
    justify-content: center;
  }

  .contact-card {
    flex: 1 1 calc(50% - 16px);
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Premium Hotel-Style Contact Cards */
.contact-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 2px solid rgba(200, 164, 90, 0.3);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top-color: rgba(200, 164, 90, 0.5);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a45a, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.contact-card h4 {
  font-family: "Cormorant Garamond", serif;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.contact-card p {
  color: #000000;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
  font-family: "Inter", sans-serif;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .contact-cards-grid {
    justify-content: flex-start;
  }

  .contact-card {
    flex: 1 1 calc(25% - 16px);
    max-width: none;
  }
}

@media (max-width: 767px) {
  .contact-cards-grid {
    justify-content: center;
  }

  .contact-card {
    flex: 1 1 calc(50% - 16px);
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.modern-contact-info p {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.modern-contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.modern-contact-links a {
  display: inline-flex;
  align-items: center;
  color: #2b231c;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.modern-contact-links a:hover {
  color: #c8a45a;
}

.modern-contact-form {
  padding: 50px 40px;
  background: #ffffff;
  display: grid;
  gap: 24px;
}

.modern-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modern-input-group label {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a4036;
}

.modern-input-group input,
.modern-input-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #faf8f5;
  border: 1px solid #000000;
  border-radius: 12px;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.01);
}

.modern-input-group input:focus,
.modern-input-group textarea:focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.modern-input-group input::placeholder,
.modern-input-group textarea::placeholder {
  color: #a89f91;
}

.modern-btn-submit {
  margin-top: 10px;
  background: linear-gradient(135deg, #c8a45a 0%, #c8a45a 100%);
  color: #111111;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(200, 164, 90, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.modern-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(200, 164, 90, 0.35);
}

@media (max-width: 991px) {
  .modern-contact-card {
    grid-template-columns: 1fr;
  }

  .modern-contact-bg {
    height: 45%;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding-bottom: 16px !important;
  }

  .modern-contact-section {
    padding: 16px 0 54px;
    background: #ebe4d7 !important;
  }

  .modern-contact-info,
  .modern-contact-form {
    padding: 36px 24px;
  }

  .modern-contact-bg {
    height: 40%;
  }
}

/* ============================================================
   PREMIUM DARK FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Footer bubble particles */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(200, 164, 90, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(200, 164, 90, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 164, 90, 0.4);
  flex-shrink: 0;
}

.footer-brand-copy h3 {
  color: #ffffff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.footer-brand-copy p {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(200, 164, 90, 0.15);
  border-color: rgba(200, 164, 90, 0.5);
  color: #c8a45a;
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.25);
  color: #c8a45a;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer-contact-text {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 200ms ease;
}

a.footer-contact-text:hover {
  color: #c8a45a;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-links-heading {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 14px;
}

.footer-links-col a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 200ms ease, padding-left 200ms ease;
}

.footer-links-col a:last-child {
  border-bottom: none;
}

.footer-links-col a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #555555;
  font-size: 0.82rem;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .site-footer {
    padding: 40px 0 24px;
  }
}

/* --- CENTERED BREADCRUMB SUBHERO --- */
.subhero-centered {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100% !important;
}

.subhero-centered h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  max-width: 100% !important;
  margin-bottom: 12px !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  line-height: 1.2 !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
}

.subhero-breadcrumb {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.subhero-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.subhero-breadcrumb a:hover {
  opacity: 0.8;
}

.subhero-breadcrumb span.divider {
  color: rgba(255, 255, 255, 0.6);
}

.subhero-breadcrumb span.active-crumb {
  color: #ffffff;
}

/* --- SPIRITUAL QUOTE SECTION --- */

.spiritual-quote-section {
  padding: 44px 0 0;
  background: linear-gradient(180deg, #f8f5ef 0%, #f8f5ef 100%);
  overflow: hidden;
}

.luxury-about-section {
  padding-top: 24px;
}

.quote-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.quote-ornament {
  color: #c8a45a;
  font-size: 1rem;
  opacity: 0.6;
  user-select: none;
}

.spiritual-quote {
  margin: 0;
  padding: 0;
}

.quote-text {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  color: #3a3028;
  letter-spacing: 0.01em;
  line-height: 1.5;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.quote-text.fade-out {
  opacity: 0;
}

@media (max-width: 768px) {
  .spiritual-quote-section {
    padding: 32px 0 28px;
  }

  .quote-wrapper {
    gap: 16px;
  }
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85); /* Slightly dark background */
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
