/*
 * Modern Stylesheet for Lotus Home (2026)
 *
 * Updated with modern design trends:
 * - Fluid typography using clamp()
 * - Subtle micro-interactions and animations
 * - WCAG 2.1 AA accessibility compliance
 * - Mobile-first responsive design
 * - Performance optimized
 * - Warm, lifestyle-focused aesthetic
 */

/* CSS custom properties for theming */
:root {
  --bg-color: #FFFDF7;
  --primary-gold: #B49A63;
  --dark-color: #2E2C2A;
  --light-color: #E4E9E1;
  --warm-white: #F7F5F0;
  --soft-sage: #B5C9BE;
  --warm-gray: #9B9892;
  --text-color: #2E2C2A;
  --max-width: 1200px;
  --transition-base: 200ms ease;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineHover {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive Typography */
h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Header with navigation */
header {
  background-color: var(--dark-color);
  color: var(--primary-gold);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
}

.header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.logo-container:hover {
  transform: scale(1.02);
}

.site-logo {
  height: 70px;
  width: auto;
  display: block;
}

/* Navigation Links */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color var(--transition-base);
  focus-visible: outline;
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  color: var(--warm-white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Tablet navigation: show horizontal nav with adjusted spacing */
@media (max-width: 768px) and (min-width: 769px) {
  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }
}

.nav-links a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 200ms ease;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--warm-white);
}

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

.nav-links a:focus-visible {
  outline: 2px solid var(--warm-white);
  outline-offset: 2px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-switcher button {
  background: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  color: var(--dark-color);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  outline: none;
}

.lang-switcher button:hover,
.lang-switcher button.active {
  background-color: var(--dark-color);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lang-switcher button:focus-visible {
  outline: 2px solid var(--warm-white);
  outline-offset: 2px;
}

/* Modern Hero Section with Video Support */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--warm-white);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Logo text fallback shown when image file is missing */
.logo-text-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-charcoal, #2e2c2a);
  letter-spacing: 0.01em;
}
.logo-text-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--warm-gold, #b49a63);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(46, 44, 42, 0.3) 0%,
    rgba(46, 44, 42, 0.55) 50%,
    rgba(46, 44, 42, 0.75) 100%
  );
  z-index: 1;
}

/* Mobile play button for video hero */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(180, 154, 99, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--dark-color);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font-size: 0;
}

.video-play-button:hover {
  background-color: var(--primary-gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.video-play-button:focus {
  outline: 2px solid var(--warm-white);
  outline-offset: 2px;
}

.video-play-button svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .video-play-button {
    transition: none;
  }
  .video-play-button:hover {
    transform: translate(-50%, -50%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  color: var(--warm-white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-gold);
  color: var(--dark-color);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  border: 2px solid var(--primary-gold);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(180, 154, 99, 0.3);
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 154, 99, 0.5);
}

.cta-button:focus-visible {
  outline: 2px solid var(--warm-white);
  outline-offset: 2px;
}

/* Video play button for mobile (optional) */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 1rem 2rem;
  background: rgba(180, 154, 99, 0.9);
  color: #2E2C2A;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
  background: rgba(180, 154, 99, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play-button:focus-visible {
  outline: 2px solid var(--warm-white);
  outline-offset: 2px;
}

/* Tablet: Adjust hero section */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: 75vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}

/* Mobile: Disable video autoplay for performance */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-video {
    /* On mobile, video may not autoplay due to battery/data concerns */
    /* Will pause automatically via JavaScript */
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }
  
  .hero-content,
  .hero-content h1,
  .hero-content p,
  .cta-button {
    animation: none !important;
  }
}

/* General Sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeInScale 0.6s ease-out both;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .section {
    padding: 60px 20px;
    margin: 0 auto;
  }
}

@media (min-width: 1025px) {
  .section {
    padding: 80px 20px;
    margin: 0 auto;
  }
}

.section h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.section h3 {
  margin: 2rem 0 1rem;
  color: var(--dark-color);
}

.section p {
  color: #555;
  line-height: 1.8;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: var(--light-color);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(46, 44, 42, 0.9) 100%);
  color: var(--warm-white);
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery figure:hover figcaption {
  opacity: 1;
}

/* Forms */
form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
  animation: slideInRight 0.5s ease-out both;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 200ms ease;
  background-color: #fafaf8;
  min-height: 44px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(180, 154, 99, 0.1);
}

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

