/* =====================================================
   LE GÎTE D'ALICE — SITE PRO AVEC EFFETS
   ===================================================== */

:root {
  --primary: #6B5B3E;
  --primary-dark: #4A3F2B;
  --primary-light: #8B7D5E;
  --accent: #C8A96E;
  --accent-light: #E8D9B8;
  --green: #4A7C59;
  --bg: #FDFBF7;
  --bg-card: #FFFFFF;
  --bg-alt: #F5F0E8;
  --text: #2D2A26;
  --text-sec: #6E6860;
  --text-muted: #A09888;
  --border: #E8E2D8;
  --danger: #C44B3F;
  --success: #4A7C59;
  --pending: #B0B0B0;
  --booked: #C44B3F;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.12);
  --r: 16px; --rs: 10px; --rx: 6px;
  --font: 'Lato', sans-serif;
  --display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --nav-h: 60px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }
a { color: inherit; text-decoration: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .15s; }
.reveal-d2 { transition-delay: .3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: transparent; transition: all .4s var(--ease);
}
.navbar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent-light) 50%, var(--accent) 80%, transparent 100%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.navbar.scrolled::after { opacity: 1; }
.navbar.scrolled {
  background: rgba(253,251,247,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(107,91,62,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1280px; margin: 0 auto; padding: 0 28px;
  position: relative;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 46px; }
.nav-brand span { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #fff; transition: color .4s; text-shadow: 0 1px 5px rgba(0,0,0,.5); }
.navbar.scrolled .nav-brand span { text-shadow: none; }
.navbar.scrolled .nav-brand span { color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-contact {
  display: flex; align-items: center; gap: 20px;
  position: absolute; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.35); backdrop-filter: blur(6px);
  padding: 8px 20px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .4s var(--ease);
}
.navbar.scrolled .nav-contact {
  background: rgba(107,91,62,.06); backdrop-filter: none;
  border-color: var(--accent-light);
  box-shadow: 0 1px 6px rgba(200,169,110,.1);
}
.nav-contact-link {
  font-size: .82rem; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5); transition: color .3s; white-space: nowrap;
}
.nav-contact-link:hover { color: var(--accent); }
.nav-contact-link i { font-size: .78rem; color: var(--accent); }
.navbar.scrolled .nav-contact-link { color: var(--primary-dark); text-shadow: none; }
.navbar.scrolled .nav-contact-link:hover { color: var(--accent); }
.nav-links a {
  padding: 7px 16px; border-radius: 99px; font-size: .88rem;
  font-weight: 600; color: #fff; transition: all .3s;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  background: rgba(0,0,0,.25); backdrop-filter: blur(4px);
}
.navbar.scrolled .nav-links a { color: var(--text-sec); text-shadow: none; background: transparent; backdrop-filter: none; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.25); color: #fff; }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { background: rgba(107,91,62,.08); color: var(--primary-dark); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--accent), #D4B97A); color: #fff !important; backdrop-filter: blur(4px);
  padding: 8px 22px; font-weight: 700; border: 1px solid rgba(255,255,255,.3);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  position: relative; overflow: hidden;
}
.nav-links .nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .6s var(--ease);
}
.nav-links .nav-cta:hover::before { left: 100%; }
.navbar.scrolled .nav-links .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-color: var(--primary); color: #fff !important; text-shadow: none;
  box-shadow: 0 2px 8px rgba(107,91,62,.2);
}
.nav-links .nav-cta:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.navbar.scrolled .nav-links .nav-cta:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 4px 12px rgba(107,91,62,.25); }

