/* ============================================================
   Kwekwe Game Lodge — Main Stylesheet
   ============================================================ */

/* ── TOKENS ── */
:root {
  --soil:    #2C1A0E;
  --bark:    #4A2C17;
  --umber:   #7A4828;
  --copper:  #B5733A;
  --sand:    #D4A96A;
  --savanna: #E8C98A;
  --cream:   #F5EDD8;
  --mist:    #FAF5EC;
  --moss:    #3B4A2F;
  --fern:    #5C7048;
  --sage:    #8A9E6E;
  --ivory:   #FDF8F0;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--ivory); color: var(--soil); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 60px; display: flex; align-items: center; justify-content: space-between; transition: background 0.5s, padding 0.4s; }
nav.scrolled { background: rgba(44,26,14,0.96); backdrop-filter: blur(12px); padding: 14px 60px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; height: 50px; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-logo-fallback { font-family: 'Cinzel', serif; font-size: 1.5rem; letter-spacing: 0.25em; color: var(--cream); }
.nav-logo-fallback span { color: var(--sand); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,237,216,0.85); text-decoration: none; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--sand); transition: width 0.35s ease; }
.nav-links a:hover { color: var(--sand); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--soil); background: var(--sand); padding: 12px 28px; text-decoration: none; transition: background 0.3s; }
.nav-cta:hover { background: var(--cream); }
@media (max-width: 900px) { nav { padding: 16px 24px; } .nav-links { display: none; } }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/Image1.jpg') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.92) 0%, rgba(44,26,14,0.45) 50%, rgba(44,26,14,0.12) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 80px 100px; max-width: 900px; }
.hero-eyebrow { font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--sand); margin-bottom: 24px; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3.2rem, 8vw, 7rem); line-height: 0.95; color: var(--cream); margin-bottom: 32px; opacity: 0; animation: fadeUp 1.2s 0.6s forwards; }
.hero-title em { font-style: italic; color: var(--sand); display: block; }
.hero-subtitle { font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.95rem; letter-spacing: 0.05em; line-height: 1.9; color: rgba(245,237,216,0.72); max-width: 520px; margin-bottom: 52px; opacity: 0; animation: fadeUp 1s 1s forwards; }
.hero-actions { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 1.3s forwards; }
.btn-primary { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--soil); background: var(--sand); padding: 18px 44px; text-decoration: none; position: relative; overflow: hidden; transition: color 0.4s; display: inline-block; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--cream); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost { font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,237,216,0.75); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: color 0.3s; }
.btn-ghost:hover { color: var(--sand); }
.btn-ghost-line { width: 36px; height: 1px; background: currentColor; transition: width 0.4s; }
.btn-ghost:hover .btn-ghost-line { width: 60px; }
.scroll-hint { position: absolute; bottom: 36px; right: 60px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1s 2s forwards; }
.scroll-hint span { font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,237,216,0.5); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--sand), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(1.3);opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { to{opacity:1} }
@media (max-width: 768px) { .hero-content{padding:0 24px 80px} .scroll-hint{display:none} }

/* WILDLIFE GALLERY */
.wildlife-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.wildlife-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.wildlife-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s ease; }
.wildlife-item:hover img { transform: scale(1.08); }
.wildlife-item::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(44,26,14,0.65) 0%, transparent 55%); opacity:0; transition:opacity 0.4s; }
.wildlife-item:hover::after { opacity:1; }
.wildlife-label { position:absolute; bottom:20px; left:22px; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.3rem; color:var(--cream); opacity:0; transform:translateY(10px); transition:all 0.4s ease 0.1s; z-index:2; }
.wildlife-item:hover .wildlife-label { opacity:1; transform:translateY(0); }
@media (max-width:768px) { .wildlife-gallery{grid-template-columns:1fr} }

