@import url('fonts.css');

/* Brand Design System Tokens */
:root {
  --bg-primary: #F8F5EE;      /* Warm sand background */
  --bg-secondary: #F1EDE4;    /* Slightly darker sand/off-white */
  --text-primary: #2C2B26;    /* Earthy charcoal/ink */
  --text-secondary: #5A5852;  /* Earthy dark grey */
  --text-light: #8E8B82;      /* Earthy light grey */
  --color-olive: #535A46;     /* Dark sage/olive green (Primary accent) */
  --color-olive-hover: #434838;
  --color-sage: #A2A88E;      /* Light olive/sage (Secondary accent) */
  --color-gold: #F7D279;      /* Warm golden yellow (Highlight badge) */
  --color-white: #FFFFFF;     /* Pure paper white */
  --color-ink: #2C2B26;       /* Ink card background */
  
  --font-serif: 'Lora', serif;
  --font-sans: 'Work Sans', sans-serif;
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-quick: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(44, 43, 38, 0.03);
  --shadow-medium: 0 8px 30px rgba(44, 43, 38, 0.06);
  --shadow-hover: 0 20px 40px rgba(44, 43, 38, 0.12);
  
  --container-width: 1280px;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.35rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

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

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Badges & Tags (WanderWay Lined Style) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-olive);
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.45;
}

.badge::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.45;
}

.badge-olive-light {
  color: var(--color-olive) !important;
}

.badge-gold {
  color: var(--color-gold) !important;
}

.badge-sage {
  color: var(--color-olive) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-quick);
  letter-spacing: 0.02em;
}

/* Diagonal Arrow ↗ suffix and hover animation for all main buttons (SVG mask to match exact thin elegant arrow) */
.btn-primary::after,
.btn-outline::after,
.hero-btn-solid::after,
.hero-btn-transparent::after,
.btn-telvin-book::after,
.btn-lodr-capsule::after,
.btn-booking-capsule::after,
.nav-cta::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10v10'/%3E%3Cpath d='M7 17 17 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-primary:hover::after,
.btn-outline:hover::after,
.hero-btn-solid:hover::after,
.hero-btn-transparent:hover::after,
.btn-telvin-book:hover::after,
.btn-lodr-capsule:hover::after,
.btn-booking-capsule:hover::after,
.nav-cta:hover::after {
  transform: translate(2px, -2px);
}

.btn-primary {
  background-color: var(--color-olive);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--color-olive-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--text-primary);
  border: 1px solid rgba(44, 43, 38, 0.15);
}

.btn-secondary:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: var(--transition-quick);
}

.btn-text:hover::after {
  transform: scaleX(1);
}

/* Card variants from CI */
.card-stack {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ui-card {
  padding: 30px;
  border-radius: var(--border-radius-md);
  flex: 1;
  min-width: 250px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-quick);
}

.ui-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.ui-card.paper {
  background-color: var(--color-white);
  color: var(--text-primary);
  border: 1px solid rgba(44, 43, 38, 0.05);
}

