/* ============================================
   RAUÐAFELL STAYS - MAIN STYLESHEET
   A quiet luxury mountain retreat website
   ============================================ */


/* ============================================
   ROOT VARIABLES & DESIGN TOKENS
   ============================================ 
   
   HOW TO CUSTOMIZE COLORS:
   - Change the color values below to update the entire site
   - Each color variable is used throughout the stylesheet
*/

:root {
  /* Brand Colors */
  --color-cream: #F5EDE4;
  --color-brown: #6B3F26;
  --color-dark: #2F2721;
  --color-gray: #D3CEC6;
  --color-green: #6E7B5A;
  
  /* Functional Colors */
  --color-background: var(--color-cream);
  --color-primary: var(--color-brown);
  --color-text: var(--color-dark);
  --color-accent: var(--color-gray);
  
  /* Typography - HOW TO CHANGE FONTS:
     Replace font names below with your preferred Google Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(47, 39, 33, 0.08);
  --shadow-md: 0 4px 16px rgba(47, 39, 33, 0.12);
  --shadow-lg: 0 8px 32px rgba(47, 39, 33, 0.16);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================
   
   HOW TO CHANGE FONTS:
   1. Update font imports in HTML <head>
   2. Change --font-heading and --font-body variables above
   3. Adjust font sizes below if needed
*/

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

.hero__slide, 

.card__image, .gallery-carousel__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: var(--color-bg-alt, #f0ece4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.7;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

a:hover {
  color: var(--color-green);
}

/* ============================================
   LAYOUT & CONTAINER UTILITIES
   ============================================ */

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

.container-wide {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-sm {
  padding: var(--spacing-lg) 0;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================
   
   The header contains the logo and main navigation.
   Mobile menu toggle is handled in main.js
*/

.header {
  background-color: rgba(245, 237, 228, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header.scrolled .nav__logo img {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 64px;
  width: 100%;
}

/* Logo in header */
.nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 0.25rem;
}

.nav__logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition-normal);
  object-fit: contain;
}

.nav__logo img:hover {
  opacity: 1;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  font-weight: 500;
  color: var(--color-dark);
  padding: 0 0.75rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
  background-color: var(--color-brown);
  color: white;
}

/* Mobile Menu Toggle Button */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: var(--spacing-xs);
}

/* ============================================
   DROPDOWN NAVIGATION (Stays Menu)
   ============================================ */

/* Desktop Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.25rem;
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform var(--transition-fast);
  vertical-align: middle;
}

.nav__item--dropdown.open .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: var(--spacing-xs) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
  margin-top: 0; /* Removed margin to close the gap */
}

.nav__item--dropdown.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__dropdown-item {
  display: block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--color-dark);
  font-weight: 500;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__dropdown-item:hover {
  background-color: var(--color-gray);
  color: var(--color-dark);
}

.nav__dropdown-item.active {
  background-color: var(--color-brown);
  color: white;
}

/* ============================================
   HERO SECTIONS
   ============================================
   
   Hero sections appear at the top of each page.
   HOW TO CHANGE BACKGROUND IMAGE:
   - Replace 'background-image: url()' in inline style or here
   - Use high-quality landscape photos (1920x1080 recommended)
*/

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(47, 39, 33, 0.3), rgba(47, 39, 33, 0.5));
  z-index: 1;
}

/* Slideshow Hero Styles */
.hero--slideshow {
  background: #000;
}

.hero__slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(47, 39, 33, 0.3), rgba(47, 39, 33, 0.5));
  z-index: 1;
}

.hero--slideshow .hero__content {
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: var(--spacing-md);
}

