/* ============================================
   78 on 5th — Brand Design System
   Palette: Dark Golden-Brown — Warm & Luxurious
   Type: Playfair Display + Source Sans 3
   ============================================ */

:root {
  color-scheme: dark;
  accent-color: #D4A03C;
  --dark-bg: #1A1714;
  --medium-bg: #241F1A;
  --card-bg: #2E2720;
  --gold: #D4A03C;
  --gold-dark: #B8860B;
  --terracotta: #C4956A;
  --amber: #D4A03C;
  --amber-hover: #B8860B;
  --heading-text: #F5EDE0;
  --body-text: #D4C5B0;
  --muted-text: #A69882;
  --border-warm: rgba(212, 160, 60, 0.15);
  --border-subtle: rgba(245, 237, 224, 0.08);
  --white: #F5EDE0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #1A1714; }
::-webkit-scrollbar-thumb { background: #D4A03C; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #B8860B; }
html { scrollbar-width: thin; scrollbar-color: #D4A03C #1A1714; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* SEO: visually-hidden H1 — keeps semantic structure, hides from sighted users */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--dark-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Room card conversion copy: visible rack rate + Jose JNR direct-discount route */
.room-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.room-card:hover .room-cta,
.room-card-main:hover .room-cta {
  color: var(--gold-dark);
  text-decoration: underline;
}
.rates-cta-wrap {
  text-align: center;
  margin: 32px 0 24px;
}
.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

a { color: #F5EDE0; text-decoration: none; text-shadow: 0 0 8px rgba(212, 160, 60, 0.6), 0 0 2px rgba(184, 134, 11, 0.8); }
a:hover { color: #fff; }

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--dark-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 700;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(245, 237, 224, 0.4);
}
.btn-ghost:hover {
  background: rgba(245, 237, 224, 0.08);
  color: var(--white);
  border-color: var(--white);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 12px;
  background: var(--dark-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}
.btn-nav:hover { background: var(--amber-hover); color: #fff; }

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 3px;
}
.btn-sm:hover { background: var(--terracotta); color: var(--dark-bg); }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-self: center;
  transition: opacity 0.3s ease;
}
.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter:
    drop-shadow(0 0 6px rgba(212, 160, 60, 0.6))
    drop-shadow(0 0 2px rgba(184, 134, 11, 0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: end;
}

.nav-links a {
  color: var(--body-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: #F5EDE0; text-shadow: 0 0 8px rgba(212, 160, 60, 0.6), 0 0 2px rgba(184, 134, 11, 0.8); }

/* HERO — Split layout: dark title area + image below */
.hero {
  position: relative;
  color: var(--heading-text);
}

.hero-split {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero-split .hero-content {
  background: transparent;
  text-align: center;
  padding: 140px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible;
  max-width: none;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero logo — golden-brown with depth */
.hero-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 16px;
}

.hero-logo {
  height: 140px;
  width: auto;
  filter:
    drop-shadow(0 0 8px rgba(212, 160, 60, 0.6))
    drop-shadow(0 0 2px rgba(184, 134, 11, 0.8));
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 600;
  text-transform: uppercase;
  color: #F5EDE0;
  margin: 0;
  padding-bottom: 12px;
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 2px;
  position: relative;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}
.hero-subtitle::after {
  content: '';
  display: block;
  margin-top: 8px;
  height: 2px;
  background: #F5EDE0;
  box-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 3px rgba(184, 134, 11, 0.8);
}

.hero-story {
  background: radial-gradient(ellipse at center, rgba(26, 23, 20, 0.92) 0%, rgba(26, 23, 20, 0.85) 50%, transparent 100%);
  padding: 32px 24px;
  border-radius: 8px;
  margin-bottom: 8px;
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--heading-text);
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow:
    0 0 30px rgba(184, 134, 11, 0.3),
    0 0 60px rgba(184, 134, 11, 0.15);
}

.hero-glow {
  text-shadow:
    0 0 30px rgba(212, 160, 60, 0.5),
    0 0 60px rgba(184, 134, 11, 0.3),
    0 0 100px rgba(184, 134, 11, 0.15);
}

.hero-image {
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.property-banner {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.property-banner img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-split .hero-badges {
  position: static;
  transform: none;
  margin-top: 40px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5EDE0;
  margin-bottom: 24px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.hero-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow:
    0 0 12px rgba(212, 160, 60, 0.5),
    0 0 4px rgba(184, 134, 11, 0.7);
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.9);
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

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

.hero-badges {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 2;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 237, 224, 0.8);
}

.badge-score {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #F5EDE0;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.badge-label {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

/* DIRECT BANNER */
.direct-banner {
  background: var(--medium-bg);
  color: var(--body-text);
  padding: 24px 0;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.direct-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.direct-banner h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--heading-text);
}

.direct-banner p {
  font-size: 15px;
  color: var(--muted-text);
}

/* SECTIONS */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5EDE0;
  margin-bottom: 12px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--heading-text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted-text);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ROOMS */
.rooms {
  padding: 100px 0;
  background: var(--dark-bg);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.room-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  color: var(--body-text);
  border: 1px solid var(--border-subtle);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  color: var(--body-text);
}

.room-card.featured {
  border: 2px solid var(--gold);
}

.room-card-main {
  display: block;
  color: var(--body-text);
  flex: 1;
}

.room-card-main:hover {
  color: var(--body-text);
}

.room-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.room-img-label {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-info {
  padding: 24px;
}

.room-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #FFFFFF;
  text-shadow: none;
}

.room-detail {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-shadow: none;
}

.room-detail-secondary {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.room-rate {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border-warm);
  flex-wrap: wrap;
}

.rate-from {
  font-size: 12px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: none;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #F5EDE0;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.rate-unit {
  font-size: 13px;
  color: #FFFFFF;
  text-shadow: none;
}

.room-direct-rate {
  margin-top: 8px;
  margin-bottom: 0;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.45;
}

.room-direct-rate strong {
  color: var(--gold);
  font-weight: 700;
}

.room-card-actions {
  padding: 0 24px 24px;
}

.room-jose-cta {
  width: 100%;
  border: 1px solid rgba(212, 160, 60, 0.8);
  background: linear-gradient(135deg, var(--gold), #f5d084);
  color: var(--dark-bg);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.room-jose-cta:hover,
.room-jose-cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 160, 60, 0.25);
  background: linear-gradient(135deg, #f5d084, var(--gold));
  outline: none;
}

.rates-note {
  text-align: center;
  color: var(--muted-text);
  font-size: 14px;
}
.rates-note a { color: #F5EDE0; font-weight: 500; text-shadow: 0 0 8px rgba(212, 160, 60, 0.6), 0 0 2px rgba(184, 134, 11, 0.8); }

/* ABOUT */
.about {
  padding: 100px 0;
  background: var(--medium-bg);
}

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

.about-img {
  height: 500px;
  border-radius: 8px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-text);
}

/* RATES TABLE */
.rates {
  padding: 100px 0;
  background: var(--dark-bg);
}

.rate-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.rate-table th {
  text-align: left;
  padding: 16px;
  background: var(--card-bg);
  color: #F5EDE0;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--gold-dark);
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.rate-table th small {
  display: block;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
  margin-top: 2px;
  color: var(--muted-text);
}

.rate-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-warm);
  color: var(--body-text);
}

.rate-table tbody tr:hover {
  background: var(--medium-bg);
}

.rate-notes {
  max-width: 700px;
}

.rate-notes p {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 8px;
}

/* LOCATION */
.location {
  padding: 100px 0;
  background: var(--medium-bg);
}

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

.location-map {
  height: 400px;
  border-radius: 8px;
}

.location-list {
  list-style: none;
  margin: 24px 0;
}

.location-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-warm);
  font-size: 16px;
  color: var(--body-text);
}

.location-address {
  margin-top: 24px;
  color: var(--muted-text);
  font-size: 14px;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--dark-bg);
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
}

.contact-method h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted-text);
  margin-bottom: 8px;
}

.contact-method a {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #F5EDE0;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}
.contact-method a:hover { color: #fff; }

/* FOOTER */
.footer {
  background: #13100D;
  color: var(--muted-text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter:
    drop-shadow(0 0 6px rgba(212, 160, 60, 0.6))
    drop-shadow(0 0 2px rgba(184, 134, 11, 0.8));
}

.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F5EDE0;
  margin-bottom: 16px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.footer a {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 8px;
  text-shadow: none;
}
.footer a:hover { color: #FFFFFF; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 237, 224, 0.06);
  font-size: 13px;
  text-align: center;
  color: rgba(166, 152, 130, 0.6);
}

/* STICKY MOBILE BOOKING */
.sticky-book {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border-warm);
  padding: 12px 24px;
  z-index: 99;
  display: none;
}

.sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-from {
  font-size: 14px;
  color: var(--muted-text);
}
.sticky-from strong {
  font-size: 20px;
  color: #F5EDE0;
  font-family: var(--font-heading);
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.btn-sticky {
  padding: 12px 28px;
  font-size: 14px;
}

/* WARM ACCENTS */

/* Decorative strip — warm texture band */
.hero-coastal-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 700px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-coastal-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 1;
  filter: brightness(1.2);
  -webkit-mask-image:
    linear-gradient(to left,
      black 0%, black 10%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0.03) 85%,
      transparent 100%),
    linear-gradient(to top,
      transparent 0%,
      rgba(0,0,0,0.2) 10%,
      rgba(0,0,0,0.6) 25%,
      black 45%, black 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to left,
      black 0%, black 10%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0.03) 85%,
      transparent 100%),
    linear-gradient(to top,
      transparent 0%,
      rgba(0,0,0,0.2) 10%,
      rgba(0,0,0,0.6) 25%,
      black 45%, black 100%);
  mask-composite: intersect;
}
.hero-coastal-left {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
.hero-coastal-left img {
  -webkit-mask-image:
    linear-gradient(to left,
      black 0%, black 10%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0.03) 85%,
      transparent 100%),
    linear-gradient(to top,
      transparent 0%,
      rgba(0,0,0,0.2) 10%,
      rgba(0,0,0,0.6) 25%,
      black 45%, black 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to left,
      black 0%, black 10%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0.03) 85%,
      transparent 100%),
    linear-gradient(to top,
      transparent 0%,
      rgba(0,0,0,0.2) 10%,
      rgba(0,0,0,0.6) 25%,
      black 45%, black 100%);
  mask-composite: intersect;
}

.coastal-strip {
  height: 200px;
  margin: -40px 0;
  position: relative;
  z-index: 1;
  background-color: var(--dark-bg);
  background-image: url('coastal-strip.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
}

/* Decorative divider */
.coastal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
}

.coastal-divider::before,
.coastal-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border-warm);
}

