/* ============================================================
   CASA DE CARDOZO — Luxury Villa Stylesheet
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Color palette */
  --cream: #FAF6EE;
  --cream-soft: #F5EFE2;
  --beige: #EAE0CC;
  --beige-warm: #E8DBC0;
  --gold: #C9A96E;
  --gold-deep: #B8935A;
  --gold-dark: #9A7A4A;
  --gold-light: #E2C98A;
  --ink: #2B1F12;
  --ink-soft: #4A3826;
  --brown: #5C4836;
  --brown-soft: #7A6147;
  --green: #4A5D4F;
  --green-soft: #6B8068;
  --sunset: #D88A55;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(60, 40, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(60, 40, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(60, 40, 20, 0.14);
  --shadow-xl: 0 40px 80px rgba(60, 40, 20, 0.20);
  --gradient-gold: linear-gradient(135deg, #E2C98A 0%, #C9A96E 50%, #9A7A4A 100%);
  --gradient-gold-soft: linear-gradient(135deg, rgba(226, 201, 138, 0.15), rgba(154, 122, 74, 0.15));

  /* Typography */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --section-y: clamp(64px, 9vw, 120px);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo-image {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid rgba(201, 169, 110, 0.30);
  box-shadow: 0 16px 36px rgba(43, 31, 18, 0.12);
  animation: fadeUp 1.2s ease;
}

.loader-monogram {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 8px;
  animation: fadeUp 1.2s ease;
}

.loader-monogram .dot {
  color: var(--gold);
  margin: 0 6px;
  font-weight: 300;
}

.loader-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--brown);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 1.4s ease 0.2s both;
}

.loader-line {
  width: 240px;
  height: 1px;
  background: rgba(154, 122, 74, 0.2);
  margin: 0 auto;
  overflow: hidden;
}

.loader-line span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gradient-gold);
  animation: loaderLine 1.6s ease-in-out infinite;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(154, 122, 74, 0.12), 0 8px 30px rgba(60, 40, 20, 0.06);
  padding: 12px 0;
}

.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  transition: color var(--transition);
}

.nav-logo-image {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.38);
  box-shadow: 0 5px 14px rgba(43, 31, 18, 0.12);
}

.nav-logo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.navbar.scrolled .nav-logo {
  color: var(--brown);
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-mark em {
  color: var(--gold);
  font-style: normal;
  margin: 0 3px;
  font-weight: 300;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--brown);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

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

.nav-cta {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(154, 122, 74, 0.35);
  transition: all var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(154, 122, 74, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--brown);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  will-change: transform;
  overflow: hidden;
  image-rendering: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,5,0.30) 0%, rgba(20,12,5,0.08) 40%, rgba(20,12,5,0.32) 100%),
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 0%, rgba(20,12,5,0.12) 90%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
  transform: translateY(-40px);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFade 1.2s ease 0.4s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFade 1.4s ease 0.7s forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 30px);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  opacity: 0;
  animation: heroFade 1.4s ease 1s forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0;
  animation: heroFade 1.4s ease 1.3s forwards;
}

.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ---------- BOOKING BAR ---------- */
.booking-bar-wrap {
  background: var(--cream);
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 4vw, 40px);
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.booking-bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 30px 80px rgba(40, 25, 10, 0.25), 0 8px 24px rgba(40,25,10,0.12);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 880px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  opacity: 0;
  animation: heroFade 1.6s ease 1.3s forwards;
}

/* Each field takes equal space */
.booking-bar .booking-field {
  flex: 1 1 0;
  min-width: 0;
}

/* Button doesn't shrink */
.booking-bar .booking-btn {
  flex: 0 0 auto;
  margin-left: 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 12px;
}

.booking-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.booking-input {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.booking-input i {
  color: var(--gold-dark);
  font-size: 14px;
}

.booking-input input,
.booking-input select {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.booking-input input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  cursor: pointer;
}

.booking-input input {
  position: relative;
}

.booking-divider {
  flex-shrink: 0;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(154, 122, 74, 0.3), transparent);
}

.booking-btn {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(154, 122, 74, 0.35);
  transition: all var(--transition);
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(154, 122, 74, 0.45);
}

