/* =============================================================
   THABA LEGAE GUEST LODGE — CSS DESIGN SYSTEM
   Warm African Luxury · Rustic & Earthy · Sleek & Modern
   =============================================================

   TABLE OF CONTENTS
   -------------------------------------------------
   01. Design Tokens (CSS Variables)
   02. Font Imports
   03. Reset & Base
   04. Typography Scale
   05. Global Utilities
   06. Buttons & CTAs
   07. Preloader
   08. Sub-Header Info Bar
   09. Main Navigation
   09.1 icons colors
   10. Page Banners / Hero
   11. Video Embed
   12. Gallery — 4-col grid + filmstrip lightbox
   13. Footer
   14. Responsive (core)
   15. Property Listing Template
   16. Packages / Promotions Page
   17. About Page
   18. Contact Page
   19. Booking Page
   20. Homepage — extracted inline styles
   ============================================================= */


/* -------------------------------------------------------------
   01. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {

  /* Palette */
  --cream-light:    #FDF1E7;
  --cream:          #F9F4EF;
  --cream-dark:     #EDE4D8;
  --stone:          #C8B89A;
  --amber:          #D9780A;
  --amber-hover:    #B8620A;
  --charcoal:       #1C1916;
  --charcoal-mid:   #2E2A26;
  --charcoal-soft:  #4A453F;
  --white:          #FFFFFF;
  --text-primary:   #1C1916;
  --text-secondary: #6B6157;
  --text-muted:     #9A9088;
  --border:         #DDD5C8;
  --border-light:   #EDE4D8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  /* Font weights */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-xxl: 10rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 0.8, 0.36, 1);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(28, 25, 22, 0.06);
  --shadow-md: 0 8px 32px rgba(28, 25, 22, 0.10);
  --shadow-lg: 0 20px 60px rgba(28, 25, 22, 0.14);
}


/* -------------------------------------------------------------
   02. FONT IMPORTS
   @import ensures fonts load on every HTML page that links
   this stylesheet, even if the <link> tag is absent from <head>.
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');


/* -------------------------------------------------------------
   03. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent iOS/Android font inflation on orientation change */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  background-color: var(--white);
  overflow-x: hidden;
  /* Prevent iOS callout menu on long-press */
  -webkit-touch-callout: none;
}

ul, ol { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
  /* Remove tap highlight flash on iOS and Android */
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

p {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
}

::selection {
  background: var(--amber);
  color: var(--white);
}

/* Strip default iOS/Android styling from form controls */
input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* Prevent iOS auto-zoom on input focus — font-size must be >= 16px */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea,
select {
  font-size: 16px;
}


/* -------------------------------------------------------------
   04. TYPOGRAPHY SCALE
   ------------------------------------------------------------- */

/* Eyebrow — small uppercase label above headings */
.t-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}

/* Section h2 heading */
.t-heading {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}


/* -------------------------------------------------------------
   05. GLOBAL UTILITIES
   ------------------------------------------------------------- */
.section {
  padding: var(--space-xl) 0;
}

.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }

