/* ============================================
   MAISON DE CAMPAGNE – PREMIUM REAL ESTATE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --color-bg: #faf7f2;
  --color-bg-warm: #f5f0e8;
  --color-bg-cream: #ede8df;
  --color-text: #2a2520;
  --color-text-soft: #5c534a;
  --color-text-muted: #8a7f73;
  --color-accent: #4a6741;
  --color-accent-light: #5a7f50;
  --color-accent-warm: #8b6f47;
  --color-gold: #c9a96e;
  --color-gold-light: #e2d1a8;
  --color-border: rgba(0, 0, 0, 0.06);
  --color-card-bg: rgba(255, 255, 255, 0.75);
  --color-glass: rgba(255, 255, 255, 0.72);
  --color-glass-border: rgba(255, 255, 255, 0.5);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 12px rgba(42, 37, 32, 0.04);
  --shadow-md: 0 8px 32px rgba(42, 37, 32, 0.06);
  --shadow-lg: 0 20px 60px rgba(42, 37, 32, 0.08);
  --shadow-xl: 0 32px 80px rgba(42, 37, 32, 0.12);
  --shadow-img: 0 16px 48px rgba(42, 37, 32, 0.10);

  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1280px;
  --content-padding: 24px;

  color-scheme: light;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION — PROMINENT TEXT
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--content-padding);
  transition: background var(--transition-base),
              box-shadow var(--transition-base);
}

.site-header .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(42, 37, 32, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .header-inner {
  padding: 10px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: -2px;
  text-shadow: none;
}

.site-header.scrolled .logo-text {
  color: #fff;
  text-shadow: none;
}

.site-header.scrolled .logo-text span {
  color: rgba(255,255,255,0.6);
}

/* Navigation links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  padding: 10px 18px;
  border-radius: 999px;
  transition: color var(--transition-base),
              background var(--transition-base),
              text-shadow var(--transition-base);
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.site-header.scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: none;
}

.site-header.scrolled .site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  transition: background var(--transition-base);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: var(--transition-base);
}

.site-header.scrolled .mobile-toggle span {
  background: #fff;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.88) 0%,
    rgba(20, 18, 15, 0.55) 35%,
    rgba(20, 18, 15, 0.2) 60%,
    rgba(20, 18, 15, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px var(--content-padding) 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(74, 103, 65, 0.22);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 103, 65, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-section .btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.page-section .btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.page-section .btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ═══════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════ */
.page-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--content-padding);
}

.section-header {
  margin-bottom: 44px;
  max-width: 800px;
}

.section-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-pretitle::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--color-gold);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
}

.section-header p {
  margin-top: 18px;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.section-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-divider hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold-light), transparent);
}

/* ═══════════════════════════════════════════
   TEXT CONTENT — INCREASED SIZE FOR VISIT
   ═══════════════════════════════════════════ */
.content-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text-soft);
  max-width: 760px;
  margin-bottom: 32px;
}

.content-text.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   IMAGE STYLES — UNIFORM LARGE SIZES
   ═══════════════════════════════════════════ */
.image-single {
  margin-bottom: 40px;
}

.image-single img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-img);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-single:hover img {
  transform: scale(1.008);
  box-shadow: var(--shadow-xl);
}

.image-single figcaption,
.image-grid figcaption {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ── Image Grid — MAX 2 COLUMNS ── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.image-grid img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-lg);
}

.image-grid figcaption {
  grid-column: 1 / -1;
}

/* ═══════════════════════════════════════════
   LIGHTBOX — FULLSCREEN PHOTO VIEWER
   ═══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
  padding: 24px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), transform var(--transition-base);
  backdrop-filter: blur(8px);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), transform var(--transition-base);
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ═══════════════════════════════════════════
   FEATURE BANNER & QUOTE
   ═══════════════════════════════════════════ */
.feature-banner {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 40px 0;
  border: 1px solid var(--color-border);
}