.ui-card.panel {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.ui-card.panel p {
  color: rgba(255, 255, 255, 0.9);
}

.ui-card.ink {
  background-color: var(--color-ink);
  color: var(--bg-primary);
}

.ui-card.ink p {
  color: var(--text-light);
}

/* Top Utility Bar */
.top-bar {
  background-color: var(--color-olive);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-contact {
  display: flex;
  gap: 24px;
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
}

/* Header & Navigation (Transparent/Overlay Style) */
header.site-header {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid rgba(248, 245, 238, 0.1);
  transition: var(--transition-quick);
}

header.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

header.site-header.scrolled {
  position: fixed;
  top: 0;
  background-color: rgba(248, 245, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(83, 90, 70, 0.15);
  box-shadow: var(--shadow-subtle);
}

header.site-header.scrolled .logo,
header.site-header.scrolled .nav-link {
  color: var(--color-olive);
}

header.site-header.scrolled .nav-link::after {
  background-color: var(--color-olive);
}

header.site-header.scrolled .mobile-toggle span {
  background-color: var(--color-olive);
}

/* Text color defaults on transparent header (when on dark images) */
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
  flex-shrink: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Nav links centered in the header (absolute centering) */
.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* The CTA button in the header – separate it to the right */
.nav-cta {
  display: none;
  flex-shrink: 0;
  z-index: 2;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition-quick);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Header style for standard subpages without dark hero background */
body.subpage-standard header.site-header {
  position: relative;
  top: 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(83, 90, 70, 0.15);
}

body.subpage-standard header.site-header .logo,
body.subpage-standard header.site-header .nav-link {
  color: var(--color-olive);
}

body.subpage-standard header.site-header .nav-link::after {
  background-color: var(--color-olive);
}

body.subpage-standard header.site-header .mobile-toggle span {
  background-color: var(--color-olive);
}

body.subpage-standard header.site-header.scrolled {
  position: fixed;
  top: 0;
  z-index: 100;
}

@media (max-width: 1023px) {
  header.site-header {
    top: 0;
    position: fixed;
    background-color: rgba(248, 245, 238, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(83, 90, 70, 0.08);
  }
  .logo {
    color: var(--text-primary);
  }
  header.site-header .nav-link {
    color: var(--text-primary);
  }
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-olive);
  border-radius: 2px;
  transition: var(--transition-quick);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--text-primary) !important;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--text-primary) !important;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-primary);
}

/* Full-bleed Hero Section (Inspiration: WanderWay) */
/* =============================================
   FULL-BLEED HERO SLIDER (WanderWay Style)
   ============================================= */
.hero-slider-container {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background-color: var(--text-primary);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(44, 43, 38, 0.45) 0%,
    rgba(44, 43, 38, 0.25) 40%,
    rgba(44, 43, 38, 0.65) 75%,
    rgba(44, 43, 38, 0.85) 100%
  );
}

/* Overlay fills the full hero, acts as flex parent */
.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  padding: 0 24px;
}

/* Content block lives in the lower portion */
.hero-content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 960px;
  margin-bottom: 0;
}

/* Subtitle with horizontal rule to the left */
.hero-subtitle-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.hero-subtitle-rule {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero-subtitle-line {
    display: block;
    text-align: center;
  }
  .hero-subtitle-rule {
    display: none;
  }
  .hero-subtitle {
    white-space: normal;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }
}

.hero-title-centered {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* Button group – two pill buttons */
.hero-buttons-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn-solid {
  background-color: var(--color-white);
  color: var(--text-primary);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 15px 32px;
}

.hero-btn-solid:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hero-btn-transparent {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  padding: 15px 32px;
  backdrop-filter: blur(4px);
}

.hero-btn-transparent:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Slider Arrow Controls – Capsule at very bottom */
.hero-slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--color-olive);
  border-radius: var(--border-radius-full);
  padding: 6px;
  border: none;
}

.hero-control-btn {
  background-color: transparent;
  border: none;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-quick);
  font-size: 1.2rem;
}