/* Two-column split layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split--wide-right { grid-template-columns: 1fr 1.4fr; }

/* Section heading block */
.section-heading {
  margin-bottom: var(--space-md);
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.section-heading h2 em {
  font-style: italic;
  color: var(--amber);
}

.section-heading h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Homepage welcome split — left image column */
.left-image {
  overflow: hidden;
}

.left-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Homepage welcome split — right content column */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Homepage "featured" section wrapper */
.featured {
  padding: var(--space-xl) 0;
}

/* Homepage full-width section utility */
.full-width {
  width: 100%;
}

/* Feature list used in AccomodationDetails, ConferenceDetails, OrganizedEventsDetails */
.chalets-feature {
  margin-top: var(--space-md);
}

.feature-list li {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* widget-reviews section wrapper (index.html — inline bg overrides) */
.widget-reviews {
  padding: var(--space-xl) 0;
  background: var(--cream);
}


/* -------------------------------------------------------------
   06. BUTTONS & CTAs
   ------------------------------------------------------------- */

/* Base outlined button */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  /* iOS/Android minimum tap target */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover {
  background: var(--charcoal);
  color: var(--cream-light);
}

/* Filled (dark) variant — used on all CTA links */
.btn--filled {
  background: var(--charcoal);
  color: var(--cream-light);
  border-color: var(--charcoal);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
}

.btn--filled:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
}

/* Icon-only booking button in desktop nav */
.btn-icon-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Increased to 44px for iOS/Android tap target compliance */
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: all var(--transition-base);
  margin-left: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-icon-nav:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-icon-nav i { font-size: 0.9rem; }

/* Book Now CTA link in booking page (amber text) */
.btn-amber-text {
  color: var(--amber);
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.btn-amber-text:hover {
  color: var(--amber-hover);
}


/* -------------------------------------------------------------
   07. PRELOADER
   ------------------------------------------------------------- */
.js-preloader {
  position: fixed;
  /* Use longhand instead of inset shorthand for Android < 87 / iOS < 14.5 */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes dot  { 50% { transform: translateX(96px); } }
@keyframes dots { 50% { transform: translateX(-31px); } }

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
}

.preloader-inner .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 14px;
  left: 15px;
  background: var(--amber);
  border-radius: 50%;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  margin-top: 14px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 12px;
  height: 12px;
  margin-left: 16px;
  background: var(--stone);
  border-radius: 50%;
}


/* -------------------------------------------------------------
   08. SUB-HEADER INFO BAR
   ------------------------------------------------------------- */
.sub-header {
  background: var(--charcoal);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(200, 184, 154, 0.14);
}

.sub-header ul.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 2.5rem;
  list-style: none;
}

.sub-header ul.info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.sub-header ul.info li i {
  color: var(--amber);
  font-size: 0.78rem;
}

.sub-header ul.info li a {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  transition: color var(--transition-fast);
}

.sub-header ul.info li a:hover {
  color: var(--cream-light);
}

@media (max-width: 991px) { .sub-header { display: none; } }


/* -------------------------------------------------------------
   09. MAIN NAVIGATION
   ------------------------------------------------------------- */
.header-area {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-area.scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  /* Both prefixed and unprefixed for full iOS/macOS/Android support */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-img {
  max-height: 4.8rem;
  width: auto;
  transition: max-height 0.4s ease;
}

.header-area.scrolled .logo-img { max-height: 3rem; }

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.nav li a {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color var(--transition-base);
  /* Adequate touch target height */
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width var(--transition-base), left var(--transition-base);
}

.nav li a:hover::after,
.nav li a.active::after {
  width: 60%;
  left: 20%;
}

.nav li a:hover,
.nav li a.active { color: var(--amber); }

/* Hamburger */
.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
  /* 44x44 minimum tap target for iOS/Android */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-trigger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.35s ease;
}

.menu-trigger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 0.8rem 0 1.5rem;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.active { display: flex !important; }

.mobile-nav li a {
  display: flex;
  align-items: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav li a:hover,
.mobile-nav li a.active {
  color: var(--amber);
  background: var(--cream);
}

/* Mobile Book Now CTA */
.mobile-nav .btn-book-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 2rem 0;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: var(--charcoal);
  transition: background var(--transition-base);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-nav .btn-book-mobile:hover { background: var(--amber); }

body.menu-open { overflow: hidden; }

@media (max-width: 991px) {
  .menu-trigger { display: flex; }
  .main-nav .nav { display: none !important; }
}


/* -------------------------------------------------------------
   09.1 icons colors
   ------------------------------------------------------------- */

/* Change all icons to your desired color */
i, .icon, [class^="icon-"], [class*=" icon-"], .fa, .fas, .far, .fab {
    color: #your-color-here; /* Replace with your theme color */
}

/* Change icon color on hover */
i:hover, .icon:hover, [class^="icon-"]:hover, [class*=" icon-"]:hover {
    color: #your-hover-color-here; /* Replace with hover color */
}

/* If you only want to change specific icons */
.specific-icon-class {
    color: #your-color-here;
}

/* For Font Awesome icons specifically */
.fa, .fas {
    color: #your-color-here;
}

/* For specific sections */
.social-icons i,
.feature-icons i,
.service-icons i {
    color: #your-color-here;
}

/* -------------------------------------------------------------
   10. PAGE BANNERS / HERO
   ------------------------------------------------------------- */
.main-banner {
  position: relative;
  overflow: hidden;
}

.main-banner .item {
  height: 92vh;
  min-height: 560px;
  max-height: 1080px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.main-banner .item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 25, 22, 0.42);
  z-index: 1;
}