.nav-hamburger {
  display: none; background: none; border: none; flex-direction: column;
  gap: 5px; padding: 6px; width: 34px;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%; background: #fff;
  border-radius: 2px; transition: all .3s var(--ease);
}
.navbar.scrolled .nav-hamburger span { background: var(--primary-dark); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 24px; gap: 8px;
  transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 99;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  font-size: 1.2rem; padding: 16px 32px; border-radius: var(--rs);
  font-weight: 500; width: 100%; text-align: center; color: var(--text);
}
.nav-mobile a:hover { background: rgba(107,91,62,.05); }
.nav-mobile .nav-cta-mobile {
  background: var(--primary); color: #fff !important; font-weight: 600;
  margin-top: 16px; border-radius: var(--rs);
}
.nav-mobile-contact {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); width: 100%;
}
.nav-mobile-contact a {
  font-size: .88rem; color: var(--text-sec); display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.nav-mobile-contact a:hover { color: var(--accent); }
.nav-mobile-contact i { color: var(--accent); font-size: .85rem; }

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s var(--ease);
  will-change: opacity, transform; overflow: hidden;
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  image-rendering: high-quality;
}
.hero-slide.active { opacity: 1; animation: kenBurns 12s var(--ease) forwards; }
.hero-fallback { background: linear-gradient(165deg, #5C4F3A 0%, #3D3428 50%, #2A241C 100%); opacity: 1; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 600px; padding: 0 24px; color: #fff;
}
.hero-logo {
  width: 80px; height: 80px; object-fit: contain; margin: 0 auto 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.2));
  animation: fadeIn .8s var(--ease) both;
}
.hero h1 {
  font-family: var(--display); font-size: 2.6rem; font-weight: 700;
  line-height: 1.15; text-shadow: 0 2px 16px rgba(0,0,0,.3);
  animation: fadeIn .8s .15s var(--ease) both;
}
.hero-loc {
  font-size: .95rem; letter-spacing: 1px; margin-top: 8px;
  opacity: .85; animation: fadeIn .8s .25s var(--ease) both;
}
.hero-loc i { margin-right: 4px; }
.hero-divider {
  width: 48px; height: 2px; background: var(--accent);
  margin: 20px auto; animation: fadeIn .8s .35s var(--ease) both;
}
.hero-tagline {
  font-family: var(--display); font-style: italic; font-size: 1.1rem;
  opacity: .9; margin-bottom: 32px;
  animation: fadeIn .8s .4s var(--ease) both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 99px; font-size: .95rem; font-weight: 600;
  background: var(--accent); color: var(--primary-dark); border: none;
  transition: all .3s var(--ease); animation: fadeIn .8s .5s var(--ease) both;
}
.btn-hero:hover { background: #D4B87A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.hero-dots {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.6rem; animation: heroScroll 2.5s infinite;
}
@keyframes heroScroll { 0%,100% { transform: translateX(-50%) translateY(0); opacity:.6; } 50% { transform: translateX(-50%) translateY(10px); opacity:1; } }
@keyframes fadeIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 99px; font-size: .92rem;
  font-weight: 600; border: none; transition: all .25s var(--ease);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,91,62,.25); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-family: var(--display); font-size: 1.8rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.section-sub { color: var(--text-sec); font-size: .95rem; margin-top: 8px; }

.label-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--accent);
  margin-bottom: 10px;
}
.deco-bar { width: 50px; height: 3px; background: var(--accent); margin: 16px auto 20px; border-radius: 2px; }

/* ===== WELCOME ===== */
.welcome-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.welcome-deco {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.22) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-deco--left { top: -100px; left: -120px; }
.welcome-deco--right { bottom: -100px; right: -120px; }

/* Decorative SVG illustrations */
.deco-tree { position: absolute; pointer-events: none; z-index: 0; }
.deco-tree--left { left: -10px; bottom: -20px; width: 160px; height: 260px; }
.deco-tree--right { right: 10px; top: -10px; width: 140px; height: 240px; }
.deco-house { position: absolute; bottom: 20px; right: 50px; width: 180px; pointer-events: none; z-index: 0; }
.deco-leaf { position: absolute; pointer-events: none; z-index: 0; }
.deco-leaf--1 { top: 30px; right: 12%; width: 65px; animation: leafFloat 8s ease-in-out infinite; }
.deco-leaf--2 { bottom: 50px; left: 10%; width: 55px; animation: leafFloat 10s ease-in-out infinite 2s; }
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.deco-branch { position: absolute; pointer-events: none; z-index: 0; }
.deco-branch--left { left: 0; top: 0; width: 110px; }
.deco-branch--right { right: 0; bottom: 0; width: 110px; }

