/* ============================================================
   LUIGI'S COMPLEX — Design System
   Family-run self-catering apartments, Kololi, The Gambia
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --color-black: #1A1A1A;
  --color-terracotta: #C75B3A;
  --color-terracotta-dark: #A84A2E;
  --color-terracotta-light: #D97A5C;
  --color-cream: #FFF9F0;
  --color-sand: #F5E6D0;
  --color-green: #3A7D4A;
  --color-ocean: #2E7D98;
  --color-gold: #D4A843;
  --color-white: #FFFFFF;
  --color-grey-100: #F7F7F7;
  --color-grey-200: #E8E8E8;
  --color-grey-300: #D0D0D0;
  --color-grey-600: #6B6B6B;
  --color-grey-800: #333333;
  --color-dark-bg: #141414;
  --color-whatsapp: #25D366;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.1875rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --fs-5xl: 4.5rem;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-body: 1.7;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-section: 5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-lift: 0 12px 40px rgba(199,91,58,0.15);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1200px;
  --max-width-narrow: 900px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-black);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-terracotta-dark);
}

ul, ol { list-style: none; }

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

:focus-visible {
  outline: 3px solid var(--color-terracotta-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--color-black);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-2xl); margin-bottom: var(--space-sm); }
h4 { font-size: var(--fs-xl); margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-sm); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-heading {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-grey-600);
  max-width: 600px;
  line-height: var(--lh-body);
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.85em 2em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-terracotta);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-dark-ghost {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-grey-300);
}

.btn-dark-ghost:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1em 2.5em;
  font-size: var(--fs-base);
}


/* --- Header --- */
.lu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.lu-header.scrolled {
  background: rgba(255,249,240,0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.lu-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lu-header-logo {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-terracotta);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.lu-header.scrolled .lu-header-logo {
  font-size: var(--fs-lg);
}

.lu-header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.lu-header-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  padding: 0.25em 0;
  transition: color var(--transition-fast);
}

.lu-header.scrolled .lu-header-nav a {
  color: var(--color-grey-800);
}

.lu-header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width var(--transition-smooth);
}

.lu-header-nav a:hover::after,
.lu-header-nav a.active::after {
  width: 100%;
}

.lu-header-nav a:hover {
  color: var(--color-terracotta);
}

/* Nav Dropdowns */
.lu-nav-dropdown { position: relative; }
.lu-nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.25rem; }
.lu-dropdown-arrow { font-size: 0.6em; transition: transform 0.2s; }
.lu-nav-dropdown:hover .lu-dropdown-arrow { transform: rotate(180deg); }
.lu-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--color-white); min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-radius: 0 0 8px 8px; padding: 0.5rem 0; z-index: 200; }
.lu-nav-dropdown:hover .lu-dropdown-menu { display: block; }
.lu-dropdown-menu a { display: block; padding: 0.55rem 1.2rem; font-size: 0.9rem; color: var(--color-black); text-decoration: none; transition: background 0.2s; }
.lu-dropdown-menu a::after { display: none; }
.lu-dropdown-menu a:hover { background: rgba(199,91,58,0.08); color: var(--color-terracotta); }

/* Logo image */
.lu-header-logo img { height: 50px; max-width: 160px; width: auto; transition: height 0.3s; }
.lu-header.scrolled .lu-header-logo img { height: 40px; }

/* Transparent header gradient overlay */
.lu-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}
/* The logo artwork already carries the orange flower + white wordmark.
   It must never be filtered to flat white or flat black — that was the defect
   Julie reported on 11 Aug. Dark bar = artwork as-is; light bar swaps the file. */