.hero__title {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Secondary Hero (smaller for interior pages) */
.hero--secondary {
  min-height: 50vh;
}

/* Secondary Hero with slideshow - taller to show more of the images */
.hero--secondary.hero--slideshow {
  min-height: 65vh;
}

/* ============================================
   BUTTONS
   ============================================
   
   HOW TO UPDATE BUTTON STYLES:
   - Modify colors, padding, and border-radius below
   - Three button variants: primary, secondary, outline
*/

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

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

.btn--secondary {
  background-color: white;
  color: var(--color-brown);
  border-color: white;
}

.btn--secondary:hover {
  background-color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn--outline:hover {
  background-color: white;
  color: var(--color-brown);
}

/* ============================================
   CARDS
   ============================================
   
   Cards are used throughout the site for content blocks.
   HOW TO CUSTOMIZE:
   - Adjust padding, border-radius, and shadow below
*/

.card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.card__text {
  color: var(--color-dark);
  opacity: 0.85;
  line-height: 1.6;
}

.card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.card--room {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--room .card__text {
  flex: 0 0 auto;
  min-height: 5rem;
}

.card--room ul {
  flex-grow: 1;
}

.card--room .btn {
  margin-top: auto;
}

/* Card Grid Layouts */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  align-items: stretch;
}

.card-grid > * {
  height: 100%;
}

.card-grid--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .card-grid--2col {
        grid-template-columns: 1fr;
    }
}

.card-grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.card-grid--3col .highlight-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 992px) {
  .card-grid--3col {
    grid-template-columns: 1fr;
  }
}

/* Attraction Cards */
.attraction-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-grid .attraction-card {
  align-self: stretch;
}

.attraction-card__image {
  width: 100%;
  height: 160px;
  background-color: #e8e2da;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.attraction-card .card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.attraction-card .card__text {
  margin-bottom: 0.75rem;
}

.attraction-card__bottom {
  margin-top: auto;
}

.attraction-card__distance {
  font-size: 0.875rem;
  color: var(--color-brown);
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 1;
}

/* ============================================
   SPLIT SECTION (Two-column layout)
   ============================================ */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: start;
}

/* Highlight Box - Used for 3-column property overview */
.highlight-box {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-box h3 {
  color: var(--color-brown);
  margin-bottom: var(--spacing-sm);
}

.highlight-box p {
  margin-bottom: 0.5rem;
  min-height: 6rem;
}

.highlight-box ul {
  flex-grow: 1;
  min-height: 7rem;
}

.highlight-box .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Ensure grid items stretch equally */
.card-grid--3col > .highlight-box {
  align-self: stretch;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature {
  text-align: center;
  padding: var(--spacing-sm);
}

.feature__icon {
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: var(--spacing-xs);
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xs);
}

.feature__text {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.8;
}

/* ============================================
   AMENITIES GRID
   ============================================ */

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
  list-style: none;
  margin: var(--spacing-md) 0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SHARED SPACES GALLERY
   ============================================ */

.shared-spaces {
  display: flex;
  gap: var(--spacing-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--spacing-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--color-gray) transparent;
}

@media (min-width: 769px) {
  .shared-spaces {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    justify-items: center;
  }
  .shared-spaces .shared-space-card:nth-child(4),
  .shared-spaces .shared-space-card:nth-child(5) {
    grid-column: auto;
  }
}

.shared-spaces::-webkit-scrollbar {
  height: 6px;
}

.shared-spaces::-webkit-scrollbar-track {
  background: transparent;
}

.shared-spaces::-webkit-scrollbar-thumb {
  background-color: var(--color-gray);
  border-radius: 3px;
}

.shared-space-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 769px) {
  .shared-space-card {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

.shared-space-card__gallery img {
  cursor: pointer;
}

.shared-space-card__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-gray);
}

.shared-space-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.shared-space-card__gallery img.active {
  opacity: 1;
  z-index: 1;
}

.shared-space-card__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 2;
}

.shared-space-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.shared-space-card__dot.active {
  background-color: white;
}

.shared-space-card__body {
  padding: 1.25rem 1.5rem;
}

.shared-space-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.shared-space-card__text {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .shared-space-card {
    flex: 0 0 280px;
  }
}

/* ============================================
   IMAGE GALLERY
   ============================================
   
   HOW TO ADD IMAGES:
   - Add <img> tags in the HTML gallery section
   - Use high-resolution images (minimum 1000px wide)
*/

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.testimonial {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
}

.testimonial__text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================
   
   HOW TO UPDATE PRICING:
   - Edit the text content in the HTML
*/

/* ============================================
   FORMS
   ============================================
   
   Contact form and booking form styles.
   HOW TO CONNECT TO BACKEND:
   - Add form action and method attributes in HTML
   - Or use JavaScript to handle form submission
*/