button.submit {
  background-color: var(--primary-gold);
  color: var(--dark-color);
  padding: 0.9rem 2rem;
  border: 2px solid var(--primary-gold);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(180, 154, 99, 0.2);
  min-height: 44px;
  min-width: 44px;
}

button.submit:hover {
  background-color: var(--dark-color);
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 154, 99, 0.3);
}

button.submit:focus-visible {
  outline: 2px solid var(--dark-color);
  outline-offset: 2px;
}

/* Status Messages */
#thankYouMessage {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #e6f4ea;
  color: #1b5e20;
  border-left: 4px solid #34a853;
  border-radius: 4px;
  display: none;
  animation: fadeInScale 0.4s ease-out;
}

#thankYouMessage.show {
  display: block;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 4rem;
  border-top: 3px solid var(--primary-gold);
}

.footer a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer a:hover {
  color: var(--warm-white);
}

.footer-docs {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Differentiators Grid */
.differentiators {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .differentiators {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .differentiators {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

.differentiator {
  background: var(--warm-white);
  border-left: 4px solid var(--primary-gold);
  padding: 1.75rem;
  border-radius: 4px;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.differentiator:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.differentiator h3 {
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.differentiator p {
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: #555;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

.service-card {
  background: #FAFAFA;
  border-radius: 8px;
  padding: 2rem;
  transition: all 200ms ease;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 3px solid transparent;
}

.service-card:hover {
  border-top-color: var(--primary-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-card h3 {
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.service-card p {
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.25rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #555;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

@media (prefers-reduced-motion: reduce) {
  .differentiator:hover,
  .service-card:hover {
    transform: none;
  }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 15px;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dark-color);
    padding: 1rem 15px;
    gap: 0.5rem;
    z-index: 99;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    min-height: 70vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .lang-switcher {
    order: -1;
    gap: 0.3rem;
  }

  .lang-switcher button {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop focus states */
@media (hover: hover) {
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
  }
}

/* =============================================
   ABOUT SECTION — TEXT + PHOTO GRID
   ============================================= */

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

@media (min-width: 769px) and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1025px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
  }
}

.about-text-column h2 { margin-bottom: 1.25rem; }
.about-text-column p { color: var(--warm-gray); line-height: 1.8; margin-bottom: 1.25rem; }

.about-features {
  border-left: 4px solid var(--primary-gold);
  background: var(--warm-white);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item { display: flex; flex-direction: column; line-height: 1.5; }
.feature-item strong { color: var(--primary-gold); font-size: 0.95rem; font-weight: 700; }
.feature-item span { color: var(--warm-gray); font-size: 0.9rem; }

.about-photo-column { order: -1; }
@media (min-width: 900px) { .about-photo-column { order: 0; } }

.about-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  background: var(--light-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin: 0;
}
@media (max-width: 899px) { .about-hero-photo { aspect-ratio: 16 / 9; } }

.about-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s ease;
}
.about-hero-photo:hover img { transform: scale(1.04); }

.about-hero-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(46, 44, 42, 0.82) 100%);
  color: var(--warm-white);
  padding: 1.5rem 1.25rem 1.25rem;
  font-size: 0.9rem; line-height: 1.6;
}

/* =============================================
   ROOM OPTIONS SECTION
   ============================================= */

.rooms-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

@media (min-width: 1025px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.room-card {
  background: var(--warm-white);
  border: 1px solid #e5e0d8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.room-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
  transform: translateY(-4px);
}

.room-card--individual { border-top: 4px solid var(--primary-gold); }
.room-card--shared { border-top: 4px solid var(--soft-sage); }

/* Photo at top of room card */
.room-card__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.45s ease;
}

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

/* Badge overlaid on photo */
.room-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background-color: rgba(245, 237, 216, 0.95);
  color: #7a6030;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.room-card__badge--shared {
  background-color: rgba(222, 238, 230, 0.95);
  color: #3a6650;
}

/* Content below photo */
.room-card__content { padding: 1.75rem; }

.room-card__content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.room-card__content p {
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.room-card__content ul {
  padding-left: 1.25rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.room-card__content ul li { margin-bottom: 0.35rem; }

/* Privacy Feature Callout */
.privacy-callout {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
  border: 1px solid #e8d8a0;
  border-left: 4px solid var(--primary-gold);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.privacy-callout__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.privacy-callout strong {
  display: block;
  color: var(--dark-color);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.privacy-callout p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

.rooms-note {
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.rooms-note a {
  color: var(--primary-gold);
  font-weight: 600;
  text-decoration: none;
}

.rooms-note a:hover {
  text-decoration: underline;
}

/* =============================================
   SERVICE CARDS WITH PHOTOS
   ============================================= */

.service-card--has-photo {
  padding: 0;
  overflow: hidden;
}

.service-card__photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.45s ease;
  display: block;
}

.service-card--has-photo:hover .service-card__photo img { transform: scale(1.05); }

.service-card--has-photo h3,
.service-card--has-photo p,
.service-card--has-photo ul {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-card--has-photo h3 { padding-top: 1.5rem; }
.service-card--has-photo ul { padding-bottom: 1.5rem; }

/* =============================================
   PHOTO TOUR GALLERY
   ============================================= */

.photo-tour__intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.photo-tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) and (max-width: 768px) {
  .photo-tour-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .photo-tour-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .photo-tour-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .photo-tour__item--featured {
    grid-row: 1 / 3;
  }
}

.photo-tour__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
  background: var(--light-color);
  aspect-ratio: 4 / 3;
}

.photo-tour__item--featured {
  aspect-ratio: 3 / 4;
}

@media (max-width: 1024px) {
  .photo-tour__item--featured { aspect-ratio: 16 / 9; }
}

.photo-tour__item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.45s ease;
  display: block;
}

.photo-tour__item:hover img { transform: scale(1.06); }

.photo-tour__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(46, 44, 42, 0.80) 100%);
  color: var(--warm-white);
  padding: 2rem 1rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-tour__item:hover figcaption,
.photo-tour__item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PHASE 2: TRUST-BUILDING IMPROVEMENTS ===== */

/* Section intro text */
.section-intro {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: #777;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(180, 154, 99, 0.05) 0%, rgba(181, 201, 190, 0.05) 100%);
  padding: 3rem 20px;
  border-radius: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

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

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  border-top: 4px solid var(--primary-gold);
  display: flex;
  flex-direction: column;
  min-height: 44px;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.testimonial-header {
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-quote {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin: 1.5rem 0;
  border-left: 3px solid var(--primary-gold);
  padding-left: 1.25rem;
  flex-grow: 1;
}

.testimonial-benefit {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-benefit strong {
  font-weight: 600;
}

/* Staff Section */
.staff-section {
  background: linear-gradient(135deg, rgba(181, 201, 190, 0.08) 0%, rgba(180, 154, 99, 0.05) 100%);
  padding: 3rem 20px;
  border-radius: 8px;
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 769px) {
  .staff-grid {
    /* Single card: don't stretch to full width — keep it contained */
    grid-template-columns: repeat(auto-fit, minmax(280px, 480px));
    justify-content: center;
  }
}

.staff-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.staff-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.staff-photo {
  width: 100%;
  height: 280px;
  background: var(--light-color);
  overflow: hidden;
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}

.staff-card:hover .staff-photo img {
  transform: scale(1.05);
}

.staff-content {
  padding: 2rem;
}

.staff-content h3 {
  margin: 0 0 0.5rem;
  color: var(--primary-gold);
}

.staff-title {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0.5rem 0 0.75rem;
  font-size: 0.95rem;
}

.staff-credentials {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  font-style: italic;
}

.staff-bio {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

/* Comparison Section */
.comparison-section {
  background: linear-gradient(135deg, rgba(228, 233, 225, 0.3) 0%, rgba(181, 201, 190, 0.2) 100%);
  padding: 3rem 20px;
  border-radius: 8px;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table thead {
  background: var(--dark-color);
  color: var(--primary-gold);
}

.comparison-table th {
  padding: 1.5rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1.25rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background-color: rgba(180, 154, 99, 0.05);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--dark-color);
  background: rgba(228, 233, 225, 0.3);
  min-width: 150px;
}

.comparison-table td.lotus-advantage {
  background: rgba(180, 154, 99, 0.1);
  color: var(--primary-gold);
  font-weight: 600;
}

.comparison-table th.lotus-advantage {
  background: var(--primary-gold);
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    font-size: 0.9rem;
    min-width: 600px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .comparison-table {
    font-size: 0.95rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.25rem;
  }
}

/* Quick Contact Buttons */
.quick-contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.quick-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), rgba(180, 154, 99, 0.8));
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(180, 154, 99, 0.3);
  border: 2px solid transparent;
  font-weight: 600;
  min-height: 44px;
}

.quick-contact-btn:hover {
  background: linear-gradient(135deg, rgba(180, 154, 99, 0.9), var(--primary-gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(180, 154, 99, 0.4);
}

.quick-contact-btn:focus-visible {
  outline: 2px solid var(--dark-color);
  outline-offset: 2px;
}

.btn-icon {
  font-size: 1.75rem;
}

.btn-text {
  font-size: 1.1rem;
}

.btn-number,
.btn-subtext {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .quick-contact-buttons {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .quick-contact-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Form Divider */
.form-divider {
  text-align: center;
  margin: 2rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #777;
  font-style: italic;
  font-size: 0.95rem;
}

/* Form Validation Styles */
.form-error {
  display: none;
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  animation: slideInRight 0.3s ease-out;
}

.form-error.show {
  display: block;
}

input.error,
select.error,
textarea.error {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.02);
}

input.success,
select.success,
textarea.success {
  border-color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.02);
}

.form-helper {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.4rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.submit-secondary {
  background-color: transparent;
  color: #888;
  padding: 0.9rem 2rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.submit-secondary:hover {
  background-color: #f5f5f5;
  border-color: #999;
  color: #555;
}

.submit-secondary:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Contact Status */
.contact-status {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 4px;
  text-align: center;
  display: none;
  font-weight: 500;
}

.contact-status.success {
  display: block;
  background-color: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #81c784;
  animation: fadeInScale 0.4s ease-out;
}

.contact-status.error {
  display: block;
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef5350;
  animation: fadeInScale 0.4s ease-out;
}

/* Licensing Section */
.licensing-section {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 2.5rem 20px;
  text-align: center;
  border-top: 3px solid var(--primary-gold);
}

.licensing-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.licensing-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.licensing-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.licensing-details p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light-color);
}

.licensing-details strong {
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .licensing-details {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .licensing-details p {
    text-align: center;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .testimonials-section,
  .staff-section,
  .comparison-section {
    padding: 2rem 15px;
  }

  .quick-contact-btn {
    padding: 1.25rem;
  }

  .btn-icon {
    font-size: 1.5rem;
  }

  .btn-text {
    font-size: 1rem;
  }
}
/* ============================================================================
   PHASE 3: SCROLL ANIMATIONS & MICRO-INTERACTIONS
   ============================================================================ */

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  --delay: 0ms;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay);
}

/* Respect prefers-reduced-motion for scroll animations */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* ============================================================================
   FAQ SECTION STYLES
   ============================================================================ */

.faq-section {
  background-color: var(--bg-color);
  padding: 4rem 20px;
}

.faq-section h2 {
  margin-bottom: 1rem;
}

.faq-section .section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--warm-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-item {
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-gold);
}

/* FAQ Question (Button) */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--warm-white);
}

.faq-question:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: -2px;
}

.faq-question:active {
  background-color: #f5f3f0;
}

.faq-question span:first-child {
  flex: 1;
}

/* FAQ Toggle Icon */
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}

/* FAQ Answer Container */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fafaf8;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

/* FAQ Answer Content */
.faq-answer-content {
  padding: 1.5rem;
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* Mobile FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 15px;
  }

  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 1.25rem;
    font-size: 0.95rem;
  }
}

/* ============================================================================
   CARD MICRO-INTERACTIONS
   ============================================================================ */

/* Differentiator Cards (from "Why Lotus Home" section) */
.differentiator-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Room Cards */
.room-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Service Cards */
.service-card {
  border-left: 4px solid transparent;
  transition: border-left-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-left-color: var(--primary-gold);
  transform: translateX(2px);
}

/* Testimonial Cards */
.testimonial-card {
  border: 1px solid #e0ddd8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(180, 154, 99, 0.1);
}

/* Staff Cards - Photo Zoom */
.staff-card {
  transition: transform 0.3s ease;
}

.staff-photo {
  overflow: hidden;
  border-radius: 4px;
}

.staff-photo img {
  transition: transform 0.4s ease;
  display: block;
}

.staff-card:hover .staff-photo img {
  transform: scale(1.05);
}

/* ============================================================================
   BUTTON & INTERACTIVE ELEMENTS MICRO-INTERACTIONS
   ============================================================================ */

/* CTA Button - Ripple/Scale Effect */
.cta-button {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(180, 154, 99, 0.3);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(180, 154, 99, 0.2);
}

/* Navigation Links - Underline Slide-in */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

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

/* Language Switcher - Active State Transition */
.lang-switcher button {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.lang-switcher button:hover {
  transform: scale(1.05);
}

.lang-switcher button.active {
  background-color: var(--primary-gold);
  color: var(--dark-color);
}

/* Form Fields - Focus Ring & Label Float */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 154, 99, 0.1), 0 0 0 4px var(--primary-gold);
  transition: box-shadow 0.2s ease;
}

input,
textarea,
select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================================ */

/* Apply will-change only during animation */
.animate-on-scroll.is-visible {
  will-change: auto;
}

.animate-on-scroll:not(.is-visible) {
  will-change: transform, opacity;
}

/* GPU acceleration for smooth transforms */
.staff-photo img,
.room-card,
.differentiator-card,
.service-card,
.faq-question,
.cta-button {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

/* ============================================================================
   ADDITIONAL ACCESSIBILITY ENHANCEMENTS
   ============================================================================ */

/* High contrast mode support */
@media (prefers-contrast: more) {
  .faq-item {
    border: 2px solid var(--dark-color);
  }

  .faq-question {
    font-weight: 700;
  }
}

/* ============================================================================
   PHASE 3: ENHANCED VISUAL POLISH & RESPONSIVE REFINEMENTS
   ============================================================================ */

/* Consistent link styling */
a {
  transition: color 200ms ease;
}

a:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Improve transition consistency across all interactive elements */
button,
a,
input,
select,
textarea {
  transition: all 200ms ease;
}

/* Reduced motion: disable will-change and micro-interactions */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    will-change: auto !important;
  }

  button,
  a,
  input,
  select,
  textarea,
  .room-card,
  .differentiator-card,
  .service-card,
  .testimonial-card,
  .staff-card,
  .cta-button,
  .nav-links a::after,
  .faq-question,
  .faq-toggle,
  .staff-photo img {
    transition: none !important;
    animation: none !important;
  }
}

/* ── Outdoor Patio Feature Section ─────────────────────────────────────── */
.patio-feature-section {
  background: var(--light-color);
  padding: 0;
  overflow: hidden;
}

.patio-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.patio-feature-photo {
  position: relative;
  overflow: hidden;
}

.patio-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.patio-feature-photo:hover img {
  transform: scale(1.03);
}

.patio-feature-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.patio-feature-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(180, 154, 99, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  width: fit-content;
}

.patio-feature-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: var(--dark-color);
  margin: 0;
}

.patio-feature-content p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.patio-benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.patio-benefits li {
  padding-left: 1.6rem;
  position: relative;
  color: #444;
  line-height: 1.5;
}

.patio-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.cta-button--secondary:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .patio-feature-content {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .patio-feature-grid {
    grid-template-columns: 1fr;
  }

  .patio-feature-photo {
    height: 280px;
  }

  .patio-feature-content {
    padding: 2rem 1.5rem;
  }

  .cta-button--secondary {
    align-self: stretch;
    text-align: center;
  }
}

/* Print styles - hide interactive elements */
@media print {
  .faq-toggle,
  .video-play-button,
  .lang-switcher,
  .menu-toggle {
    display: none;
  }

  .faq-answer {
    max-height: none !important;
  }

  .faq-question {
    padding-bottom: 0;
  }
}