.lu-header:not(.scrolled) .lu-header-nav a,
.lu-header:not(.scrolled) .lu-header-phone {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* --- Header dropdown panel: always legible in every header state --- */
/* The transparent-header rule above forces nav links white; the panel items must
   NOT inherit that. These selectors carry 4 classes (0,4,1) so they win over both
   the transparent (.lu-header:not(.scrolled) .lu-header-nav a) and scrolled
   (.lu-header.scrolled .lu-header-nav a) overrides in every state. */
.lu-header .lu-dropdown-menu {
  background: var(--color-white);
  border: 1px solid rgba(26,26,26,0.10);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(26,26,26,0.18);
  padding: 0.4rem 0;
}
.lu-header .lu-header-nav .lu-nav-dropdown .lu-dropdown-menu a {
  color: var(--color-black);
  text-shadow: none;
  font-weight: 500;
}
.lu-header .lu-header-nav .lu-nav-dropdown .lu-dropdown-menu a:hover,
.lu-header .lu-header-nav .lu-nav-dropdown .lu-dropdown-menu a:focus-visible {
  background: rgba(199,91,58,0.10);
  color: var(--color-terracotta);
}
.lu-header .lu-header-nav .lu-nav-dropdown .lu-dropdown-menu a:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: -2px;
}
/* Keyboard access: open the panel when any child link receives focus */
.lu-nav-dropdown:focus-within .lu-dropdown-menu { display: block; }

.lu-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lu-header-phone {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  margin-right: 0.5rem;
  transition: color var(--transition-fast);
}

.lu-header.scrolled .lu-header-phone {
  color: var(--color-grey-800);
}

.lu-header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.lu-header-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  color: var(--color-white);
}

.lu-header-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lu-header .btn-primary {
  padding: 0.6em 1.5em;
  font-size: var(--fs-xs);
}

.lu-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.lu-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.lu-header.scrolled .lu-hamburger span {
  background: var(--color-black);
}

.lu-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.lu-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.lu-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}


/* --- Mobile Nav --- */
.lu-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.lu-mobile-nav.open {
  transform: translateX(0);
}

.lu-mobile-nav a {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-cream);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lu-mobile-nav a:hover {
  color: var(--color-terracotta);
}

.lu-mobile-nav .btn-primary {
  margin-top: var(--space-sm);
  font-size: var(--fs-base);
}


/* --- Hero --- */
/* Round 0: the full-bleed overlay hero (.lu-hero/.lu-hero-bg/.lu-hero-content/
   .lu-hero-subtitle/.lu-hero-ctas) was removed with the markup — the homepage now
   uses .lu-strapline + .lu-hero-photo. .lu-hero-small below is still used. */

.lu-hero-small {
  min-height: 50vh;
  padding-top: 100px;
}

.lu-hero-small h1 {
  font-size: var(--fs-4xl);
}


/* --- Stats Bar --- */
.lu-stats-bar {
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 1.25rem 0;
  overflow: hidden;
}

.lu-stats-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.lu-stats-bar span {
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.lu-stats-bar .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}


/* --- Sections --- */
.lu-section {
  padding: var(--space-section) 0;
}

.lu-section-dark {
  background: var(--color-dark-bg);
  color: var(--color-cream);
}

.lu-section-dark h2,
.lu-section-dark h3,
.lu-section-dark h4 {
  color: var(--color-cream);
}

.lu-section-dark .section-subtitle {
  color: rgba(255,249,240,0.7);
}

.lu-section-sand {
  background: var(--color-sand);
}

.lu-section-cream {
  background: var(--color-cream);
}

.lu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.lu-two-col-text {
  max-width: 520px;
}


/* --- Cards --- */
.lu-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

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

.lu-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.lu-card-body {
  padding: var(--space-md);
}

.lu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}


/* --- Room Cards --- */
.lu-room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.lu-room-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lu-room-card-body {
  padding: var(--space-md);
}

.lu-room-card-block {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-terracotta);
  margin-bottom: 0.25rem;
}

.lu-room-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: 0.5rem;
}

.lu-room-card-details {
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.lu-room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--color-grey-200);
}

.lu-room-card-price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-terracotta);
}

.lu-room-card-price small {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--color-grey-600);
}

.lu-room-card-cta {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-terracotta);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lu-room-card-cta:hover {
  color: var(--color-terracotta-dark);
  transform: translateX(4px);
  display: inline-block;
}


/* --- Reviews --- */
.lu-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.lu-review {
  position: relative;
  padding: var(--space-lg);
  padding-top: var(--space-xl);
}

.lu-review::before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-terracotta);
  opacity: 0.4;
}

.lu-review-text {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-style: italic;
  line-height: var(--lh-snug);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.lu-review-author {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-terracotta-light);
  font-weight: 500;
}

.lu-review-stars {
  color: var(--color-gold);
  font-size: var(--fs-sm);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}