.coastal-divider img {
  height: 32px;
  width: auto;
  opacity: 0.4;
}

/* ACTIVITIES PAGE */
.activities-hero {
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 24px 64px;
  position: relative;
  background: url('images/activities/hero.jpg') center 35% / cover no-repeat;
}

.activities-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.95) 0%, rgba(46, 39, 32, 0.4) 60%);
}

.activities-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.activities-hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.75);
  margin-top: 16px;
  max-width: 600px;
}

.activities-hero-cta {
  margin-top: 32px;
}
.activities-hero-cta .btn-primary {
  padding: 16px 36px;
  font-size: 14px;
}

.activities-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.activity-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.activity-card:last-child {
  margin-bottom: 0;
}

.activity-card-reverse {
  direction: rtl;
}

.activity-card-reverse > * {
  direction: ltr;
}

.activity-img {
  height: 350px;
  border-radius: 8px;
  background-color: var(--card-bg);
}

.activity-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow:
    0 0 12px rgba(212, 160, 60, 0.5),
    0 0 4px rgba(184, 134, 11, 0.7);
}

.activity-season {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5EDE0;
  margin-bottom: 16px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}

.activity-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-text);
}

.activities-cta {
  padding: 80px 0;
  background: var(--medium-bg);
}

/* HAMBURGER MENU */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
  justify-self: end;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--body-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.98);
  backdrop-filter: blur(16px);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--heading-text);
  text-shadow: none;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212, 160, 60, 0.6);
}