/* INTRO */
.intro-section { background:var(--soil); padding:100px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.intro-text .section-label { font-family:'Jost',sans-serif; font-weight:200; font-size:0.65rem; letter-spacing:0.45em; text-transform:uppercase; color:var(--sand); margin-bottom:20px; }
.intro-text .section-title { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(2.4rem,4vw,3.5rem); line-height:1.1; color:var(--cream); margin-bottom:28px; }
.intro-text .section-title em { font-style:italic; color:var(--sand); }
.intro-text p { font-family:'Jost',sans-serif; font-weight:200; font-size:0.95rem; line-height:1.9; color:rgba(245,237,216,0.65); max-width:480px; }
.intro-stats { display:flex; gap:48px; margin-top:48px; flex-wrap:wrap; }
.stat-item .stat-num { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:2.8rem; color:var(--sand); line-height:1; }
.stat-item .stat-label { font-family:'Jost',sans-serif; font-weight:200; font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(245,237,216,0.45); margin-top:8px; }
.intro-image { position:relative; height:500px; overflow:hidden; }
.intro-image img { width:100%; height:100%; object-fit:cover; }
.intro-image::before { content:''; position:absolute; top:-20px; left:-20px; width:100px; height:100px; border:1px solid var(--sand); opacity:0.3; z-index:2; }
.intro-image::after  { content:''; position:absolute; bottom:-20px; right:-20px; width:100px; height:100px; border:1px solid var(--sand); opacity:0.3; z-index:2; }
@media (max-width:900px) { .intro-section{grid-template-columns:1fr;padding:60px 24px;gap:40px} .intro-image{height:350px} }

/* ACCOMMODATIONS */
.accommodations { padding: 120px 0; background: var(--mist); }
.accommodations-header { text-align:center; margin-bottom:90px; padding:0 80px; }
.accommodations-header .section-label { font-family:'Jost',sans-serif; font-weight:200; font-size:0.65rem; letter-spacing:0.45em; text-transform:uppercase; color:var(--copper); margin-bottom:20px; }
.accommodations-header .section-title { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(2.4rem,4.5vw,4rem); line-height:1.1; color:var(--soil); }
.accommodations-header .section-title em { font-style:italic; color:var(--umber); }
.accommodations-header .section-subtitle { font-family:'Jost',sans-serif; font-weight:200; font-size:0.88rem; letter-spacing:0.08em; line-height:1.8; color:var(--umber); opacity:0.7; margin-top:18px; }

.lodge-block { display:grid; grid-template-columns:1.1fr 1fr; min-height:580px; margin-bottom:6px; }
.lodge-block.reverse { grid-template-columns:1fr 1.1fr; }
.lodge-block.reverse .lodge-slideshow { order:2; }
.lodge-block.reverse .lodge-content   { order:1; }

.lodge-slideshow { position:relative; overflow:hidden; background:var(--bark); }
.lodge-slideshow .slide { position:absolute; inset:0; opacity:0; transition:opacity 0.85s ease; }
.lodge-slideshow .slide.active { opacity:1; }
.lodge-slideshow .slide img { width:100%; height:100%; object-fit:cover; display:block; }
.lodge-slideshow .slide::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(44,26,14,0.22) 0%,transparent 60%); }

.slide-counter { position:absolute; top:22px; left:26px; z-index:10; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:0.95rem; color:rgba(245,237,216,0.75); pointer-events:none; background:rgba(44,26,14,0.35); padding:4px 10px; backdrop-filter:blur(4px); }
.slide-dots { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); z-index:10; display:flex; gap:8px; align-items:center; }
.slide-dot { width:7px; height:7px; border-radius:50%; background:rgba(245,237,216,0.35); border:none; cursor:pointer; padding:0; transition:background 0.3s, transform 0.3s; }
.slide-dot.active { background:var(--sand); transform:scale(1.45); }
.slide-btn { position:absolute; top:50%; z-index:10; transform:translateY(-50%); background:rgba(44,26,14,0.42); border:1px solid rgba(212,169,106,0.3); color:rgba(245,237,216,0.85); width:44px; height:44px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:1rem; transition:background 0.3s,border-color 0.3s,color 0.3s; backdrop-filter:blur(4px); }
.slide-btn:hover { background:rgba(181,115,58,0.6); border-color:var(--sand); color:var(--cream); }
.slide-btn.prev { left:14px; }
.slide-btn.next { right:14px; }
.slide-progress { position:absolute; bottom:0; left:0; height:2px; background:var(--sand); width:0%; z-index:10; }

.lodge-content { background:white; padding:56px 52px; display:flex; flex-direction:column; justify-content:center; }
.lodge-badge { display:inline-flex; align-items:center; gap:8px; font-family:'Jost',sans-serif; font-weight:300; font-size:0.58rem; letter-spacing:0.32em; text-transform:uppercase; color:var(--fern); border:1px solid rgba(92,112,72,0.3); padding:6px 14px; margin-bottom:24px; align-self:flex-start; }
.lodge-badge::before { content:'✦'; font-size:0.5rem; color:var(--sage); }
.lodge-name { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:300; font-size:clamp(1.9rem,2.5vw,2.6rem); color:var(--soil); line-height:1.1; margin-bottom:22px; }
.lodge-divider { width:48px; height:2px; background:linear-gradient(to right,var(--copper),var(--sand)); margin-bottom:24px; }
.lodge-desc { font-family:'Jost',sans-serif; font-weight:200; font-size:0.88rem; line-height:1.85; color:var(--bark); opacity:0.75; margin-bottom:28px; }
.lodge-amenities { margin-top:6px; border-top:1px solid rgba(44,26,14,0.08); padding-top:22px; }
.lodge-amenities-title { font-family:'Jost',sans-serif; font-weight:300; font-size:0.6rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--copper); margin-bottom:14px; }
.lodge-tags { display:flex; flex-wrap:wrap; gap:8px; }
.lodge-tag { font-family:'Jost',sans-serif; font-weight:200; font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--umber); padding:7px 14px; background:rgba(212,169,106,0.1); border:1px solid rgba(181,115,58,0.18); }

@media (max-width:900px) {
  .lodge-block,.lodge-block.reverse { grid-template-columns:1fr; }
  .lodge-block.reverse .lodge-slideshow{order:1} .lodge-block.reverse .lodge-content{order:2}
  .lodge-slideshow{min-height:300px} .lodge-content{padding:38px 26px}
  .accommodations-header{padding:0 24px}
}