/* --- Gallery --- */
.lu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

/* Gallery page: plain stacked sections, one per kind of photo. No tabs — the
   page has to work with JS off, and tabs would hide most of it. */
.lu-gallery-page {
  /* block-only: .container owns the horizontal padding */
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.lu-gallery-section + .lu-gallery-section {
  margin-top: var(--space-lg);
}

.lu-gallery-section > h2 {
  margin-bottom: 0.75rem;
}

.lu-gallery-lead {
  color: var(--color-grey-700, #555);
  margin-bottom: 1rem;
  max-width: 46em;
}

.lu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.lu-gallery-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lu-gallery-blocks a {
  padding: 10px 20px;
  border: 2px solid var(--color-terracotta, #C75B3A);
  border-radius: 50px;
  color: var(--color-terracotta, #C75B3A);
  font-weight: 600;
  text-decoration: none;
}

.lu-gallery-blocks a:hover,
.lu-gallery-blocks a:focus-visible {
  background: var(--color-terracotta, #C75B3A);
  color: #fff;
}

.lu-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.lu-gallery-item picture {
  display: block;
}

.lu-gallery-item:focus-visible {
  outline: 3px solid var(--color-terracotta, #C75B3A);
  outline-offset: 3px;
}

/* Uniform 4:3 crop keeps the rows straight; width/height on the <img> plus this
   ratio means the space is reserved before the photo loads. */
.lu-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.lu-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition-base);
}

.lu-gallery-item:hover::after {
  background: rgba(0,0,0,0.15);
}


/* --- Lightbox --- */
.lu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lu-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lu-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lu-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lu-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lu-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lu-lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lu-lightbox-prev { left: 1.5rem; }
.lu-lightbox-next { right: 1.5rem; }

.lu-lightbox[hidden] {
  display: none;
}

.lu-lightbox-close:focus-visible,
.lu-lightbox-nav:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.lu-lightbox-count {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  margin: 0;
}

@media (max-width: 640px) {
  .lu-lightbox-nav { width: 40px; height: 40px; }
  .lu-lightbox-prev { left: 0.5rem; }
  .lu-lightbox-next { right: 0.5rem; }
}


/* --- Menu Item --- */
.lu-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-grey-200);
}

.lu-menu-item-name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
}

.lu-menu-item-desc {
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
  margin-top: 0.25rem;
}

.lu-menu-item-price {
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
  margin-left: var(--space-sm);
}


/* --- Booking CTA --- */
.lu-booking-cta {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.lu-booking-cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.lu-booking-cta p {
  font-size: var(--fs-md);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.lu-booking-cta .btn-ghost {
  border-color: rgba(255,255,255,0.5);
}


/* --- WhatsApp Floating Button --- */
.lu-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  text-decoration: none;
}

/* Back to top */
.lu-back-to-top { position: fixed; bottom: 2rem; left: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--color-black); color: var(--color-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 890; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.lu-back-to-top.visible { opacity: 1; pointer-events: auto; }
.lu-back-to-top:hover { transform: scale(1.1); background: var(--color-terracotta); }

.lu-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: var(--color-white);
}

.lu-whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}


/* --- Back to Top --- */
.lu-back-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-terracotta);
  border: 1px solid var(--color-grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-smooth);
  font-size: 1.25rem;
}

.lu-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lu-back-top:hover {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}


/* --- Breadcrumb --- */
.lu-breadcrumb {
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
}

.lu-breadcrumb a {
  color: var(--color-grey-600);
}

.lu-breadcrumb a:hover {
  color: var(--color-terracotta);
}

.lu-breadcrumb .sep {
  margin: 0 0.5em;
  opacity: 0.5;
}


/* --- Blog Card --- */
.lu-blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.lu-blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.lu-blog-card-body {
  padding: var(--space-md);
}

.lu-blog-card-date {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  margin-bottom: 0.5rem;
}

.lu-blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: 0.5rem;
  line-height: var(--lh-snug);
}

.lu-blog-card-title a {
  color: var(--color-black);
  text-decoration: none;
}

.lu-blog-card-title a:hover {
  color: var(--color-terracotta);
}

.lu-blog-card-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
  line-height: var(--lh-body);
}