.section-about { position: relative; overflow: hidden; }
.deco-sun { position: absolute; top: -20px; right: -20px; width: 160px; pointer-events: none; z-index: 0; }
.deco-vine { position: absolute; left: 10px; top: 40px; width: 45px; pointer-events: none; z-index: 0; }
.welcome { text-align: center; max-width: 700px; margin: 0 auto; }
.welcome h2 { font-family: var(--display); font-size: 2rem; color: var(--primary-dark); margin-bottom: 0; }
.welcome-lead { color: var(--text); font-size: 1.08rem; line-height: 1.85; font-weight: 400; }
.welcome-sub { color: var(--text-sec); font-size: .95rem; line-height: 1.7; font-style: italic; }

.welcome-highlights {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px; flex-wrap: wrap;
}
.wh-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 99px;
  background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.2);
  font-size: .88rem; font-weight: 600; color: var(--primary-dark);
  transition: all .3s var(--ease);
}
.wh-item:hover { background: rgba(200,169,110,.2); transform: translateY(-2px); }
.wh-item i { color: var(--accent); font-size: .95rem; }
.wh-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: .5;
}

/* ===== FEATURES ===== */
.feat-section {
  padding: 60px 0; background: var(--bg);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; border-radius: var(--r);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all .3s var(--ease);
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,169,110,.15), rgba(200,169,110,.05));
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.feat-card:hover .feat-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.feat-icon i { color: var(--accent); font-size: 1.1rem; transition: color .3s; }
.feat-card:hover .feat-icon i { color: #fff; }
.feat-card span { font-size: .85rem; font-weight: 600; color: var(--text-sec); letter-spacing: .3px; }

/* ===== ABOUT / LE GÎTE ===== */

/* Image showcase — 2 photos side by side */
.about-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 40px;
}
.about-photo {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.about-photo:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.16); }
.about-img-wrap {
  width: 100%; background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
}
.about-img-wrap img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.about-photo:hover .about-img-wrap img { transform: scale(1.04); }
.about-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); font-size: 2rem;
}
.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  padding: 36px 18px 14px; display: flex; justify-content: flex-start;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  padding: 7px 16px; border-radius: 99px;
  font-size: .78rem; font-weight: 600; letter-spacing: .3px;
}
.about-badge i { color: #F5C842; }

/* Stats row */
.about-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
  background: var(--bg-card); border-radius: var(--r);
  border: 1px solid var(--border); padding: 28px 16px;
  box-shadow: var(--shadow);
}
.about-stat {
  flex: 1; text-align: center; padding: 8px 12px;
}
.about-stat-icon {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  background: linear-gradient(135deg, rgba(200,169,110,.15), rgba(200,169,110,.06));
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.about-stat:hover .about-stat-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  transform: scale(1.1);
}
.about-stat-icon i { color: var(--accent); font-size: .95rem; transition: color .3s; }
.about-stat:hover .about-stat-icon i { color: #fff; }
.about-stat-num {
  font-family: var(--display); font-size: 1.8rem; font-weight: 700;
  color: var(--primary-dark); line-height: 1.2;
}
.about-stat-num i { font-size: 1.3rem; color: var(--green); }
.about-stat-label {
  font-size: .72rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600; margin-top: 2px;
}
.about-stat-sep {
  width: 1px; height: 50px; background: var(--border); flex-shrink: 0;
}

/* Description */
.about-desc {
  text-align: center; max-width: 680px; margin: 0 auto 40px;
}
.about-desc p {
  color: var(--text-sec); font-size: 1rem; line-height: 1.85;
  margin-bottom: 10px;
}
.about-desc p:last-child { margin-bottom: 0; font-style: italic; color: var(--text-muted); }

/* Cards grid */
.about-cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.about-card {
  background: var(--bg-card); border-radius: var(--r); padding: 28px 24px;
  border: 1px solid var(--border); transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  border-radius: 4px 0 0 4px; transition: width .3s var(--ease);
}
.about-card:hover::before { width: 6px; }
.about-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(200,169,110,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; transition: all .4s var(--ease);
  transform: translate(30px, -30px);
}
.about-card:hover::after { transform: translate(15px, -15px); width: 140px; height: 140px; }
.about-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--accent-light); }