/* Video slide wrapper */
.video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: var(--charcoal);
}

.banner-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.banner-video.loaded { opacity: 1; }

/* Hero text block */
.header-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  max-width: 75%;
}

.header-text h2,
.header-text h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(28, 25, 22, 0.5);
  margin-bottom: 1.5rem;
}

.header-text h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.03em;
}

.header-text h3 {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
}

/* Slide-in animation (Owl active class triggers it) */
.header-text > * {
  opacity: 0;
  transform: translateY(28px);
  transition: all 1s cubic-bezier(0.22, 0.8, 0.36, 1);
}

.owl-item.active .header-text > * { opacity: 1; transform: translateY(0); }
.header-text .t-eyebrow           { transition-delay: 0.2s; }
.header-text h2,
.header-text h3                   { transition-delay: 0.4s; }
.header-text .btn                 { transition-delay: 0.6s; }

/* Owl Carousel controls — classes injected by Owl JS */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(253, 241, 231, 0.10) !important;
  border: 1px solid rgba(253, 241, 231, 0.28) !important;
  color: var(--white) !important;
  font-size: 1.1rem !important;
  transition: all var(--transition-base);
  /* Adequate touch target */
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.owl-nav button:hover {
  background: rgba(217, 120, 10, 0.55) !important;
  border-color: var(--amber) !important;
}

.owl-prev { left: 28px; }
.owl-next { right: 28px; }

.owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.owl-dots .owl-dot {
  width: 22px;
  height: 1.5px;
  background: rgba(253, 241, 231, 0.35) !important;
  border-radius: 0 !important;
  transition: all var(--transition-base);
  /* Enlarged invisible tap area without affecting visual size */
  padding: 10px 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.owl-dots .owl-dot.active {
  width: 44px;
  background: var(--amber) !important;
}

/* Inner page heading banners */
.page-heading {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-heading::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 25, 22, 0.48);
}

.page-heading .container { position: relative; z-index: 1; }

.page-heading .breadcrumb {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.page-heading .breadcrumb a {
  color: var(--stone);
  transition: color var(--transition-fast);
}

.page-heading .breadcrumb a:hover { color: var(--cream-light); }

.page-heading h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  letter-spacing: 0.04em;
}

/* Background images per page */
.accommodation-page-heading   { background-image: url(../images/accommodation-heading-bg.jpg); }
.functions-page-heading       { background-image: url(../images/functions-heading-bg.jpg); }
.organizedevents-page-heading { background-image: url(../images/events-heading-bg.jpg); }


/* -------------------------------------------------------------
   11. VIDEO EMBED
   ------------------------------------------------------------- */

/* .video is used on index.html — background image set inline per page */
.video {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: var(--space-xl) 0;
  position: relative;
}

.video::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 25, 22, 0.55);
}

.video .container { position: relative; z-index: 1; }

.video .section-heading h2 { color: var(--white); }

.video-frame {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.video-frame img { width: 100%; display: block; }

.video-frame a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(253, 241, 231, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-base);
  /* Adequate touch target */
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.video-frame a:hover {
  background: var(--amber);
  border-color: var(--amber);
}


/* -------------------------------------------------------------
   12. GALLERY — 4-col grid + filmstrip lightbox
   Moved from gallery.html <style> block
   ------------------------------------------------------------- */

.gallery-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.gallery-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

/* 4-column fixed grid */
.gallery-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: var(--space-md) 0 var(--space-xl);
  background: var(--white);
}

.gallery-4col-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3 / 2;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* aspect-ratio fallback for iOS < 15 and Android Chrome < 88 */
@supports not (aspect-ratio: 3 / 2) {
  .gallery-4col-item {
    padding-top: 66.66%;
    height: 0;
  }
  .gallery-4col-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.gallery-4col-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.36, 1);
}