/* --- Footer --- */
.lu-footer {
  background: var(--color-dark-bg);
  color: rgba(255,249,240,0.8);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.lu-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.lu-footer h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.lu-footer p {
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  margin-bottom: 0.5rem;
}

.lu-footer a {
  color: rgba(255,249,240,0.7);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lu-footer a:hover {
  color: var(--color-terracotta-light);
}

.lu-footer-links li {
  margin-bottom: 0.6rem;
}

.lu-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255,249,240,0.4);
}

.lu-footer-bottom a {
  color: var(--color-terracotta-light);
  font-size: var(--fs-xs);
}


/* --- Scroll Animations --- */
.lu-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lu-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.lu-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lu-fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.lu-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lu-fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Scroll-reveal fallback (progressive enhancement) --- */
/* No JS: the inline <head> script never ran to strip .no-js, so keep content visible. */
.no-js .lu-fade-in,
.no-js .lu-fade-in-left,
.no-js .lu-fade-in-right {
  opacity: 1;
  transform: none;
}

/* Reduced-motion: show content immediately, no reveal animation. */
@media (prefers-reduced-motion: reduce) {
  .lu-fade-in,
  .lu-fade-in-left,
  .lu-fade-in-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* --- Responsive --- */
@media (max-width: 1200px) {
  .lu-header-nav { gap: 1.25rem; }
}

@media (max-width: 1024px) {
  .lu-header-nav { display: none; }
  .lu-header-phone { display: none; }
  .lu-hamburger { display: flex; }

  .lu-two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .lu-reviews-grid {
    grid-template-columns: 1fr;
  }

  .lu-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  h1 { font-size: var(--fs-3xl); }
}

@media (max-width: 768px) {
  :root {
    --space-section: 3rem;
  }

  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-2xl); }

  .lu-card-grid {
    grid-template-columns: 1fr;
  }

  .lu-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .lu-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .lu-stats-bar .container {
    gap: 0.4rem 1rem;
  }

  .lu-stats-bar span {
    font-size: var(--fs-xs);
  }
}

@media (max-width: 480px) {
  .lu-back-top { right: 5.5rem; }
}

@media (max-width: 375px) {
  body { font-size: 1rem; }
}


/* --- Print Styles --- */
@media print {
  .lu-header,
  .lu-mobile-nav,
  .lu-whatsapp-btn,
  .lu-back-top,
  .lu-lightbox { display: none !important; }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .lu-section { padding: 1.5rem 0; }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }
}