.about-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.about-card-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,169,110,.15), rgba(200,169,110,.06));
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.about-card:hover .about-card-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.about-card-icon i { color: var(--accent); font-size: 1rem; transition: color .3s; }
.about-card:hover .about-card-icon i { color: #fff; }
.about-card h3 {
  font-family: var(--display); font-size: 1.15rem; color: var(--primary-dark); margin: 0;
}
.about-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-card li {
  font-size: .9rem; color: var(--text-sec); display: flex; align-items: center; gap: 10px;
  transition: transform .2s var(--ease);
}
.about-card li:hover { transform: translateX(4px); }
.about-card li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light)); flex-shrink: 0;
}
.about-card li em { font-style: normal; font-weight: 700; color: var(--primary-dark); min-width: 52px; }

/* ===== SECTION DIVIDERS ===== */
.section-wave {
  position: relative; margin-top: -50px; z-index: 2; pointer-events: none;
}
.section-wave svg { display: block; width: 100%; height: 50px; }
.section-divider { position: relative; z-index: 2; pointer-events: none; margin: 0; line-height: 0; }
.section-divider svg { display: block; width: 100%; height: 50px; }

/* ===== GALLERY SECTION ===== */
.section-gallery { position: relative; overflow: hidden; }
.deco-gallery-frame { position: absolute; pointer-events: none; z-index: 0; }
.deco-gallery-frame--1 { top: 30px; left: 20px; width: 95px; animation: frameDrift 12s ease-in-out infinite; }
.deco-gallery-frame--2 { bottom: 40px; right: 30px; width: 75px; animation: frameDrift 14s ease-in-out infinite 3s; }
@keyframes frameDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}
.deco-gallery-dots { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* ===== BOOKING SECTION ===== */
.section-booking { position: relative; overflow: hidden; }
.deco-key { position: absolute; left: 20px; bottom: 40px; width: 65px; pointer-events: none; z-index: 0; }
.deco-cal-icon { position: absolute; right: 30px; top: 60px; width: 110px; pointer-events: none; z-index: 0; }
.deco-sparkle { position: absolute; pointer-events: none; z-index: 0; animation: sparkleGlow 4s ease-in-out infinite; }
.deco-sparkle--1 { top: 120px; left: 10%; width: 45px; }
.deco-sparkle--2 { bottom: 100px; right: 12%; width: 35px; animation-delay: 2s; }
@keyframes sparkleGlow {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: .6; transform: scale(1.25) rotate(15deg); }
}

/* ===== FOOTER DECO ===== */
.footer-wave {
  position: relative; z-index: 2; pointer-events: none; margin: 0; line-height: 0;
  margin-top: -1px;
}
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer { position: relative; overflow: hidden; }
.deco-footer-stars-wrap {
  position: absolute; top: 0; left: 0; right: 0; height: 50px;
  display: flex; justify-content: center; pointer-events: none; z-index: 0;
}
.deco-footer-stars { width: 500px; animation: starsTwinkle 4s ease-in-out infinite; }
@keyframes starsTwinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.footer .container { position: relative; z-index: 1; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--rs);
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.4) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-zoom {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  color: #fff; font-size: 1.1rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

.gallery-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--text-muted); }
.gallery-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; color: var(--accent); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 85vh; object-fit: contain; border-radius: var(--rx); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.08); border: none;
  color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem;
  transition: background .2s; backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .85rem;
}