.gallery-4col-item:hover img { transform: scale(1.05); }

.gallery-4col-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 25, 22, 0);
  transition: background 0.4s ease;
}

.gallery-4col-item:hover::after {
  background: rgba(28, 25, 22, 0.2);
}

/* Filmstrip lightbox */
.gl-lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 25, 22, 0.96);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: stretch;
}

.gl-lightbox.active {
  display: flex;
}

/* Top bar */
.gl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  flex-shrink: 0;
}

.gl-counter {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.gl-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  font-size: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  /* Adequate touch target */
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gl-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Stage — main image area */
.gl-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 64px;
  min-height: 0;
}

.gl-stage #gl-img {
  max-height: 62vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.18s ease;
}

.gl-stage #gl-img.gl-fade { opacity: 0; }

/* Prev / next arrows */
.gl-prev,
.gl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gl-prev { left: 12px; }
.gl-next { right: 12px; }

.gl-prev:hover,
.gl-next:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Filmstrip */
.gl-filmstrip-wrap {
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
}

.gl-filmstrip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

.gl-filmstrip::-webkit-scrollbar { display: none; }

.gl-thumb {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gl-thumb:hover { opacity: 0.75; }

.gl-thumb.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.75);
}

.gl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery responsive */
@media (max-width: 992px) { .gallery-4col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-4col { grid-template-columns: repeat(2, 1fr); gap: 4px; } }
@media (max-width: 480px) { .gallery-4col { grid-template-columns: repeat(2, 1fr); gap: 3px; } }


/* -------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background-color: var(--charcoal);
  color: var(--stone);
  padding: var(--space-xl) 0 0;
  border-top: 1px solid rgba(200, 184, 154, 0.10);
}

/* Four-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(200, 184, 154, 0.10);
}

/* Brand column */
.footer-brand .footer-logo {
  max-height: 3.8rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(0.82);
}

.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
  max-width: 250px;
  margin-bottom: 1.8rem;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Increased to 44px for iOS/Android tap target compliance */
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 184, 154, 0.22);
  color: var(--stone);
  font-size: 0.82rem;
  transition: all var(--transition-base);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.footer-socials a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Column headings */
.footer-col h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-light);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(200, 184, 154, 0.12);
}

/* Footer links */
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.footer-col ul li a:hover { color: var(--cream-light); }

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--amber);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover { color: var(--cream-light); }

/* Bottom bar */
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--stone); }


/* -------------------------------------------------------------
   14. RESPONSIVE — CORE
   ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .main-banner .item { height: 82vh; }
}

@media (max-width: 992px) {
  :root { --space-xl: 5rem; --space-lg: 3rem; }

  .main-banner .item { height: 72vh; min-height: 480px; }
  .header-text { max-width: 90%; }

  .split,
  .split--wide-right { grid-template-columns: 1fr; gap: var(--space-md); }

  .left-image img { height: 300px; }
}

@media (max-width: 768px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

  .main-banner .item { height: 65vh; min-height: 420px; }
  .header-text { max-width: 100%; padding: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-heading h2 { font-size: 1.8rem; }

  .page-heading { padding: 80px 0; }
  .page-heading h3 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .footer-socials { gap: 0.6rem; }
  .btn { font-size: 0.68rem; padding: 0.8rem 1.8rem; }
  .owl-dots .owl-dot { width: 16px; }
  .owl-dots .owl-dot.active { width: 32px; }
}


/* =============================================================
   15. PROPERTY LISTING TEMPLATE
   Used by: chalets.html · socialEventsHalls.html · index.html
   ============================================================= */

/* Page intro block */
.listing-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.listing-intro .t-eyebrow { margin-bottom: 0.6rem; }

.listing-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.listing-intro p {
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Property entry row */
.property-entry {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 520px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

/* Alternating layout — image right, content left */
.property-entry--reverse {
  grid-template-columns: 45fr 55fr;
}

.property-entry--reverse .property-image { order: 2; }
.property-entry--reverse .property-content { order: 1; }

/* Image panel */
.property-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.8, 0.36, 1);
}