/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lu-fade-in,
  .lu-fade-in-left,
  .lu-fade-in-right {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   INTERIOR-PAGE LAYER
   The interior pages (blocks, story, contact, booking, map…)
   were authored against short variable names and an unprefixed
   class family that never shipped. This layer supplies both,
   in the same cream/terracotta/serif language as the rest.
   ============================================================ */

/* --- Variable aliases used by interior pages --- */
:root {
  --terracotta: var(--color-terracotta);
  --terracotta-light: var(--color-terracotta-light);
  --terracotta-dark: var(--color-terracotta-dark);
  --black: var(--color-black);
  --white: var(--color-white);
  --cream: var(--color-cream);
  --cream-dark: var(--color-sand);
  --sand: var(--color-sand);
  --green: var(--color-green);
  --gold: var(--color-gold);
  --gray-300: var(--color-grey-300);
  --gray-500: var(--color-grey-600);
  --gray-600: var(--color-grey-600);
  --gray-700: var(--color-grey-800);
  --transition: 0.3s ease;
}

/* --- Skip link: hidden until keyboard focus --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.6em 1.2em;
  border-radius: 0 0 var(--radius-md) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* --- Solid header on interior pages (added by main.js when no full hero) --- */
.lu-header.solid:not(.scrolled) {
  background: rgba(255, 249, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.lu-header.solid:not(.scrolled) .lu-header-nav a,
.lu-header.solid:not(.scrolled) .lu-header-phone {
  color: var(--color-grey-800);
  text-shadow: none;
}
/* (interior-page logo: no filter — see the logo note above) */
.lu-header.solid:not(.scrolled) .lu-hamburger span {
  background: var(--color-black);
}

/* --- Header behaviour fixes --- */
.lu-header-nav {
  flex-wrap: nowrap;
}
.lu-header-nav a {
  white-space: nowrap;
}
.lu-header-actions {
  margin-left: 1.25rem;
}
.lu-header-phone {
  white-space: nowrap;
}
@media (max-width: 1280px) {
  .lu-header-nav { gap: 1.1rem; }
  .lu-header-nav a { font-size: var(--fs-xs); }
}

/* --- Interior page hero --- */
.hero-small {
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(199, 91, 58, 0.10) 0%, rgba(199, 91, 58, 0) 55%),
    linear-gradient(to bottom, var(--color-sand) 0%, var(--color-cream) 100%);
  padding: 9.5rem 0 3.25rem;
  text-align: center;
}
.hero-small h1 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-xs);
}
.hero-small p {
  color: var(--color-grey-600);
  font-size: var(--fs-md);
  margin: 0 auto;
  max-width: 620px;
}
@media (max-width: 768px) {
  .hero-small { padding: 7.5rem 0 2.5rem; }
  .hero-small h1 { font-size: var(--fs-3xl); }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 0.85rem 0;
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
  background: var(--color-cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb a { color: var(--color-grey-600); }
.breadcrumb a:hover { color: var(--color-terracotta); }
.breadcrumb span { margin: 0 0.5em; opacity: 0.5; }
.breadcrumb strong { color: var(--color-black); font-weight: 600; }

/* --- Sections --- */
.section { padding: var(--space-section) 0; }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }
.container--narrow { max-width: var(--max-width-narrow); }
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section__header p { color: var(--color-grey-600); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- Intro box (text + image, or image pair) --- */
.intro-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.intro-box__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .intro-box { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* --- Room & content cards --- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.card__image-placeholder {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(90% 130% at 15% 0%, rgba(199, 91, 58, 0.08) 0%, rgba(199, 91, 58, 0) 60%),
    linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  text-align: center;
  padding: var(--space-sm);
}
.card__image-placeholder::before {
  content: '';
  width: 56px;
  height: 56px;
  background: url('../images/luigis-logo.png') center / contain no-repeat;
  opacity: 0.35;
}
.card__image-placeholder span {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-grey-600);
}
.card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-terracotta);
  margin-bottom: 0.25rem;
}
.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  margin-bottom: 0.35rem;
  line-height: var(--lh-snug);
}
.card__title a { color: var(--color-black); }
.card__title a:hover { color: var(--color-terracotta); }
.card__meta {
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
  margin-bottom: 0.75rem;
}
.card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.25rem 0 1rem;
}
.card__amenity {
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 3px 11px;
  border-radius: 50px;
  background: rgba(199, 91, 58, 0.07);
  border: 1px solid rgba(199, 91, 58, 0.18);
  color: var(--color-grey-800);
  white-space: nowrap;
}
.card__price {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-grey-200);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-terracotta);
}
.card__price small {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--color-grey-600);
}
.card__actions { margin-top: 0.75rem; }
.card__actions .btn { width: 100%; justify-content: center; }
.sc-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-green);
  color: var(--color-white);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.45rem;
}

/* --- Block header (block pages) --- */
.block-header {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  max-width: 900px;
  margin-bottom: var(--space-md);
}
.block-header__number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 2px solid var(--color-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-terracotta);
}
@media (max-width: 600px) {
  .block-header { flex-direction: column; gap: var(--space-sm); }
}

/* --- CTA band --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-white); margin-bottom: var(--space-sm); }
.cta-section p { opacity: 0.92; }
.cta-section a:not(.btn) { color: var(--color-white); text-decoration: underline; }

/* --- Button modifiers (double-dash family) --- */
.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-terracotta);
}
.btn--primary:hover {
  background: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.cta-section .btn--primary {
  background: var(--color-white);
  color: var(--color-terracotta);
  border-color: var(--color-white);
}
.cta-section .btn--primary:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-terracotta-dark);
}
.btn--secondary {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-grey-300);
}
.btn--secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}
.btn--white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--white:hover {
  background: var(--color-white);
  color: var(--color-terracotta);
  border-color: var(--color-white);
  transform: translateY(-2px);
}
.btn--sm { padding: 0.55em 1.4em; font-size: var(--fs-xs); }
.btn--lg { padding: 1em 2.5em; font-size: var(--fs-base); }