/* EXPERIENCE STRIP */
.experience-strip { background:var(--bark); padding:100px 80px; display:grid; grid-template-columns:1fr 1.5fr; gap:80px; align-items:center; }
.experience-text .section-label { font-family:'Jost',sans-serif; font-weight:200; font-size:0.65rem; letter-spacing:0.45em; text-transform:uppercase; color:var(--sand); margin-bottom:20px; }
.experience-text .section-title { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(2.2rem,4vw,3.2rem); line-height:1.1; color:var(--cream); margin-bottom:28px; }
.experience-text .section-title em { font-style:italic; color:var(--sand); }
.experience-text p { font-family:'Jost',sans-serif; font-weight:200; font-size:0.92rem; line-height:1.9; color:rgba(245,237,216,0.6); }
.experience-list { margin-top:40px; display:flex; flex-direction:column; gap:16px; }
.experience-item { display:flex; align-items:center; gap:16px; }
.experience-item::before { content:''; width:24px; height:1px; background:var(--sand); flex-shrink:0; }
.experience-item span { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.1rem; color:var(--savanna); }
.experience-image { position:relative; height:480px; overflow:hidden; }
.experience-image img { width:100%; height:100%; object-fit:cover; }
@media (max-width:900px) { .experience-strip{grid-template-columns:1fr;padding:60px 24px;gap:40px} .experience-image{height:300px} }

/* QUOTE + BOOK */
.quote-section { position:relative; padding:140px 80px; background:var(--mist); text-align:center; overflow:hidden; }
.quote-bg-circle { position:absolute; border-radius:50%; border:1px solid rgba(181,115,58,0.1); top:50%; left:50%; transform:translate(-50%,-50%); }
.quote-mark { font-family:'Cormorant Garamond',serif; font-size:8rem; color:rgba(181,115,58,0.12); line-height:0.5; margin-bottom:24px; display:block; }
.quote-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:300; font-size:clamp(1.6rem,3vw,2.6rem); line-height:1.55; color:var(--bark); max-width:780px; margin:0 auto 32px; position:relative; }
.quote-attr { font-family:'Jost',sans-serif; font-weight:200; font-size:0.7rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--copper); margin-bottom:52px; display:block; }
.quote-book-btn { display:inline-block; position:relative; font-family:'Jost',sans-serif; font-weight:300; font-size:0.78rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--soil); background:var(--sand); padding:20px 64px; text-decoration:none; overflow:hidden; transition:color 0.4s; }
.quote-book-btn::before { content:''; position:absolute; inset:0; background:var(--soil); transform:translateY(100%); transition:transform 0.45s cubic-bezier(0.76,0,0.24,1); }
.quote-book-btn:hover::before { transform:translateY(0); }
.quote-book-btn:hover { color:var(--sand); }
.quote-book-btn span { position:relative; z-index:1; }
.quote-book-note { font-family:'Jost',sans-serif; font-weight:200; font-size:0.68rem; letter-spacing:0.15em; color:rgba(74,44,23,0.45); margin-top:16px; }
@media (max-width:768px) { .quote-section{padding:80px 24px} }

/* FOOTER */
footer { background:#1a0e06; padding:80px 80px 48px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-logo { height:46px; width:auto; object-fit:contain; filter:brightness(0) invert(1); opacity:0.85; display:block; margin-bottom:4px; }
.footer-logo-fallback { font-family:'Cinzel',serif; font-size:1.3rem; letter-spacing:0.25em; color:var(--cream); text-decoration:none; }
.footer-logo-fallback span { color:var(--sand); }
.footer-tagline { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:300; font-size:1rem; color:rgba(245,237,216,0.4); margin-top:16px; line-height:1.7; max-width:260px; }
.footer-col-title { font-family:'Jost',sans-serif; font-weight:200; font-size:0.6rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--sand); margin-bottom:24px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:14px; }
.footer-links a { font-family:'Jost',sans-serif; font-weight:200; font-size:0.82rem; color:rgba(245,237,216,0.4); text-decoration:none; transition:color 0.3s; }
.footer-links a:hover { color:var(--sand); }
.footer-bottom { padding-top:36px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-copy { font-family:'Jost',sans-serif; font-weight:200; font-size:0.65rem; letter-spacing:0.15em; color:rgba(245,237,216,0.2); }
.footer-social { display:flex; gap:28px; }
.footer-social a { font-family:'Jost',sans-serif; font-weight:200; font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(245,237,216,0.35); text-decoration:none; transition:color 0.3s; }
.footer-social a:hover { color:var(--sand); }
@media (max-width:900px) { footer{padding:48px 24px 36px} .footer-top{grid-template-columns:1fr 1fr;gap:40px} }
@media (max-width:600px) { .footer-top{grid-template-columns:1fr} }

/* SCROLL REVEAL */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.8s ease,transform 0.8s ease; }
.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; }