.hero-control-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile adjustments for Hero */
@media (max-width: 767px) {
  .hero-slider-container {
    min-height: 100vh;
    min-height: 100svh; /* safe viewport height for mobile */
  }

  .hero-content-bottom {
    margin-bottom: 90px;
    padding: 0 8px;
  }

  .hero-title-centered {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 2rem;
  }

  .hero-subtitle-rule {
    width: 36px;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero-buttons-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .hero-btn-solid,
  .hero-btn-transparent {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .hero-slider-controls {
    bottom: 20px;
  }

  .hero-control-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* Page Hero for Subpages */
.page-hero {
  background-color: var(--bg-secondary);
  padding: 120px 0 60px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 80px 0 80px 0;
  }
}

.page-hero h1 {
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  position: relative;
  background-color: var(--bg-primary);
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-box {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  height: 250px;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-box:nth-child(even) {
  transform: translateY(30px);
}

/* Horizontal Room Card Showcase (Inspiration: Veya Stays) */
.rooms-section {
  background-color: var(--bg-secondary);
}

.rooms-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .rooms-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.room-horizontal-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(83, 90, 70, 0.05);
  margin-bottom: 40px;
  transition: var(--transition-smooth);
}

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

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

@media (min-width: 1024px) {
  .room-horizontal-card {
    grid-template-columns: 1fr 1.1fr;
  }
  .room-horizontal-card.reverse {
    grid-template-columns: 1.1fr 1fr;
  }
  .room-horizontal-card.reverse .room-horizontal-card-text {
    order: 2;
  }
  .room-horizontal-card.reverse .room-horizontal-card-image-box {
    order: 1;
  }
}

.room-horizontal-card-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.room-horizontal-card-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--color-olive);
}

.room-horizontal-card-desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.room-horizontal-card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.room-horizontal-card-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-horizontal-card-features li span.checkmark {
  color: var(--color-olive);
  font-weight: bold;
}

.room-horizontal-card-price-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.room-horizontal-card-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: bold;
}

.room-horizontal-card-image-box {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-medium);
}

.room-horizontal-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-horizontal-card:hover .room-horizontal-card-image-box img {
  transform: scale(1.05);
}

.room-image-label {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-ink);
  color: var(--bg-primary);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-subtle);
}

/* Room Details Dark Hero Layout (Inspiration: Lodr & Screenshot 2) */
.room-dark-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--bg-primary);
  padding: 120px 0 60px 0;
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 1024px) {
  .room-dark-hero {
    padding: 80px 0 80px 0;
  }
}

/* Blurred background image layer */
.room-dark-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit; /* inherits background-image from inline style! */
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.45); /* blur and darken */
  transform: scale(1.15); /* prevent blurred edges */
  z-index: -1;
  pointer-events: none;
}

.room-dark-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .room-dark-hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.room-dark-hero-image-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .room-dark-hero-image-card {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .room-dark-hero-image-card {
    height: 480px;
  }
}

.room-dark-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-dark-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.room-dark-hero-content p {
  color: rgba(248, 245, 238, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}

.btn-booking-capsule {
  background-color: var(--color-white);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-quick);
}

.btn-booking-capsule:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
}

/* Horizontal Highlights Bar */
.room-highlights-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(83, 90, 70, 0.08);
  padding: 24px 0;
}

.room-highlights-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.room-highlights-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.room-highlights-list li::after {
  content: '•';
  position: absolute;
  right: -28px;
  color: var(--color-sage);
}

.room-highlights-list li:last-child::after {
  display: none;
}
/* Room Listing Cards (Inspiration: Screenshot 2) */
.room-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-subtle);
}

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

.room-card-image {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.room-card-title {
  font-family: var(--font-sans);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.room-card-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.room-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all 0.25s ease;
  cursor: pointer;
}

.room-card-link:hover {
  color: var(--color-olive);
  border-bottom-color: var(--color-olive);
}

.room-card-link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  vertical-align: middle;
}

.room-card-link:hover::after {
  transform: translateX(3px);
}


/* Room Detail Grid (for individual room pages) */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media (min-width: 1024px) {
  .room-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.room-sidebar {
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .room-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

.room-info-box {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(83, 90, 70, 0.08);
}

.room-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.room-feature-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(83, 90, 70, 0.08);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

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

.room-feature-list li span:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Room Gallery Grid styling */
.room-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.room-gallery-top {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.room-gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .room-gallery-bottom {
    grid-template-columns: 1fr;
  }
  .room-gallery-top {
    height: 300px;
  }
}

.room-gallery-item {
  width: 100%;
  height: 260px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.room-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-gallery-img:hover {
  transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000; /* Must be higher than site header (100) */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 43, 38, 0.95); /* Deep charcoal overlay matching theme */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(248, 245, 238, 0.15);
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--bg-primary); /* warm sand color */
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-quick);
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(83, 90, 70, 0.3); /* subtle olive background overlay */
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  color: var(--color-gold);
  background-color: rgba(83, 90, 70, 0.6);
}

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

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

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