.property-entry:hover .property-image img { transform: scale(1.03); }

/* No-image fallback */
.property-image--empty {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.property-image--empty::after {
  content: 'Photo coming soon';
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Content panel */
.property-content {
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  background: var(--white);
}

.property-content .t-eyebrow { margin-bottom: 0; }

.property-content h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

/* Stat pills — capacity, bed, price */
.property-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.property-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
}

.property-stat i { color: var(--amber); font-size: 0.7rem; }

.property-stat--price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-primary);
  border-color: var(--border-light);
  background: var(--cream-light);
}

/* Description */
.property-desc {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 480px;
}

/* Feature list */
.property-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-features li {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  padding-left: 1.2rem;
  position: relative;
}

.property-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--amber);
}

/* Thin divider inside content panel */
.property-divider {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* CTA row */
.property-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

/* Quiet enquiry link */
.property-enquire {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: all var(--transition-base);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.property-enquire:hover {
  color: var(--amber);
  border-color: var(--amber);
}

/* Responsive — property listing */
@media (max-width: 1200px) {
  .property-content { padding: 3rem; }
}

@media (max-width: 992px) {
  .property-entry,
  .property-entry--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .property-entry--reverse .property-image { order: 1; }
  .property-entry--reverse .property-content { order: 2; }

  .property-image { min-height: 340px; }
  .property-content { padding: 2.5rem 2rem; gap: 1.2rem; }
  .listing-intro { padding: var(--space-md) 0; }
}

@media (max-width: 768px) {
  .property-image,
  .property-image img { min-height: 280px; height: 280px; }

  .property-content { padding: 2rem 1.5rem; gap: 1rem; }
  .property-content h3 { font-size: 1.7rem; }
  .property-desc { max-width: 100%; }
  .property-stats { gap: 0.5rem; }
  .property-stat { font-size: 0.68rem; padding: 0.3rem 0.7rem; }

  .property-cta { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .property-cta .btn { width: 100%; justify-content: center; }
  .property-enquire { width: 100%; justify-content: center; }

  .listing-intro h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .property-image,
  .property-image img { min-height: 240px; height: 240px; }

  .property-content { padding: 1.8rem 1.2rem; }
  .property-content h3 { font-size: 1.5rem; }
  .property-features li { font-size: 0.82rem; }
}


/* =============================================================
   16. PACKAGES / PROMOTIONS PAGE
   ============================================================= */

.packages-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.packages-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.packages-intro p {
  max-width: 540px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
}

.packages-section-title {
  padding: var(--space-md) 0 var(--space-sm);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
}

.packages-section-title h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin-top: 0.4rem;
}

/* Promo card grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base);
}

.promo-card:hover { box-shadow: var(--shadow-md); }

.promo-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.promo-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-card__eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.promo-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 1.6rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.promo-card__desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-secondary);
  flex: 1;
}

.promo-inclusions {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.promo-inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.promo-inclusion-item i {
  color: var(--amber);
  font-size: 0.72rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.promo-inclusion-item span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

.promo-inclusion-item strong {
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.promo-card__footer {
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid var(--border-light);
}

.promo-card__expiry {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.promo-download {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.15rem;
  transition: all var(--transition-base);
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.promo-download i { color: var(--amber); font-size: 0.75rem; }
.promo-download:hover { color: var(--amber); border-color: var(--amber); }

/* Activities grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: box-shadow var(--transition-base);
}

.activity-card:hover { box-shadow: var(--shadow-sm); }

.activity-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.activity-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.activity-card__pricing {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
}

.activity-card__note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 0.8rem;
}

.activity-card .property-enquire {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .promo-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .promo-card__footer { flex-direction: column; align-items: flex-start; }
}


/* =============================================================
   THABA LEGAE — FEATURE HIGHLIGHT SECTIONS
   Used for Accommodation, Conferences, Organized Events highlights
   Fully aligned with existing design tokens & utilities
   ============================================================= */

/* Main wrapper — replaces .chalets-feature */
.feature-highlight {
  background-color: var(--cream-light);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border-light);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.feature-highlight:hover {
  box-shadow: var(--shadow-md);
}

/* Inner container padding adjustment if needed */
.feature-highlight .container {
  max-width: 960px;
}

/* Heading block */
.feature-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.feature-heading h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-heading .lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* Two-column feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.feature-list li i {
  color: var(--amber);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 1.8rem;
  text-align: center;
}

/* CTA at bottom */
.feature-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.feature-cta .btn--filled {
  min-width: 240px;
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-highlight {
    padding: var(--space-md);
  }
  
  .feature-heading h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  
  .feature-list li {
    font-size: 0.98rem;
  }
}

@media (max-width: 768px) {
  .feature-highlight {
    padding: 2rem 1.5rem;
  }
  
  .feature-heading .lead {
    font-size: 1rem;
  }
  
  .feature-list li i {
    font-size: 1.4rem;
  }
}

/* Force correct icon color and font in feature sections */
.chalets-feature .feature-list i {
  color: var(--amber) !important;
  font-size: 1.5rem;
}

.chalets-feature .feature-list li,
.chalets-feature .feature-list span {
  font-family: var(--font-body) !important;
  font-weight: var(--fw-light);
  color: var(--charcoal-soft);
}

.chalets-feature .feature-list li {
  line-height: 1.6;
}


/* =============================================================
   17. ABOUT PAGE
   ============================================================= */

.about-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.about-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.about-intro p {
  max-width: 600px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Story split */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
}

.about-story__image {
  overflow: hidden;
  height: 520px;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about-story__content h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  line-height: 1.2;
}

.about-story__content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Awards */
.about-awards {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.about-awards h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-primary);
  margin-top: 0.4rem;
  margin-bottom: var(--space-md);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.award-tile {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  transition: background var(--transition-base);
}

.award-tile:hover { background: var(--cream); }

.award-tile__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.award-tile:hover .award-tile__logo {
  filter: grayscale(0%);
  opacity: 1;
}

.award-tile__name {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.award-tile__year {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Values */
.about-values {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.about-values h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-primary);
  margin-top: 0.4rem;
  margin-bottom: var(--space-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.value-item i { color: var(--amber); font-size: 1.1rem; }

.value-item h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

@media (max-width: 992px) {
  .about-story { grid-template-columns: 1fr; gap: var(--space-md); }
  .about-story__image { height: 360px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .award-tile { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .awards-grid { grid-template-columns: 1fr 1fr; }
}


/* =============================================================
   18. CONTACT PAGE
   ============================================================= */

.contact-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.contact-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.contact-intro p {
  max-width: 500px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.contact-detail-group h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-light);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.contact-detail-item i {
  color: var(--amber);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 14px;
}

.contact-detail-item a,
.contact-detail-item span {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  transition: color var(--transition-fast);
}

.contact-detail-item a:hover { color: var(--amber); }

.contact-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: all var(--transition-base);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.contact-socials a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Map */
.contact-map {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .contact-map { height: 360px; }
}

@media (max-width: 768px) {
  .contact-map { height: 300px; }
}


/* =============================================================
   19. BOOKING PAGE
   ============================================================= */

.booking-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.booking-intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.booking-intro p {
  max-width: 500px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.booking-frame-wrap {
  padding: var(--space-md) 0 var(--space-xl);
  background: var(--white);
}

.booking-frame-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: 1px solid var(--border-light);
  display: block;
}

@media (max-width: 768px) {
  .booking-frame-wrap iframe { min-height: 560px; }
}


/* =============================================================
   20. HOMEPAGE — EXTRACTED INLINE STYLES
   These were inline style="" attributes in index.html.
   Apply the matching class to each element and remove the
   style= attribute.
   ============================================================= */

/* Aerial view image treatment */
.img-tonal {
  filter: grayscale(10%) contrast(1.02);
}

.mb-xl { margin-bottom: var(--space-xl); }

.intro-lead {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.mt-md { margin-top: var(--space-md); }

@media (max-width: 768px) {
  .grid-2col { grid-template-columns: 1fr; }
}