/* --- Interior footer --- */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255, 249, 240, 0.8);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}
.footer p {
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  margin-bottom: 0.5rem;
}
.footer a {
  color: rgba(255, 249, 240, 0.7);
  font-size: var(--fs-sm);
}
.footer a:hover { color: var(--color-terracotta-light); }
.footer ul li { margin-bottom: 0.6rem; }
.footer .btn {
  font-size: var(--fs-xs);
  padding: 0.6em 1.5em;
}
.footer .btn-wa-footer {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}
.footer .btn-wa-footer:hover {
  background: #1fb457;
  border-color: #1fb457;
  color: var(--color-white);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: rgba(255, 249, 240, 0.4);
}
.footer__bottom a { color: var(--color-terracotta-light); font-size: var(--fs-xs); }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* --- Amenities strip --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-grey-800);
}
.amenity-item svg { color: var(--color-terracotta); flex-shrink: 0; }

/* --- Diagram map (accommodation page) --- */
.complex-map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #E4EFD9 0%, #D5E8CE 100%);
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.map-area {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.map-area div span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 400;
  opacity: 0.85;
}
a.map-area:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}
.map-area--block { background: var(--color-terracotta); }
.map-area--pool { background: var(--color-ocean); }
.map-area--restaurant { background: var(--color-black); }
.map-area--spa { background: var(--color-gold); }
.map-area--cafe { background: var(--color-green); }
.map-area--utility { background: var(--color-grey-600); }
.map-label {
  position: absolute;
  font-style: italic;
  font-size: var(--fs-xs);
  color: #5a8a5e;
  opacity: 0.8;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
}
.map-legend__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* --- SVG map page --- */
.svg-map-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm);
}
.svg-map-container svg { width: 100%; height: auto; display: block; }
.clickable-area { cursor: pointer; }
.clickable-area:hover rect { opacity: 0.85; }

/* --- Floor plans --- */
.download-box {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}
.download-box > svg { color: var(--color-terracotta); flex-shrink: 0; }
.download-box .btn { margin-right: 8px; margin-top: 4px; }
@media (max-width: 600px) {
  .download-box { flex-direction: column; }
}
.floor-plan-embed {
  width: 100%;
  height: 75vh;
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

/* --- Tables (rates) --- */
.table-responsive { overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--color-sand);
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
}
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-grey-200);
  font-size: var(--fs-sm);
}
.pricing-table tr:last-child td { border-bottom: none; }
.price-cell {
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
}

/* --- Info boxes --- */
.terms-box {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.terms-box ul {
  list-style: disc;
  padding-left: 1.3em;
}
.terms-box ul li { margin-bottom: 0.6em; }

/* --- Review sample note --- */
.review-sample-note {
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--color-grey-600);
  text-align: center;
  margin-top: var(--space-lg);
  opacity: 0.85;
}
.lu-section-dark .review-sample-note { color: rgba(255, 249, 240, 0.5); }

/* --- Spacing utilities --- */
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* Intro-box image pairs share one aspect so rows sit level */
.intro-box__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: 100%;
}


/* ============================================================
   ROUND 0 — Julie's decisions, 11 Aug 2026
   Phase 2 (logo) · Phase 3 (fixed dark header) · Phase 4 (home top)
   ============================================================ */

/* --- Phase 2: the logo keeps its orange flower in every header state --- */
/* No brightness/invert filters anywhere. The artwork is white-wordmark +
   orange flower, which is correct on the dark bar. The light bar swaps in a
   variant whose wordmark is near-black and whose flower is untouched. */
.lu-header .lu-header-logo img { filter: none; }

body.header--light .lu-header .lu-header-logo img {
  content: url("../images/logo-orange-on-light.png");
}

/* --- Phase 3: fixed dark header, in every state --- */
.lu-header,
.lu-header.scrolled,
.lu-header.solid,
.lu-header.solid:not(.scrolled),
.lu-header:not(.scrolled) {
  background: var(--color-black);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-sm);
}