.feature-banner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text);
}

.feature-banner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.highlight-quote {
  position: relative;
  padding: 32px 0 32px 28px;
  margin: 32px 0;
  border-left: 3px solid var(--color-gold);
  max-width: 700px;
}

.highlight-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-soft);
}

/* ═══════════════════════════════════════════
   ROOM CARDS
   ═══════════════════════════════════════════ */
.room-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.room-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
}

.room-card-body {
  padding: 24px;
}

.room-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.room-card-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.room-card-body .room-size {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(74, 103, 65, 0.08);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════
   INFO CARDS
   ═══════════════════════════════════════════ */
.info-box {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
  font-weight: 600;
}

.callout {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

/* ── Feature List ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 1.02rem;
  color: var(--color-text-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ── Details Grid ── */
.details-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.details-grid h3,
.contact-grid h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.details-grid p,
.contact-grid p {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-top: 4px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-card {
  background: linear-gradient(135deg, #3a5a35 0%, #4a6741 40%, #5a7f50 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 1.08rem;
  line-height: 1.75;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-card .btn-primary {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-card .btn-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-text);
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
}

.cta-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-base);
}

.cta-links a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════ */
.map-frame {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 48px var(--content-padding) 60px;
  text-align: center;
}

.site-footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.site-footer p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.site-footer a {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.site-footer a:hover {
  color: var(--color-accent-light);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-single img {
    max-height: 500px;
  }

  .image-grid img {
    max-height: 350px;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .page-section {
    padding: 56px var(--content-padding);
  }

  .details-grid,
  .contact-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    padding: 32px 24px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .image-single img {
    max-height: 400px;
  }

  .image-grid img {
    max-height: 300px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 680px) {
  :root {
    --content-padding: 16px;
  }

  .site-header {
    padding: 0 16px;
  }

  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(42, 37, 32, 0.98);
  }

  .site-header .header-inner {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-text span {
    font-size: 0.6rem;
  }

  /* Mobile nav overlay */
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 37, 32, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 200;
    padding: 20px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 1.3rem;
    padding: 16px 32px;
    text-shadow: none;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
  }

  .mobile-toggle {
    display: flex;
    z-index: 250;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
  }

  .hero-stat .stat-value {
    font-size: 1.3rem;
  }

  .hero-stat .stat-label {
    font-size: 0.7rem;
  }

  /* Sections mobile */
  .page-section {
    padding: 44px var(--content-padding);
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .section-header p {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .content-text {
    font-size: 1.02rem;
  }

  /* Images mobile — single column, generous height */
  .image-single img {
    max-height: 300px;
    border-radius: var(--radius-md);
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .image-grid img {
    max-height: 280px;
    border-radius: var(--radius-md);
  }

  .image-single figcaption,
  .image-grid figcaption {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* Room cards mobile */
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .room-card img {
    height: 220px;
  }

  .room-card-body {
    padding: 20px;
  }

  .room-card-body h4 {
    font-size: 1.1rem;
  }

  .room-card-body p {
    font-size: 0.92rem;
  }

  /* Quote mobile */
  .highlight-quote {
    padding: 24px 0 24px 20px;
    margin: 24px 0;
  }

  .highlight-quote p {
    font-size: 1.08rem;
  }

  /* CTA mobile */
  .cta-section {
    padding: 40px var(--content-padding);
  }

  .cta-card {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }

  .cta-card h2 {
    font-size: 1.4rem;
  }

  .cta-card p {
    font-size: 0.95rem;
  }

  .cta-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Lightbox mobile */
  .lightbox-overlay {
    padding: 12px;
  }

  .lightbox-overlay img {
    max-width: 100vw;
    max-height: 85vh;
    border-radius: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  /* Footer mobile */
  .site-footer {
    padding: 36px var(--content-padding) 48px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .image-single img {
    max-height: 250px;
  }

  .image-grid img {
    max-height: 250px;
  }
}