.form {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: var(--spacing-md) auto;
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background-color: var(--color-cream);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-brown);
  box-shadow: 0 0 0 3px rgba(107, 63, 38, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__error {
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
  display: none;
}

.form__input.error,
.form__textarea.error {
  border-color: #c0392b;
}

.form__input.error + .form__error,
.form__textarea.error + .form__error {
  display: block;
}

.form__submit {
  width: 100%;
  margin-top: var(--spacing-sm);
}

/* ============================================
   LOCATION / MAP SECTION
   ============================================
   
   HOW TO ADD GOOGLE MAP:
   - Get embed code from Google Maps
   - Replace the placeholder div with iframe in HTML
*/

.map-container {
  width: 100%;
  height: 450px;
  background-color: var(--color-gray);
  border-radius: var(--radius-lg);
  margin: var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-style: italic;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ============================================
   FOOTER
   ============================================
   
   HOW TO UPDATE CONTACT INFO:
   - Edit email, phone, social links in HTML
*/

.footer {
  background-color: var(--color-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer__section h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.footer__section p,
.footer__section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer__section a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================
   
   Mobile-first approach with breakpoints:
   - Mobile: default (below 768px)
   - Tablet: 768px and up
   - Desktop: 1024px and up
   - Large Desktop: 1440px and up
*/

/* Tablet (768px and up) */
@media (max-width: 768px) {
  
  /* Navigation - Mobile Menu (full-screen overlay) */
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px var(--spacing-lg) var(--spacing-lg);
    gap: 0;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }
  
  .nav__menu.active {
    display: flex;
  }
  
  .nav__toggle {
    display: block;
    z-index: 1000;
    position: relative;
  }
  
  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--color-gray);
    list-style: none;
  }
  
  .nav__link {
    display: block;
    width: 100%;
    height: auto;
    padding: var(--spacing-md) 0;
    text-align: left;
    font-size: 1.125rem;
    position: static;
    background-color: transparent;
    color: var(--color-dark);
  }

  .nav__link:hover,
  .nav__link.active {
    background-color: transparent;
    color: var(--color-brown);
  }
  
  /* Mobile Accordion for Stays dropdown */
  .nav__item--dropdown {
    position: static;
  }
  
  .nav__dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: var(--spacing-md) 0;
    font-size: 1.125rem;
    background-color: transparent;
    color: var(--color-dark);
  }

  .nav__dropdown-toggle:hover,
  .nav__item--dropdown.open .nav__dropdown-toggle {
    background-color: transparent;
    color: var(--color-brown);
  }

  .nav__dropdown-toggle::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    margin-left: auto;
  }
  
  .nav__dropdown {
    all: unset;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav__item--dropdown.open .nav__dropdown {
    max-height: 500px;
  }
  
  .nav__dropdown-item {
    display: block;
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
    white-space: normal;
  }
  
  .nav__dropdown-item:hover,
  .nav__dropdown-item.active {
    background-color: transparent;
    color: var(--color-brown);
  }
  
  /* Hero */
  .hero {
    min-height: 70vh;
  }
  
  .hero--secondary {
    min-height: 40vh;
  }
  
  
  
  
  
  /* Cards */
  .card-grid,
  .card-grid--2col,
  .card-grid--3col,
  
  
  /* Split Section */
  .split {
    grid-template-columns: 1fr;
  }
  
  /* Gallery */
  .gallery {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  /* Spacing adjustments */
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .section-sm {
    padding: var(--spacing-md) 0;
  }
  
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
}

/* Mobile (below 480px) */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 var(--spacing-sm);
  }
  
  
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .amenities {
    grid-template-columns: 1fr;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .card-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
  
  
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  :root {
    font-size: 18px;
  }
}

/* ============================================
   APARTMENT CARDS
   ============================================ */

.apartment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.apartment-card .card__text {
  flex: 0 0 auto;
}

.apartment-card__bottom {
  margin-top: auto;
}

.apartment-card .btn {
  margin-top: 1rem;
}

.apartment-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-brown);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.apartment-card__badge--soon {
  background-color: var(--color-gray);
  color: var(--color-dark);
}