.lu-header .lu-header-nav a,
.lu-header .lu-header-phone,
.lu-header.scrolled .lu-header-nav a,
.lu-header.scrolled .lu-header-phone,
.lu-header.solid:not(.scrolled) .lu-header-nav a,
.lu-header.solid:not(.scrolled) .lu-header-phone,
.lu-header:not(.scrolled) .lu-header-nav a,
.lu-header:not(.scrolled) .lu-header-phone {
  color: var(--color-white);
  text-shadow: none;
}

.lu-header .lu-header-nav a:hover,
.lu-header .lu-header-nav a.active {
  color: var(--color-white);
}
/* hover/active = white text + 2px terracotta underline (the ::after already
   draws the underline; these rules just keep the text white on the dark bar) */

.lu-header.solid:not(.scrolled) .lu-hamburger span,
.lu-header .lu-hamburger span {
  background: var(--color-white);
}

/* Compact state on scroll — height only, no colour change */
.lu-header { padding: 1.15rem 0; transition: padding 0.2s ease; }
.lu-header.scrolled { padding: 0.7rem 0; }

@media (prefers-reduced-motion: reduce) {
  .lu-header { transition: none; }
}

/* The header is position:fixed, so the page needs to start below it.
   --lu-header-h is measured and re-measured by js/main.js. */
:root { --lu-header-h: 84px; }
body { padding-top: var(--lu-header-h); }

/* Anchor targets clear the fixed bar */
html { scroll-padding-top: calc(var(--lu-header-h) + 12px); }
[id] { scroll-margin-top: calc(var(--lu-header-h) + 12px); }

/* Mobile drawer sits below the fixed bar and scrolls.
   It has 13 items: with `justify-content:center` the list overflowed the
   viewport and spilled up over the header, so it is top-aligned + scrollable. */
.lu-mobile-nav {
  top: var(--lu-header-h);
  justify-content: flex-start;
  padding: 1.25rem 1rem 3rem;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.lu-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;          /* tap target */
  width: 100%;
  padding: 0.4rem 0;
  font-size: var(--fs-xl);
}
.lu-mobile-nav .btn-primary {
  min-height: 48px;
  margin-top: 1rem;
}

/* Light header variant — A/B capture only, NOT shipped */
body.header--light .lu-header,
body.header--light .lu-header.scrolled,
body.header--light .lu-header.solid,
body.header--light .lu-header:not(.scrolled) {
  background: var(--color-cream);
  box-shadow: var(--shadow-sm);
}
body.header--light .lu-header .lu-header-nav a,
body.header--light .lu-header .lu-header-phone,
body.header--light .lu-header.scrolled .lu-header-nav a,
body.header--light .lu-header:not(.scrolled) .lu-header-nav a,
body.header--light .lu-header:not(.scrolled) .lu-header-phone {
  color: var(--color-black);
  text-shadow: none;
}
/* must out-specify `.lu-header.solid:not(.scrolled) .lu-hamburger span` above */
body.header--light .lu-header .lu-hamburger span,
body.header--light .lu-header.solid:not(.scrolled) .lu-hamburger span,
body.header--light .lu-header.scrolled .lu-hamburger span { background: var(--color-black); }

/* --- Phase 4: strapline band above a shorter hero photo --- */
.lu-strapline {
  background: var(--color-cream);
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}
.lu-strapline .container { max-width: 900px; }
.lu-strapline-eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}
.lu-strapline h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: var(--lh-tight);
  color: var(--color-black);
  margin: 0 0 1rem;
}
.lu-strapline-sub {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--color-grey-600);
  max-width: 34em;
  margin: 0 auto 2rem;
}
.lu-strapline-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lu-hero-photo {
  width: 100%;
  height: clamp(320px, 55vh, 640px);
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--color-sand);
}
.lu-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .lu-hero-photo { height: clamp(220px, 40vh, 380px); }
  .lu-strapline-ctas { flex-direction: column; align-items: center; }
  .lu-strapline-ctas .btn { width: 100%; max-width: 320px; }
}