.booking-btn:active {
  transform: translateY(0);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 48px 0 0;
  background: var(--cream);
}

.trust-badges {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 1 1 220px;
}

.trust-icon {
  font-size: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-super {
  background: linear-gradient(135deg, #FF7A6B 0%, #E04F40 100%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(224, 79, 64, 0.3);
  position: relative;
}

.trust-icon-super::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

.trust-icon-fav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.trust-icon-fav i {
  font-size: 32px;
  color: #E04F40;
  filter: drop-shadow(0 3px 8px rgba(224, 79, 64, 0.3));
}

.laurel {
  width: 36px;
  height: 36px;
  position: relative;
}

.laurel::before, .laurel::after {
  content: '';
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: 100% 100% 0 0;
  top: 50%;
  left: 50%;
}

.laurel-left::before {
  width: 30px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-bottom: none;
  border-right: none;
  background: linear-gradient(to right, rgba(201,169,110,0.15), transparent);
}

.laurel-right::before {
  width: 30px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(90deg);
  border-bottom: none;
  border-left: none;
  background: linear-gradient(to left, rgba(201,169,110,0.15), transparent);
}

.trust-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 20px;
}

.trust-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  letter-spacing: 0.01em;
}

.trust-divider-v {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ---------- GOLD TICKER ---------- */
.ticker {
  background: linear-gradient(90deg, var(--beige-warm) 0%, #EFE3C8 50%, var(--beige-warm) 100%);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(154, 122, 74, 0.15);
  border-bottom: 1px solid rgba(154, 122, 74, 0.15);
}

.ticker-ornament {
  flex-shrink: 0;
  padding: 0 24px;
  color: var(--gold-dark);
  font-size: 20px;
}

.ticker-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-row {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.ticker-row span {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.ticker-row strong {
  font-weight: 600;
  color: var(--brown);
}

.ticker-dot {
  color: var(--gold);
  font-size: 12px !important;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS & HEADINGS
   ============================================================ */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--brown-soft);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.section-sub.left-align {
  margin: 0;
  max-width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(154, 122, 74, 0.35);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(154, 122, 74, 0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--brown);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(154, 122, 74, 0.35);
}

.btn-large {
  padding: 18px 42px;
  font-size: 15px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 50px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,169,110,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(380px, 50vw, 560px);
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.bento-large {
  grid-row: 1 / 3;
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-tile:hover img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,12,5,0.4) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.bento-overlay i {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
}

.bento-tile:hover .bento-overlay {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 128, 104, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.amenities-left .section-eyebrow {
  margin-bottom: 14px;
}

.amenities-left .section-title {
  margin-bottom: 16px;
}

.amenities-left .section-sub {
  margin-bottom: 36px;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(60, 40, 20, 0.04);
  transition: all var(--transition);
}

.amenity-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(154, 122, 74, 0.18);
  background: rgba(255,255,255,0.85);
}

.amenity-card i {
  color: var(--gold-dark);
  font-size: 18px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold-soft);
  border-radius: 10px;
  transition: all var(--transition);
}

.amenity-card:hover i {
  background: var(--gradient-gold);
  color: var(--white);
}

.amenity-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.amenities-right {
  position: relative;
}

.amenities-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

.amenities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.amenities-image:hover img {
  transform: scale(1.04);
}

.amenities-image-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  animation: float 4s ease-in-out infinite;
}

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

.floating-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.floating-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.floating-card-sub {
  font-size: 11px;
  color: var(--brown-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section {
  background: var(--cream);
  position: relative;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.room-bed {
  font-size: 13px;
  color: var(--brown-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 500;
}

.room-bed i {
  color: var(--gold);
}

.room-features {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}

.room-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 20px;
  border-bottom: 1px dashed rgba(154, 122, 74, 0.15);
}

.room-features li:last-child {
  border-bottom: none;
}

.room-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 8px;
}

.room-btn {
  align-self: flex-start;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  position: relative;
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.reviews-rating {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.reviews-stars {
  color: var(--gold);
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.reviews-count {
  color: var(--brown-soft);
  font-size: 14px;
}

.reviews-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.btn-reviews-airbnb,
.btn-reviews-leave {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-reviews-airbnb {
  background: #FF5A5F;
  color: #fff;
}

.btn-reviews-airbnb:hover {
  background: #e0484d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.35);
}

.btn-reviews-leave {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.18);
}

.btn-reviews-leave:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  font-weight: 700;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 110, 0.3);
}

/* Airbnb badge on card */
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff5f5;
  border: 1px solid rgba(255, 90, 95, 0.2);
  border-radius: 50px;
  padding: 3px 10px 3px 7px;
  font-size: 11px;
  font-weight: 700;
  color: #FF5A5F;
  letter-spacing: 0.03em;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.review-meta {
  font-size: 12px;
  color: var(--brown-soft);
}

/* ============================================================
   WRITE A REVIEW FORM
   ============================================================ */
.write-review-wrap {
  margin-top: 52px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.write-review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.write-review-header .fa-pen-to-square {
  font-size: 22px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.write-review-header h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}

.write-review-header p {
  margin: 0;
  font-size: 14px;
  color: var(--brown-soft);
}

.write-review-form {
  padding: 28px 32px;
  display: grid;
  gap: 20px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.write-review-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.write-review-form input,
.write-review-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fdfcf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.write-review-form input::placeholder,
.write-review-form textarea::placeholder {
  color: rgba(100, 80, 50, 0.4);
}

.write-review-form input:focus,
.write-review-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
  background: var(--white);
}

.write-review-form textarea {
  resize: vertical;
  min-height: 110px;
}

.review-form-bottom {
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-top: 4px;
}

.review-star-picker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-star-picker > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.star-inputs {
  display: flex;
  gap: 4px;
}

.star-btn {
  background: none;
  border: none;
  padding: 2px;
  font-size: 22px;
  color: #d4c5a5;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.star-btn.active,
.star-btn:hover,
.star-btn.hovered {
  color: var(--gold);
}

.star-btn:hover {
  transform: scale(1.2);
}

.btn-submit-review {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-submit-review:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* New review card — fade + slide in */
.review-card-new {
  animation: cardAppear 0.5s ease forwards;
}

@keyframes cardAppear {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Success message */
.review-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 32px 0;
  padding: 14px 18px;
  background: #f0faf4;
  border: 1.5px solid #22c55e;
  border-radius: var(--radius);
  color: #166534;
  font-weight: 600;
  font-size: 14px;
  animation: cardAppear 0.3s ease forwards;
}

.review-success-msg .fa-check-circle {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.review-form-note {
  padding: 0 32px 20px;
  font-size: 12px;
  color: var(--brown-soft);
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 680px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }
  .review-form-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .write-review-header,
  .write-review-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .review-form-note {
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn-submit-review {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
  background: var(--cream);
}

.location-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 460px;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.map-stylized {
  position: relative;
  width: 100%;
  height: 100%;
  background: #cfe6e2;
}

.map-stylized svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--gold-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  filter: drop-shadow(0 6px 12px rgba(60, 40, 20, 0.3));
}

.map-pin i {
  font-size: 38px;
  color: #C9374F;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.map-pin span {
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid var(--gold);
}

.map-pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 8px);
  width: 24px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 55, 79, 0.4);
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: translate(-50%, 8px) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, 8px) scale(1.6); opacity: 0; }
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.location-head i {
  font-size: 24px;
  color: var(--gold-dark);
  margin-top: 4px;
}

.location-head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.location-head p {
  font-size: 14px;
  color: var(--brown-soft);
}

.location-desc {
  color: var(--brown-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--transition);
}

.chip i {
  color: var(--gold-dark);
  font-size: 13px;
}

.chip em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
  padding-left: 10px;
  border-left: 1px solid rgba(154, 122, 74, 0.2);
  margin-left: 4px;
}

.chip:hover {
  background: var(--gradient-gold-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
  color: var(--white);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink);
  background-image: url('assets/cta-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: ctaZoom 24s ease-in-out infinite alternate;
}

@keyframes ctaZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,5,0.55) 0%, rgba(20,12,5,0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.cta-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 38px;
  letter-spacing: 0.04em;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #2A1F12 0%, #1C140A 100%);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-image {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.32);
  box-shadow: 0 12px 30px rgba(43, 31, 18, 0.12);
}

.footer-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-monogram {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.footer-monogram em {
  font-style: normal;
  color: var(--gold);
  margin: 0 3px;
  font-weight: 300;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.footer-tag {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 999px;
  font-size: 13px;
}

.footer-rating i {
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col a, .footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col a i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
}

.footer-address {
  margin-top: 6px;
}

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

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   STICKY MOBILE BOOK BUTTON
   ============================================================ */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  letter-spacing: 0.02em;
}

.sticky-book i {
  font-size: 20px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 2, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 90%;
  max-width: 1200px;
  height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  z-index: 2;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gradient-gold);
  border-color: transparent;
}

.lightbox-counter {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open a {
    color: var(--brown) !important;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .amenities-image {
    aspect-ratio: 16 / 11;
    max-width: 640px;
    margin: 0 auto;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .location-wrap {
    grid-template-columns: 1fr;
  }

  .map-frame { min-height: 360px; }

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

@media (max-width: 720px) {
  .booking-bar-wrap {
    margin-top: 0; /* no overlap on mobile — just sit below hero naturally */
    padding: 16px clamp(16px, 4vw, 24px);
  }

  .booking-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius-md);
    max-width: 100%;
  }

  .booking-bar .booking-field {
    flex: none;
    width: 100%;
  }

  .booking-bar .booking-btn {
    margin-left: 0;
    margin-top: 8px;
    padding: 16px;
    width: 100%;
    justify-content: center;
  }

  .booking-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 122, 74, 0.3), transparent);
  }

  .hero { padding-bottom: 0; }
  .hero-content { transform: translateY(-40px); }
  .hero-scroll { display: none; }

  .trust-section { padding-top: 20px; }

  .trust-badges {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 40px;
  }

  .trust-divider-v {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-auto-rows: 180px;
  }

  .bento-large {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 280px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .floating-card {
    left: 16px;
    bottom: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin: 0 auto;
  }

  .btn-large {
    justify-content: center;
  }

  .sticky-book { display: flex; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev, .lightbox-next {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 14vw; }
  .ticker-row span { font-size: 12px; }
  .nav-logo-text { display: none; }
  .nav-logo-image {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

/* ============================================================
   BRIGHT WHITE PREMIUM THEME
   ============================================================ */
:root {
  --cream: #FFFFFF;
  --cream-soft: #FBFAF7;
  --beige: #F3EFE8;
  --beige-warm: #F7F2E9;
  --gold: #C5A365;
  --gold-deep: #AD8950;
  --gold-dark: #8C6A38;
  --gold-light: #E8D7AF;
  --ink: #211E1A;
  --ink-soft: #3D3933;
  --brown: #49443D;
  --brown-soft: #746D64;
  --shadow-sm: 0 6px 20px rgba(45, 39, 31, 0.06);
  --shadow-md: 0 16px 42px rgba(45, 39, 31, 0.09);
  --shadow-lg: 0 28px 70px rgba(45, 39, 31, 0.12);
  --shadow-xl: 0 40px 100px rgba(45, 39, 31, 0.16);
  --gradient-gold: linear-gradient(135deg, #DCC28F 0%, #C5A365 52%, #9C7843 100%);
  --gradient-gold-soft: linear-gradient(135deg, rgba(220, 194, 143, 0.16), rgba(197, 163, 101, 0.06));
}

html {
  background: #FFFFFF;
}

body,
.loader,
.booking-bar-wrap,
.trust-section,
.gallery-section,
.rooms-section,
.location-section {
  background: #FFFFFF;
}

body {
  color: var(--ink);
}

.navbar,
.navbar.scrolled {
  background: transparent;
  box-shadow: none;
  padding: 14px 0;
}

.nav-container {
  max-width: 1260px;
  padding: 13px clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(31, 28, 23, 0.12);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.navbar.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(197, 163, 101, 0.20);
  box-shadow: 0 12px 36px rgba(31, 28, 23, 0.10);
}

.nav-logo,
.navbar.scrolled .nav-logo,
.nav-links a,
.navbar.scrolled .nav-links a {
  color: var(--ink);
}

.nav-logo-text {
  opacity: 0.68;
}

.nav-logo-image,
.footer-logo-image {
  background: #FFFFFF;
  border-color: rgba(197, 163, 101, 0.28);
}

.nav-toggle span,
.navbar.scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-cta,
.booking-btn,
.btn-gold {
  box-shadow: 0 12px 30px rgba(156, 120, 67, 0.24);
}

.hero {
  min-height: 100svh;
  background: #FFFFFF;
}

.hero-bg {
  filter: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 38%, rgba(255,255,255,0.20) 100%),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.10) 100%);
}

.hero-content {
  width: min(900px, calc(100% - 40px));
  padding: clamp(28px, 5vw, 52px) clamp(24px, 6vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(24px, 3vw, 36px);
  box-shadow: 0 30px 90px rgba(31, 28, 23, 0.16);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  transform: translateY(-20px);
}

.hero-eyebrow {
  color: var(--gold-dark);
}

.hero-title {
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255,255,255,0.7);
}

.hero-subtitle {
  color: var(--brown);
  text-shadow: none;
}

.hero-scroll {
  bottom: 24px;
  border-color: rgba(33, 30, 26, 0.38);
}

.hero-scroll span {
  background: var(--gold-dark);
}

.booking-bar-wrap {
  margin-top: -38px;
}

.booking-bar {
  border-color: rgba(197, 163, 101, 0.22);
  box-shadow: 0 24px 70px rgba(45, 39, 31, 0.14);
}

.ticker {
  background: linear-gradient(90deg, #FBFAF7 0%, #F5EFE4 50%, #FBFAF7 100%);
}

.gallery-section::before,
.amenities-section::before {
  opacity: 0.55;
}

.amenities-section,
.reviews-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF7 52%, #FFFFFF 100%);
}

.amenity-card,
.review-card,
.write-review-wrap,
.location-info,
.floating-card {
  border-color: rgba(197, 163, 101, 0.16);
  box-shadow: var(--shadow-sm);
}

.amenity-card {
  background: rgba(255,255,255,0.88);
}

.amenity-card:hover,
.room-card:hover,
.review-card:hover {
  box-shadow: var(--shadow-lg);
}

.room-card,
.review-card,
.write-review-wrap,
.location-info {
  background: #FFFFFF;
}

.room-card {
  border: 1px solid rgba(197, 163, 101, 0.14);
}

.bento-tile,
.amenities-image,
.room-card {
  box-shadow: 0 18px 48px rgba(45, 39, 31, 0.10);
}

.cta-section {
  margin: clamp(24px, 5vw, 64px);
  border-radius: clamp(24px, 4vw, 40px);
  overflow: hidden;
  min-height: 560px;
  background-color: #F6F1E8;
  box-shadow: 0 30px 90px rgba(45, 39, 31, 0.14);
}

.cta-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(24,21,17,0.42) 100%);
}

.cta-content {
  width: min(840px, calc(100% - 40px));
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(24, 21, 17, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cta-eyebrow {
  color: var(--gold-dark);
}

.cta-title,
.cta-sub {
  color: var(--ink);
  text-shadow: none;
}

.cta-section .btn-outline {
  color: var(--ink);
  background: rgba(255,255,255,0.68);
  border-color: rgba(33,30,26,0.24);
}

.cta-section .btn-outline:hover {
  background: #FFFFFF;
  border-color: var(--gold);
}

.footer {
  background: #FFFFFF;
  color: var(--ink);
  border-top: 1px solid rgba(197, 163, 101, 0.20);
}

.footer::before {
  height: 2px;
}

.footer-monogram,
.footer-name,
.footer-col h4 {
  color: var(--ink);
}

.footer-tag,
.footer-col a,
.footer-col p,
.footer-bottom {
  color: var(--brown-soft);
}

.footer-rating {
  background: var(--gradient-gold-soft);
  border: 1px solid rgba(197, 163, 101, 0.18);
}

.footer-socials a {
  color: var(--gold-dark);
  border-color: rgba(197, 163, 101, 0.30);
}

.footer-bottom {
  border-top-color: rgba(197, 163, 101, 0.16);
}

@media (max-width: 1024px) {
  .nav-container {
    width: auto;
    margin: 0 14px;
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(197, 163, 101, 0.16);
    box-shadow: 0 24px 60px rgba(45, 39, 31, 0.14);
  }

  .nav-links a {
    color: var(--ink);
  }
}

@media (max-width: 720px) {
  .navbar,
  .navbar.scrolled {
    padding: 10px 0;
  }

  .nav-container {
    padding: 11px 14px;
    border-radius: 16px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 28px 18px;
    border-radius: 24px;
    transform: translateY(-8px);
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 68px);
  }

  .hero-scroll {
    display: none;
  }

  .booking-bar-wrap {
    margin-top: -24px;
  }

  .cta-section {
    margin: 18px 12px 44px;
    min-height: 520px;
  }

  .cta-content {
    width: calc(100% - 28px);
    padding: 30px 18px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .nav-logo-text {
    display: block;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   CASA DE CARDOZO — RESPONSIVE LOGO + HERO MEDIA GALLERY
   ============================================================ */
.loader-logo-image {
  width: min(280px, 76vw);
  height: 150px;
  padding: 8px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.nav-logo-image {
  width: 112px;
  height: 52px;
  flex: 0 0 112px;
  padding: 3px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.footer-logo-image {
  width: min(250px, 100%);
  height: 128px;
  padding: 6px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.hero {
  overflow: hidden;
}

.hero-bg[hidden],
.hero-sound-btn[hidden] {
  display: none !important;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: heroMediaFade 0.65s ease both;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.08) 0%, transparent 48%, rgba(15, 12, 8, 0.42) 100%);
}

@keyframes heroMediaFade {
  from { opacity: 0.35; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.hero-sound-btn {
  position: absolute;
  z-index: 4;
  top: clamp(104px, 14vh, 142px);
  right: clamp(16px, 3vw, 40px);
  min-height: 44px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(25, 20, 14, 0.62);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.02em;
  transition: transform var(--transition), background var(--transition);
}

.hero-sound-btn:hover,
.hero-sound-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(25, 20, 14, 0.82);
}

.hero-sound-btn.is-unmuted {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.hero-gallery {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 40px));
  padding: 12px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  grid-template-rows: auto auto;
  gap: 8px 10px;
  color: #fff;
  background: rgba(20, 16, 11, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.hero-gallery-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 4px;
}

.hero-gallery-kicker {
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-gallery-status {
  font: 500 11px/1 var(--font-body);
  color: rgba(255, 255, 255, 0.78);
}

.hero-gallery-track {
  min-width: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.hero-gallery-track::-webkit-scrollbar {
  display: none;
}

.hero-gallery-arrow {
  width: 40px;
  height: 54px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-gallery-arrow:hover,
.hero-gallery-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.04);
}

.hero-media-thumb {
  position: relative;
  flex: 0 0 92px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: center;
  border: 2px solid transparent;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-media-thumb:hover,
.hero-media-thumb:focus-visible,
.hero-media-thumb.is-active {
  opacity: 1;
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.hero-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-thumb[data-media="video"] {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  padding: 6px 8px;
  font: 600 11px/1 var(--font-body);
}

.hero-video-thumb {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
}

@media (max-width: 720px) {
  .nav-logo {
    gap: 7px;
  }

  .nav-logo-image {
    width: 84px;
    height: 44px;
    flex-basis: 84px;
  }

  .nav-logo-text {
    font-size: 12px;
  }

  .hero-sound-btn {
    top: 92px;
    right: 12px;
    padding: 10px 13px;
  }

  .hero-gallery {
    bottom: 94px;
    width: calc(100% - 20px);
    padding: 9px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    border-radius: 16px;
  }

  .hero-gallery-arrow {
    width: 34px;
    height: 48px;
  }

  .hero-media-thumb {
    flex-basis: 76px;
    height: 48px;
  }

  .hero-media-thumb[data-media="video"] {
    grid-template-columns: 28px 1fr;
    padding: 5px;
  }

  .hero-video-thumb {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 390px) {
  .nav-logo-copy {
    display: none;
  }

  .footer-logo {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-image {
    width: min(220px, 100%);
    height: 112px;
  }

  .hero-gallery-kicker {
    font-size: 10px;
  }

  .hero-sound-btn span {
    max-width: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }
}