.apartment-card__note {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.75;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-gray);
}

.apartment-card--coming-soon {
  opacity: 0.85;
}

.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Active Navigation Link */
.nav__link--active {
  color: var(--color-brown);
  font-weight: 600;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-brown);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .btn,
  .nav__toggle {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
}

/* ============================================
   APARTMENT DETAIL PAGE - CAROUSEL STYLE
   ============================================ */

.property-page {
  background-color: var(--color-cream);
}

.property-back {
  display: inline-block;
  color: var(--color-brown);
  font-weight: 500;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.property-back:hover {
  text-decoration: underline;
}

.gallery-carousel {
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.gallery-carousel__main {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-carousel__main {
    height: 300px;
  }
}

.gallery-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 10;
}

.gallery-carousel__nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-carousel__nav--prev {
  left: 16px;
}

.gallery-carousel__nav--next {
  right: 16px;
}

.gallery-carousel__counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  margin-bottom: var(--spacing-lg);
}

.gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-brown);
  border-radius: 3px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-brown);
  box-shadow: 0 2px 8px rgba(107, 63, 38, 0.25);
}

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

.property-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--spacing-xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .property-layout {
    grid-template-columns: 1fr;
  }
}

.property-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.property-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.property-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.property-rating {
  background: var(--color-brown);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.property-location {
  color: #666;
  font-size: 0.9rem;
}

.property-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: var(--spacing-md);
}

@media (max-width: 500px) {
  .property-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #555;
}

.spec-icon {
  font-size: 1.25rem;
  color: var(--color-brown);
}

.spec-value {
  font-weight: 600;
  color: var(--color-dark);
}

.property-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: var(--spacing-md);
}

.property-section {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid #eee;
}

.property-section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.amenities-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-tag {
  background: var(--color-cream);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.room-variant-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
  flex-wrap: wrap;
}

.variant-label {
  font-size: 0.875rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin-right: 0.25rem;
}

.variant-pill {
  background: var(--color-cream);
  border: 2px solid transparent;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 2.5rem;
  text-align: center;
}

.variant-pill:hover {
  border-color: var(--color-brown);
}

.variant-pill--active {
  background: var(--color-brown);
  color: white;
  border-color: var(--color-brown);
}

.property-subtitle {
  font-size: 1rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin: 0.25rem 0 0;
  font-style: normal;
}

.rules-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 500px) {
  .rules-compact {
    grid-template-columns: 1fr;
  }
}

.rule-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  color: #555;
}

.rule-compact strong {
  color: var(--color-dark);
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
}

@media (max-width: 1024px) {
  .booking-card {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

.booking-price {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.booking-price__amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}

.booking-price__period {
  color: #666;
  font-size: 1rem;
}

.date-picker-container {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.date-picker-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
}

.date-picker-field {
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  overflow: hidden;
}

.date-picker-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--color-brown);
  margin-bottom: 0.25rem;
}

.date-picker-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.date-picker-field input:focus {
  outline: none;
}

.date-picker-field input::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  margin-left: -8px;
}

.guest-picker {
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
}

.guest-picker label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--color-brown);
  margin-bottom: 0.25rem;
  text-align: center;
}

.guest-picker select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
  cursor: pointer;
  appearance: none;
  text-align-last: center;
  padding: 0;
}

.guest-picker select:focus {
  outline: none;
}

.btn-reserve {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-brown) 0%, #8B5A3C 100%);
  border: none;
  color: white;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 63, 38, 0.35);
}

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

.price-summary {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid #eee;
  display: none;
}

.price-summary.visible {
  display: block;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.price-row--total {
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-xs);
  border-top: 2px solid var(--color-brown);
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: var(--spacing-sm);
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.97);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.lightbox.active {
  display: flex;
}