/* --- Phase 5: sample-note component --- */
.sample-note {
  font-size: .85rem;
  font-style: italic;
  color: var(--ink-2, var(--color-grey-600, #5F564E));
  margin: .5rem 0 0;
  opacity: .9;
}
.lu-section-dark .sample-note { color: rgba(255, 249, 240, 0.6); }

/* --- Phase 7: aerial complex map --- */
.lu-aerial-map { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

.lu-map-block {
  fill: rgba(199, 91, 58, 0.28);
  stroke: var(--color-terracotta);
  stroke-width: 5;
  transition: fill var(--transition-fast);
}
.lu-aerial-map a:hover .lu-map-block,
.lu-aerial-map a:focus-visible .lu-map-block { fill: rgba(199, 91, 58, 0.52); }

.lu-map-block--confirmed { stroke-width: 7; }
.lu-map-block--unknown {
  fill: rgba(107, 107, 107, 0.30);
  stroke: #4a4a4a;
  stroke-dasharray: 14 10;
}

.lu-map-pin circle {
  fill: var(--color-black);
  fill-opacity: 0.88;
  stroke: #fff;
  stroke-width: 3;
}
.lu-map-pin text {
  fill: #fff;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  text-anchor: middle;
}
.lu-map-pin-q { font-size: 30px; fill: var(--color-terracotta-light); }
.lu-map-pin--pool circle { fill: #03a9f4; fill-opacity: 0.92; }
.lu-map-pin--unknown circle { fill: #4a4a4a; fill-opacity: 0.9; }

.lu-map-note {
  fill: #fff;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(26, 26, 26, 0.85);
  stroke-width: 6;
}

.lu-map-caption {
  max-width: 720px;
  margin: var(--space-md) auto 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
}
.lu-map-caption + .sample-note { text-align: center; }

/* --- r0b: real room photos on the room cards --- */
.card__media { position: relative; }
.card__media .card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--color-sand);
  cursor: zoom-in;
}
.card__thumbs {
  display: flex;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
  background: var(--color-sand);
  scrollbar-width: thin;
}
.card__thumb {
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: none;
  cursor: zoom-in;
  line-height: 0;
  min-height: 44px;
}
.card__thumb img {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.card__thumb:hover, .card__thumb:focus-visible { border-color: var(--color-terracotta); }


/* ==========================================================================
   Booking: how it works, the enquiry form, and the two gated slots
   ========================================================================== */

.lu-howto {
  padding: var(--space-xl) 0;
  background: var(--color-cream, #FBF6EF);
}

.lu-howto-lead {
  max-width: 46em;
  color: var(--color-grey-700, #555);
  margin-bottom: var(--space-md);
}

.lu-howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}

.lu-howto-steps li {
  position: relative;
  padding-top: 2.75rem;
}

.lu-howto-steps h3 {
  font-size: var(--fs-lg);
  margin: 0 0 0.35rem;
}

.lu-howto-steps p {
  margin: 0;
  color: var(--color-grey-700, #555);
}

.lu-howto-n {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-terracotta, #C75B3A);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lu-enquiry-section {
  padding: var(--space-xl) 0;
}

.lu-enquiry-lead {
  color: var(--color-grey-700, #555);
  margin-bottom: var(--space-md);
  max-width: 46em;
}

.lu-enquiry {
  background: #fff;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lu-enquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.lu-field {
  margin: 0 0 var(--space-sm);
}

.lu-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.lu-field input,
.lu-field select,
.lu-field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--color-cream-dark, #EADFD1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-cream, #FBF6EF);
  color: inherit;
}

.lu-field input:focus-visible,
.lu-field select:focus-visible,
.lu-field textarea:focus-visible {
  outline: 3px solid var(--color-terracotta, #C75B3A);
  outline-offset: 1px;
}

.lu-enquiry-error {
  margin: 0 0 var(--space-sm);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(199, 91, 58, 0.08);
  border-left: 4px solid var(--color-terracotta, #C75B3A);
  font-size: var(--fs-sm);
}

.lu-enquiry-error[hidden] { display: none; }

.lu-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lu-enquiry-note {
  margin: var(--space-sm) 0 0;
  font-size: var(--fs-sm);
  color: var(--color-grey-600, #666);
}

.lu-availability,
.lu-payment {
  padding: var(--space-xl) 0;
}

.lu-availability[hidden],
.lu-payment[hidden] { display: none; }

@media (max-width: 560px) {
  .lu-enquiry-row { grid-template-columns: 1fr; }
  .lu-enquiry-actions .btn { width: 100%; justify-content: center; }
}