/* ===== BOOKING INFO ===== */
.booking-info {
  background: var(--bg-card); border-radius: var(--r); padding: 28px 24px;
  border: 1px solid var(--border); margin-bottom: 32px;
}
.booking-info > h3 {
  font-family: var(--display); font-size: 1.15rem; color: var(--primary-dark);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.booking-info > h3 i { color: var(--accent); }
.booking-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.bk-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.bk-step-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.bk-step strong { display: block; font-size: .92rem; color: var(--primary-dark); margin-bottom: 2px; }
.bk-step p { font-size: .85rem; color: var(--text-sec); margin: 0; line-height: 1.5; }
.booking-cancel {
  background: #fdf6ee; border: 1px solid #f0dfc8; border-radius: var(--rs);
  padding: 18px 20px;
}
.booking-cancel h4 {
  font-size: .92rem; color: #a67c30; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.booking-cancel h4 i { color: #c9982d; }
.booking-cancel ul {
  list-style: none; padding: 0; margin: 0 0 10px 0; display: flex; flex-direction: column; gap: 8px;
}
.booking-cancel li {
  font-size: .84rem; color: var(--text-sec); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.booking-cancel li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.booking-cancel li strong { color: var(--primary-dark); }
.cancel-note { font-size: .8rem; color: #999; margin: 0; font-style: italic; }
.modal-small { font-size: .82rem; color: #888; margin-top: 8px; }
.modal-small i { color: var(--accent); margin-right: 4px; }

/* ===== CALENDAR & BOOKING ===== */
.booking-layout { display: flex; flex-direction: column; gap: 24px; }
.cal-box {
  background: var(--bg-card); border-radius: var(--r); padding: 24px 16px;
  border: 1px solid var(--border);
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head h3 { font-family: var(--display); font-size: 1.05rem; color: var(--primary-dark); }
.cal-nav {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border);
  background: none; color: var(--primary); font-size: .85rem; transition: all .2s;
}
.cal-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cal-legend { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; font-size: .73rem; color: var(--text-muted); }
.cal-legend span { display: flex; align-items: center; gap: 4px; }
.cal-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.cal-dot.av { background: var(--success); }
.cal-dot.pe { background: var(--pending); }
.cal-dot.bk { background: var(--booked); }
.cal-dot.sl { background: var(--primary); }

.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; user-select: none; }
.cal-dn { text-align: center; font-weight: 700; font-size: .7rem; color: var(--text-muted); padding: 6px 0; text-transform: uppercase; letter-spacing: .5px; }
.cal-d {
  text-align: center; padding: 10px 2px; border-radius: var(--rx);
  font-size: .85rem; transition: all .12s var(--ease); position: relative;
}
.cal-d:not(.dis):not(.bkd):not(.pnd):not(.empty) { cursor: pointer; }
.cal-d:hover:not(.dis):not(.bkd):not(.pnd):not(.empty) { background: rgba(107,91,62,.08); }
.cal-d.today { font-weight: 700; box-shadow: inset 0 0 0 2px var(--primary); }
.cal-d.dis { color: #D0C8BC; cursor: default; }
.cal-d.bkd { background: var(--booked); color: #fff; cursor: not-allowed; border-radius: var(--rx); }
.cal-d.pnd { background: var(--pending); color: #fff; cursor: not-allowed; }
.cal-d.sel { background: var(--primary); color: #fff; border-radius: var(--rx); }
.cal-d.inr { background: rgba(107,91,62,.1); color: var(--primary-dark); border-radius: 0; }
.cal-d.sel-start { border-radius: var(--rx) 0 0 var(--rx); }
.cal-d.sel-end { border-radius: 0 var(--rx) var(--rx) 0; }
.cal-d.hover-end { background: rgba(107,91,62,.15); color: var(--primary-dark); }
.cal-d.empty { visibility: hidden; }

.cal-sel {
  margin-top: 16px; padding: 12px; background: var(--bg-alt);
  border-radius: var(--rs); text-align: center; font-size: .88rem; color: var(--text-sec);
}
.cal-sel strong { color: var(--primary-dark); }
.btn-clear-dates {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  padding: 6px 16px; font-size: .82rem; border: none; border-radius: 20px;
  background: #f0e6e6; color: #b44; cursor: pointer; transition: background .2s, color .2s;
}
.btn-clear-dates:hover { background: #e4cccc; color: #922; }
.btn-clear-dates i { font-size: .75rem; }

/* Form */
.bk-form-box {
  background: var(--bg-card); border-radius: var(--r); padding: 28px 20px;
  border: 1px solid var(--border);
}
.bk-form-box h3 { font-family: var(--display); font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 8px; }
.form-dates {
  background: var(--bg-alt); padding: 12px 16px; border-radius: var(--rs);
  font-size: .86rem; color: var(--primary-dark); margin-bottom: 20px;
  text-align: center; font-weight: 500;
}
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: .78rem; font-weight: 600; color: var(--text-sec); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
.fg-optional { font-weight: 400; text-transform: none; color: #bbb; font-size: .75rem; letter-spacing: 0; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--rs);
  font-size: .93rem; font-family: var(--font); background: var(--bg); transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107,91,62,.08); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg-check { display: flex; align-items: flex-start; gap: 10px; }
.fg-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.fg-check label { font-size: .88rem; font-weight: 400; text-transform: none; letter-spacing: 0; }
.fg-check label small { display: block; color: var(--text-muted); font-size: .78rem; margin-top: 2px; }

/* ===== MODALS ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--bg-card); border-radius: var(--r); padding: 36px 28px;
  max-width: 400px; width: 100%; text-align: center;
  animation: modalPop .3s var(--ease);
}
@keyframes modalPop { from { transform: scale(.93) translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-icon { font-size: 3rem; color: var(--success); margin-bottom: 14px; }
.modal-box h3 { font-family: var(--display); font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 8px; }
.modal-box p { color: var(--text-sec); font-size: .9rem; margin-bottom: 24px; }
.modal-actions { display: flex; gap: 10px; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: #2A2722; color: #B0A898; padding: 48px 0 24px; }
.footer-main {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  text-align: center;
}
.footer-col h4 {
  font-family: var(--display); font-size: .82rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.footer-col--brand { }
.footer-brand { display: flex; align-items: center; gap: 10px; justify-content: center; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: var(--display); font-weight: 700; color: #E8DFD0; font-size: 1.1rem; }
.footer-tagline {
  font-size: .85rem; color: #8A8278; margin-top: 8px; font-style: italic;
}
.footer-col--contact { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-col--contact a {
  font-size: .85rem; display: flex; align-items: center; gap: 8px;
  transition: color .2s; color: #B0A898;
}
.footer-col--contact a:hover { color: var(--accent); }
.footer-col--contact i { color: var(--accent); font-size: .82rem; width: 16px; text-align: center; }
.footer-col--nav { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-col--nav a {
  font-size: .85rem; transition: all .2s; color: #B0A898;
  padding: 3px 0; position: relative;
}
.footer-col--nav a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--accent); transition: all .3s var(--ease); transform: translateX(-50%);
}
.footer-col--nav a:hover { color: #E8DFD0; }
.footer-col--nav a:hover::after { width: 100%; }
.footer-divider {
  height: 1px; margin: 28px 0 20px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.2), transparent);
}
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; text-align: center;
  font-size: .72rem; color: #6E665C;
}
.footer-made i { color: #C44B3F; font-size: .65rem; margin: 0 2px; }
.footer-admin-link { color: #9E9688; font-size: .7rem; opacity: .4; transition: opacity .2s; }
.footer-admin-link:hover { opacity: .8; color: var(--accent); }

/* ===== CONTACT BUBBLE ===== */
.contact-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 400; }
.contact-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: var(--accent); color: #fff; font-size: 1.3rem;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .3s, background .3s;
  display: flex; align-items: center; justify-content: center;
}
.contact-toggle:hover { transform: scale(1.08); background: var(--primary); }
.contact-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 340px; max-height: 520px; overflow-y: auto;
  background: var(--bg-card); border-radius: var(--r);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  border: 1px solid var(--border);
  display: none; flex-direction: column;
  animation: panelIn .25s var(--ease);
}
.contact-panel.open { display: flex; }
@keyframes panelIn { from { opacity:0; transform: translateY(12px) scale(.95); } to { opacity:1; transform: none; } }
.contact-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
}
.contact-panel-head h4 { font-family: var(--display); font-size: .95rem; color: var(--primary-dark); margin: 0; display: flex; align-items: center; gap: 8px; }
.contact-panel-head h4 i { color: var(--accent); }
.contact-panel-close { background: none; border: none; cursor: pointer; color: var(--text-sec); font-size: 1.1rem; padding: 4px; }
.contact-panel-close:hover { color: var(--primary-dark); }
.contact-panel-info {
  padding: 12px 18px; display: flex; flex-direction: column; gap: 6px;
  background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.contact-panel-info a { font-size: .82rem; color: var(--text-sec); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.contact-panel-info a:hover { color: var(--accent); }
.contact-panel-info i { color: var(--accent); width: 16px; text-align: center; }
.contact-form { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.contact-form .fg { margin: 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--rs); font-size: .85rem; font-family: var(--body);
  background: var(--bg); transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); outline: none; }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-success {
  padding: 32px 18px; text-align: center; color: var(--success);
}
.contact-success i { font-size: 2.5rem; margin-bottom: 10px; }
.contact-success p { font-size: .88rem; color: var(--text-sec); margin: 0; }

/* ===== TOAST ===== */
.toast-wrap { position: fixed; bottom: 90px; right: 16px; left: 16px; z-index: 500; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; pointer-events: none; }
.toast {
  padding: 12px 22px; border-radius: 99px; color: #fff; pointer-events: auto;
  font-size: .85rem; font-weight: 500; box-shadow: var(--shadow-lg);
  animation: toastIn .3s var(--ease), toastOut .3s 3.7s var(--ease) forwards;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--primary); }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .about-cards-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-photos { gap: 20px; }
  .about-img-wrap img, .about-img-placeholder { height: 320px; }
}
@media (min-width: 960px) {
  :root { --nav-h: 68px; }
  .nav-hamburger { display: none !important; }
  .nav-links { display: flex !important; }
  .nav-mobile { display: none !important; }
  .hero h1 { font-size: 3.2rem; }
  .hero-tagline { font-size: 1.2rem; }
  .hero-logo { width: 90px; height: 90px; }
  .section { padding: 100px 0; }
  .section-head h2, .welcome h2 { font-size: 2.4rem; }
  .about-cards-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-text h2 { font-size: 1.9rem; }
  .feat-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .booking-layout { flex-direction: row; align-items: flex-start; }
  .cal-box { flex: 1; position: sticky; top: calc(var(--nav-h) + 24px); }
  .bk-form-box { flex: 1; }
  .footer-main { grid-template-columns: 1.2fr 1fr .8fr; gap: 40px; text-align: left; }
  .footer-brand, .footer-col--contact, .footer-col--nav { justify-content: flex-start; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (max-width: 959px) {
  .nav-hamburger { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-contact-text { display: none; }
  .nav-contact { position: static; transform: none; gap: 10px; margin-left: auto; margin-right: 12px; }
  .nav-contact-link { font-size: 1rem; padding: 6px; }
  .nav-contact-link i { font-size: .9rem; }
}
@media (max-width: 479px) {
  .hero h1 { font-size: 2rem; }
  .hero-tagline { font-size: .95rem; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feat-card { padding: 20px 12px; }
  .feat-icon { width: 44px; height: 44px; }
  .feat-icon i { font-size: .95rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .about-nums { gap: 16px; }
  .about-num-circle { width: 60px; height: 60px; }
  .about-num-circle strong { font-size: 1.3rem; }
  .about-stats { flex-wrap: wrap; gap: 12px; }
  .about-stat-sep { width: 30px; height: 1px; }
  .about-stat-num { font-size: 1.4rem; }
  .fg-row { grid-template-columns: 1fr; }
  .cal-d { padding: 8px 1px; font-size: .8rem; }
  .contact-panel { width: calc(100vw - 32px); right: -8px; }
  .welcome-highlights { gap: 10px; }
  .wh-item { padding: 8px 14px; font-size: .8rem; }
  .wh-dot { display: none; }
  .deco-house, .deco-key, .deco-cal-icon { display: none; }
  .deco-tree--left { width: 80px; }
  .deco-tree--right { width: 70px; }
  .deco-gallery-frame { width: 50px !important; }
}