/* Mobile tweaks */
@media (max-width: 768px) {
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    font-size: 2rem;
    width: 45px;
    height: 45px;
  }
  .lightbox-content {
    max-width: 95%;
    max-height: 70%;
  }
}

/* Line Badge (lines on both sides, instead of pills) */
.hero-line-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold); /* default accent color */
  margin-bottom: 1.5rem;
}

.hero-line-badge::before,
.hero-line-badge::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.6;
}

/* Dinner Hero Section */
.dinner-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--bg-primary);
  margin-bottom: 0;
  overflow: hidden;
}

.dinner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(44, 43, 38, 0.4) 0%,
    rgba(44, 43, 38, 0.2) 40%,
    rgba(44, 43, 38, 0.85) 100%
  );
  z-index: 1;
}

.dinner-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.dinner-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 180px; /* space for absolute header */
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .dinner-hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-end;
  }
}

.hero-badge-outline {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(248, 245, 238, 0.3);
  border-radius: var(--border-radius-full);
  font-size: 0.72rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
  background-color: rgba(83, 90, 70, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.dinner-hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--bg-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .dinner-hero-title {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .dinner-hero-title {
    font-size: 3.4rem;
  }
}

.dinner-hero-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(248, 245, 238, 0.85);
  margin: 0;
  padding-bottom: 10px;
}

/* Program / Schedule Section */
.program-section {
  background-color: var(--bg-primary);
}

.program-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.program-tabs {
  display: flex;
  background-color: var(--bg-secondary);
  padding: 6px;
  border-radius: var(--border-radius-full);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.program-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.program-tab-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-quick);
}

.program-tab-btn.active {
  background-color: var(--color-olive);
  color: var(--color-white);
  box-shadow: var(--shadow-subtle);
}

.program-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.program-day-pane {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.program-day-pane.active {
  display: block;
}

.program-timeline {
  position: relative;
  padding-left: 32px;
}

.program-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--color-sage);
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 4px solid var(--color-olive);
  z-index: 2;
  transition: var(--transition-quick);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--color-olive);
}

.timeline-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--bg-secondary);
}

.team-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(44, 43, 38, 0.85) 0%, rgba(44, 43, 38, 0.4) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.team-card-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.team-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  z-index: 3;
  color: var(--color-white);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.team-card-role {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background-color: rgba(83, 90, 70, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.team-card-name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0;
}

/* Pre-Footer / Booking Call to Action (Full-bleed Background Image) */
.prefooter-cta {
  position: relative;
  padding: 100px 0;
  background-image: url('../Reconnect Retreat_Material/025465c2-70ff-4d05-81df-6642ea0e70ee.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prefooter-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 43, 38, 0.45);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .prefooter-cta {
    padding: 140px 0;
  }
}

.prefooter-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--color-white) !important;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.prefooter-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 600px;
  margin: 0 auto 2.5rem auto !important;
  line-height: 1.6;
}

.btn-cta-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-white);
  color: var(--color-ink) !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-cta-booking:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-booking svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-cta-booking:hover svg {
  transform: translate(2px, -2px);
}

/* Booking tool / Form styling */
.booking-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .booking-container {
    grid-template-columns: 1.5fr 1fr;
  }
}

.booking-form-box {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(44, 43, 38, 0.04);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(44, 43, 38, 0.12);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-quick);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(83, 90, 70, 0.1);
  background-color: var(--color-white);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-label, .radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
  cursor: pointer;
}

input[type="checkbox"], input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-olive);
}