.mobile-nav .btn-nav {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 36px;
  margin-top: 16px;
}

/* WHATSAPP FLOATING BUTTON */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 80px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; grid-column: 3; justify-self: end; }

  .hero-title { font-size: 42px; }
  .hero-logo-wrap { max-height: 100px; }
  .hero-logo { height: 130px; }
  .hero-tagline { font-size: 18px; }
  .hero-sub { font-size: 16px; }
  .hero-badges { flex-direction: column; gap: 16px; position: static; transform: none; margin-top: 48px; }

  .direct-banner-inner { flex-direction: column; text-align: center; }

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

  .about-grid,
  .location-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-img { height: 300px; }

  .activity-card { grid-template-columns: 1fr; gap: 24px; }
  .activity-card-reverse { direction: ltr; }
  .activity-img { height: 250px; }

  .contact-grid { flex-direction: column; gap: 32px; }

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

  .sticky-book { display: block; }

  .rate-table { font-size: 13px; }
  .rate-table th, .rate-table td { padding: 10px 8px; }
}

/* === Footer contact column (added 2026-05-19) === */
.footer .footer-grid > div:last-child a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.5;
}
.footer .footer-grid > div:last-child a:hover {
  color: #D4A03C;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   Cookie consent banner (POPI gate for GTM/GA4)
   ============================================ */
#cc-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #1A1714; color: #F5EDE0;
  border-top: 2px solid #D4A03C;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  padding: 16px 24px;
}
#cc-banner .cc-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; justify-content: space-between;
}
#cc-banner .cc-msg { font-size: 14px; line-height: 1.5; margin: 0; flex: 1 1 380px; color: #D4C5B0; }
#cc-banner .cc-msg a { color: #D4A03C; text-decoration: underline; }
#cc-banner .cc-buttons { display: flex; gap: 8px; flex: 0 0 auto; }
#cc-banner .cc-btn {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  border-radius: 4px; cursor: pointer; border: 1px solid #D4A03C;
  background: transparent; color: #D4A03C;
  transition: background 0.2s, color 0.2s;
}
#cc-banner .cc-btn:hover { background: #D4A03C; color: #1A1714; }
#cc-banner .cc-accept { background: #D4A03C; color: #1A1714; }
#cc-banner .cc-accept:hover { background: #B8860B; border-color: #B8860B; }
@media (max-width: 600px) {
  #cc-banner .cc-inner { flex-direction: column; align-items: stretch; }
  #cc-banner .cc-buttons { justify-content: stretch; }
  #cc-banner .cc-btn { flex: 1; }
}
/* Room Detail Page */