body.lightbox-open .header {
  z-index: auto !important;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox .lightbox__image,
img.lightbox__image {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 85vw !important;
  max-height: 80vh !important;
  max-height: 80dvh !important;
  object-fit: contain !important;
  border-radius: 4px;
  border: none;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  outline: none;
  padding: 0;
  background: transparent;
  opacity: 1 !important;
  filter: none !important;
  position: relative;
  z-index: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
  z-index: 10;
  pointer-events: auto !important;
  touch-action: manipulation;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .lightbox .lightbox__image,
  img.lightbox__image {
    max-width: 95vw !important;
    max-height: 75vh !important;
    max-height: 75dvh !important;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox__counter {
    bottom: 16px;
  }
}

/* ============================================
   SIMPLE LIGHTBOX (for overview pages)
   ============================================ */

.slb {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.slb--active {
  display: block;
}

.slb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  z-index: 1;
}

.slb__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slb__image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.slb__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s;
}

.slb__close:hover {
  transform: scale(1.1);
}

.slb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s, background-color 0.2s;
}

.slb__nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slb__nav--prev {
  left: 20px;
}

.slb__nav--next {
  right: 20px;
}

.slb__counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  margin: 0 auto;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
}

.price-period {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.7;
}

.price-breakdown {
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  font-size: 0.95rem;
}

.price-row--total {
  border-top: 1px solid var(--color-gray);
  margin-top: var(--spacing-xs);
  padding-top: var(--spacing-sm);
  font-weight: 600;
}

.btn--full {
  width: 100%;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-dark);
  opacity: 0.7;
  margin-top: var(--spacing-sm);
}

/* ============================================
   HOUSE RULES
   ============================================ */

/* ============================================
   BOOKING MODAL
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
}

.modal--active {
  display: block;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark);
  opacity: 0.6;
  line-height: 1;
}

.modal__close:hover {
  opacity: 1;
}

.modal__step h2 {
  margin-bottom: var(--spacing-md);
}

.booking-summary {
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.booking-summary__apartment {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.booking-summary__apartment img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.booking-summary__apartment h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.booking-summary__apartment p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

.booking-summary__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-gray);
}

.booking-form h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
}

.nearby-item {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-sm);
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
}

.nearby-item strong {
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.nearby-item span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ============================================
   FEATURED PROPERTY LAYOUT
   ============================================ */

.featured-property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.featured-property__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.featured-property__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.featured-property__label {
  display: inline-block;
  background-color: var(--color-brown);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.featured-property__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.featured-property__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.85;
  margin-bottom: var(--spacing-md);
}

.featured-property__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.highlight-icon {
  font-size: 1.25rem;
}

.featured-property__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .featured-property {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .featured-property__image img {
    height: 280px;
  }
  
  .featured-property__title {
    font-size: 2rem;
  }
  
  .featured-property__highlights {
    gap: var(--spacing-sm);
  }
}

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.coming-soon__label {
  display: inline-block;
  background-color: var(--color-green);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.coming-soon__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.coming-soon__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.85;
  margin-bottom: var(--spacing-sm);
}

.coming-soon__cta {
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--spacing-md);
}

.coming-soon__visual {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.coming-soon__placeholder {
  width: 160px;
  height: 160px;
  border: 2px dashed var(--color-gray);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  background-color: rgba(211, 206, 198, 0.2);
}

.coming-soon__placeholder span {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.coming-soon__placeholder p {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .coming-soon-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .coming-soon__visual {
    order: -1;
  }
  
  .coming-soon__placeholder {
    width: 120px;
    height: 120px;
  }
}

img.img-offline {
  opacity: 0.3;
  filter: grayscale(100%);
}

.booking-card.coming-soon input,
.booking-card.coming-soon select,
.booking-card.coming-soon .date-picker-field,
.booking-card.coming-soon .guest-picker {
  pointer-events: none;
  opacity: 0.5;
}

.booking-card.coming-soon .btn-reserve {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--color-gray);
  color: var(--color-dark);
  border-color: var(--color-gray);
}

.booking-card.coming-soon .coming-soon-note {
  font-size: 0.85rem;
  color: var(--color-brown);
  opacity: 0.8;
  text-align: center;
  margin-top: var(--spacing-sm);
}

.godo-widget {
  margin-top: var(--spacing-md);
  min-height: 0;
  width: 100%;
  overflow: hidden;
  transition: min-height 0.3s ease;
}

.godo-widget iframe {
  width: 100%;
  border: none;
  max-width: 100%;
}

.godo-widget noscript p {
  padding: var(--spacing-sm);
  background: var(--color-cream);
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-dark);
}