/* Booking summary sidebar */
.booking-summary {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  align-self: start;
  box-shadow: var(--shadow-subtle);
}

.booking-summary h3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--color-white);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.summary-row.total {
  border-top: 2px solid var(--color-white);
  border-bottom: none;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 20px;
}

/* Footer Section (Inspiration: Screenshot 2) */
footer.site-footer {
  background-color: var(--color-olive);
  color: var(--bg-primary);
  padding: 80px 0 40px 0;
  position: relative;
  margin-top: 100px; /* space for collage overlap */
}

@media (min-width: 1025px) {
  footer.site-footer {
    padding: 160px 0 60px 0;
    margin-top: 140px;
  }
}

/* Footer Image Collage */
.footer-collage {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .footer-collage {
    display: none;
  }
  footer.site-footer {
    margin-top: 0;
  }
}

.footer-collage-item {
  width: 170px;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  pointer-events: auto;
  background-color: var(--bg-secondary);
}

.footer-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Individual rotations and offsets */
.footer-collage-item:nth-child(1) { transform: rotate(-5deg) translateY(10px); }
.footer-collage-item:nth-child(2) { transform: rotate(3deg) translateY(-5deg); }
.footer-collage-item:nth-child(3) { transform: rotate(-2deg) translateY(15px); }
.footer-collage-item:nth-child(4) { transform: rotate(4deg) translateY(-10deg); }
.footer-collage-item:nth-child(5) { transform: rotate(-3deg) translateY(5deg); }

.footer-collage-item:hover {
  transform: scale(1.06) translateY(-15px) rotate(0deg);
  z-index: 15;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Footer Menu Row */
.footer-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(248, 245, 238, 0.15);
  margin-bottom: 45px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-menu-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid rgba(248, 245, 238, 0.2);
  border-radius: var(--border-radius-full);
  color: var(--bg-primary) !important;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu-btn:hover {
  background-color: var(--color-white);
  color: var(--color-olive) !important;
  border-color: var(--color-white);
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(248, 245, 238, 0.2);
  color: var(--bg-primary) !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-circle:hover {
  background-color: var(--color-white);
  color: var(--color-olive) !important;
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

/* Footer Columns */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-col h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--bg-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(248, 245, 238, 0.75);
  margin-bottom: 15px;
}

/* Avatars styling */
.footer-team-avatars {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-left: 2px;
}

.footer-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-olive);
  object-fit: cover;
  margin-right: -10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.footer-avatar-img:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 5;
}

/* Link Lists */
.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list li a {
  color: rgba(248, 245, 238, 0.75) !important;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-link-list li a:hover {
  color: var(--color-white) !important;
  padding-left: 2px;
}

/* Footer Bottom Copy Bar */
.footer-bottom-new {
  border-top: 1px solid rgba(248, 245, 238, 0.1);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: rgba(248, 245, 238, 0.85);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-new {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom-new a {
  color: rgba(248, 245, 238, 0.85) !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-new a:hover {
  color: var(--color-white) !important;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Scroll Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =============================================
   ABOUT SECTION (Lodr Hotel Style)
   ============================================= */
.about-lodr-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-lodr-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .about-lodr-container {
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
  }
}

.about-lodr-images {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-lodr-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-quick);
  background-color: var(--bg-secondary);
}

.about-lodr-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-lodr-img-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.about-lodr-dot {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Floating heights and offsets on desktop */
@media (min-width: 1024px) {
  .about-lodr-img-card.top-left {
    width: 220px;
    height: 220px;
  }
  .about-lodr-img-card.bottom-left {
    width: 260px;
    height: 260px;
    margin-left: auto;
    transform: translateX(40px);
  }
  .about-lodr-img-card.top-right {
    width: 260px;
    height: 260px;
  }
  .about-lodr-img-card.bottom-right {
    width: 190px;
    height: 190px;
    margin-right: auto;
    transform: translateX(-40px);
  }
}

/* Mobile responsive layout */
@media (max-width: 1023px) {
  .about-lodr-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-lodr-images.right {
    margin-top: 16px;
  }
  .about-lodr-img-card {
    aspect-ratio: 1 / 1;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
}

.about-lodr-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin: 0 auto;
}

.about-lodr-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
}

.about-lodr-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-lodr-content .text-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-olive);
  margin-bottom: 1.5rem;
}

/* Lodr Capsule Button */
.btn-lodr-capsule {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-ink);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-quick);
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.btn-lodr-capsule:hover {
  background-color: var(--color-olive);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-lodr-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  display: inline-block;
}