.room-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 24px 64px;
  position: relative;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.95) 0%, rgba(46, 39, 32, 0.5) 60%);
}

.room-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.room-back {
  display: inline-block;
  color: rgba(245, 237, 224, 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}
.room-back:hover { color: var(--white); }

.room-hero-rate {
  font-size: 18px;
  color: #F5EDE0;
  margin-top: 16px;
  text-shadow:
    0 0 8px rgba(212, 160, 60, 0.6),
    0 0 2px rgba(184, 134, 11, 0.8);
}
.room-hero-rate strong {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #F5EDE0;
  text-shadow:
    0 0 12px rgba(212, 160, 60, 0.5),
    0 0 4px rgba(184, 134, 11, 0.7);
}

/* GALLERY */
.room-gallery {
  padding: 48px 0;
  background: var(--medium-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-main {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder {
  color: var(--muted-text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ROOM DETAIL LAYOUT */
.room-detail-section {
  padding: 64px 0 100px;
  background: var(--dark-bg);
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.room-description h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--heading-text);
  margin-bottom: 24px;
}

.room-description p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 16px;
}

.amenity-grid {
  margin-top: 48px;
}

.amenity-grid h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted-text);
  margin-bottom: 16px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity {
  background: var(--medium-bg);
  border: 1px solid var(--border-warm);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--body-text);
}

/* BOOKING CARD */
.booking-card {
  position: sticky;
  top: 96px;
}

.booking-card-inner {
  background: var(--dark-bg);
  border: 1px solid var(--border-warm);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.booking-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--heading-text);
  margin-bottom: 4px;
}

.booking-card-sub {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 6px;
}

.booking-card-amenity {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.booking-rates h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--body-text);
  margin-bottom: 8px;
  margin-top: 20px;
}
.booking-rates h4:first-child { margin-top: 0; }
.booking-rates h4 small {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-text);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-warm);
  font-size: 15px;
  color: var(--body-text);
}

.rate-row strong {
  color: var(--heading-text);
}

.booking-perk {
  margin: 24px 0;
  padding: 16px;
  background: rgba(196, 149, 106, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--terracotta);
}

.booking-perk strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}

.booking-perk p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
}

.booking-contact {
  text-align: center;
  margin-top: 16px;
}
.booking-contact p {
  font-size: 13px;
  color: var(--muted-text);
}
.booking-contact a { color: var(--gold); font-weight: 500; }

/* POLICIES */
.policies {
  padding: 64px 0;
  background: var(--medium-bg);
  border-top: 1px solid var(--border-warm);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.policy h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading-text);
  margin-bottom: 8px;
}

.policy p {
  font-size: 15px;
  color: var(--body-text);
}

/* OTHER ROOMS */
.other-rooms {
  padding: 80px 0;
  background: var(--dark-bg);
}

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

.other-card {
  display: block;
  color: var(--body-text);
}
.other-card:hover { color: var(--gold); }
.other-card:hover .other-img { transform: scale(1.02); }

.other-img {
  height: 180px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
  border: 1px solid var(--border-warm);
}

.other-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.other-card p {
  font-size: 14px;
  color: var(--muted-text);
}

/* MOBILE */
@media (max-width: 768px) {
  .room-hero { min-height: 50vh; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px 150px; }
  .gallery-main { grid-column: 1 / 3; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .policy-grid { grid-template-columns: 1fr 1fr; }
  .other-grid { grid-template-columns: 1fr; }
}