/* =============================================
   ROOMS SECTION (Telvin Hotel Style)
   ============================================= */
.rooms-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.room-telvin-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  background-color: var(--bg-secondary); /* matches section background to mask previous card */
  padding: 48px 0;
  margin-bottom: 0;
  position: relative;
  box-shadow: none !important;
  border: none !important;
}

@media (min-width: 1024px) {
  .room-telvin-card {
    position: sticky;
    top: 96px; /* spacing from header */
    grid-template-columns: 1.1fr 1.2fr;
    gap: 80px;
    padding: 80px 0; /* clean padding on desktop */
    min-height: calc(100vh - 120px); /* fill screen nicely for sticking */
  }
  
  /* Reverse layout for alternating look (very Telvin) */
  .room-telvin-card:nth-child(even) {
    direction: rtl;
  }
  .room-telvin-card:nth-child(even) .room-telvin-text,
  .room-telvin-card:nth-child(even) .room-telvin-gallery {
    direction: ltr; /* Reset direction for child text and galleries */
  }
}

.room-telvin-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.room-telvin-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.room-telvin-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-olive);
  margin-bottom: 1.2rem;
}

.room-telvin-desc {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Features Grid (Lined top & bottom) */
.room-telvin-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  width: 100%;
  margin: 32px 0;
  border-top: 1px solid rgba(83, 90, 70, 0.12);
  border-bottom: 1px solid rgba(83, 90, 70, 0.12);
  padding: 24px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-olive);
}

.feature-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Actions */
.room-telvin-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-telvin-book {
  background-color: var(--color-olive);
  color: var(--bg-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-quick);
  text-transform: uppercase;
}

.btn-telvin-book:hover {
  background-color: var(--color-olive-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.link-telvin-details {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 2px;
  transition: var(--transition-quick);
}

.link-telvin-details:hover {
  color: var(--color-olive);
  border-color: var(--color-olive);
  padding-left: 4px;
}

/* Asymmetric Image Gallery */
.room-telvin-gallery {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  width: 100%;
}

.gallery-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition-quick);
  background-color: var(--bg-secondary);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.room-telvin-gallery .main-img {
  width: 60%;
  height: 380px;
}

.room-telvin-gallery .side-img {
  width: 40%;
  height: 280px;
  transform: translateY(-30px); /* Offset to create asymmetric look */
}

/* Mobile responsive adjustments */
@media (max-width: 1023px) {
  .room-telvin-card {
    padding: 30px 0;
    margin-bottom: 60px;
  }
  
  .room-telvin-gallery {
    margin-top: 20px;
  }
  
  .room-telvin-gallery .main-img {
    height: 280px;
  }
  
  .room-telvin-gallery .side-img {
    height: 200px;
    transform: none; /* remove offset on mobile */
  }
}

@media (max-width: 480px) {
  .room-telvin-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .room-telvin-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }
  
  .btn-telvin-book {
    text-align: center;
    width: 100%;
  }
  
  .link-telvin-details {
    text-align: center;
    align-self: center;
  }
  
  .room-telvin-gallery {
    flex-direction: column;
    gap: 16px;
  }
  
  .room-telvin-gallery .main-img,
  .room-telvin-gallery .side-img {
    width: 100%;
    height: 220px;
  }
}
