:root{--primary:#a1765f;--secondary:#a0826d;--accent:#d4af37;--dark:#2c2416;--light:#f5f1e8;--white:#fff;--text-dark:#2c2416;--text-light:#f5f1e8;--header-offset:140px}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;width:100%}body,html{overflow-x:hidden}body{font-family:Georgia,Times New Roman,serif;color:var(--text-dark);line-height:1.8;background:#fff;-webkit-text-size-adjust:100%}header{position:fixed;top:0;width:100%;background:transparent;-webkit-backdrop-filter:none;backdrop-filter:none;z-index:1000;transition:all .3s ease;box-shadow:none;border-bottom:1px solid transparent}header.scrolled{background:hsla(0,0%,100%,.98);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);box-shadow:0 2px 10px rgba(0,0,0,.08);border-bottom:1px solid rgba(161,118,95,.1)}nav{max-width:1400px;width:100%;margin:0 auto;padding:1rem 3rem;display:flex;justify-content:space-between;align-items:center;box-sizing:border-box}.logo{font-size:1.5rem;font-weight:600;color:var(--white);text-decoration:none;letter-spacing:3px;font-family:Georgia,serif;cursor:pointer;transition:all .3s ease;text-shadow:0 2px 8px rgba(0,0,0,.3)}header.scrolled .logo{color:var(--primary);text-shadow:none}.logo:hover{color:hsla(0,0%,100%,.8)}header.scrolled .logo:hover{color:var(--accent)}.nav-links{display:flex;gap:1.5rem;list-style:none;align-items:center;flex-shrink:0}.nav-links a{color:var(--white);text-decoration:none;font-size:1.25rem;transition:all .3s ease;position:relative;font-weight:500;letter-spacing:.3px;cursor:pointer;padding:.5rem 0;text-shadow:0 2px 6px rgba(0,0,0,.3)}header.scrolled .nav-links a{color:var(--text-dark);text-shadow:none}.nav-links a:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--white);transition:width .3s ease}header.scrolled .nav-links a:after{background:var(--primary)}.nav-links a.active,.nav-links a:hover{color:hsla(0,0%,100%,.8)}header.scrolled .nav-links a.active,header.scrolled .nav-links a:hover{color:var(--primary)}.nav-links a.active:after,.nav-links a:hover:after{width:100%}.nav-links a.booking-link{display:inline-block;padding:.7rem 1.8rem;background:var(--primary);color:var(--white);border-radius:4px;border:none;transition:all .3s ease;text-transform:uppercase;letter-spacing:1px;font-size:1rem;font-weight:600;margin-left:.5rem;text-shadow:none}.nav-links a.booking-link:hover{background:var(--dark);transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.15)}.nav-links a.booking-link:after{display:none}.menu-toggle{display:none;flex-direction:column;cursor:pointer;gap:5px;justify-content:center;align-items:center;position:relative;width:30px;height:24px}.menu-toggle span{width:25px;height:2px;background:var(--white);transition:all .3s ease;position:absolute}header.scrolled .menu-toggle span{background:var(--primary)}.menu-toggle span:first-child{top:0}.menu-toggle span:nth-child(2){top:50%;transform:translateY(-50%)}.menu-toggle span:nth-child(3){bottom:0}.menu-toggle.active span:first-child{top:50%;transform:translateY(-50%) rotate(45deg)}.menu-toggle.active span:nth-child(2){opacity:0}.menu-toggle.active span:nth-child(3){bottom:50%;transform:translateY(50%) rotate(-45deg)}.hero{height:100vh;position:relative;display:flex;align-items:center;justify-content:center;width:100%;max-width:100%;padding:0;box-sizing:border-box}.hero,.hero-bg{overflow:hidden}.hero-bg{position:absolute;inset:0;background:#1a1612}.hero-video{position:absolute;top:50%;left:50%;min-width:100%;min-height:100%;width:auto;height:auto;transform:translate(-50%,-50%) scale(.85);object-fit:cover;transition:opacity .6s ease-in-out;z-index:0}.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(44,36,22,.6),rgba(44,36,22,.4));z-index:1}.hero-content{position:relative;z-index:2;width:100%;max-width:900px;margin:0 auto;padding:2rem;box-sizing:border-box;text-align:center;color:var(--white);left:0;right:0}.hero-cta-floating{display:none}.hero h1{font-size:clamp(3rem,8vw,5.5rem);margin-bottom:1.5rem;font-weight:300;letter-spacing:8px;line-height:1.2;color:var(--white);text-shadow:0 4px 20px rgba(0,0,0,.3)}.hero-subtitle{font-size:clamp(1.2rem,3vw,1.8rem);margin-bottom:1rem;font-weight:300;letter-spacing:2px;color:var(--light);text-shadow:0 2px 10px rgba(0,0,0,.3)}.hero-description{font-size:clamp(1rem,2vw,1.2rem);margin-bottom:2rem;color:var(--light);max-width:700px;margin-left:auto;margin-right:auto;line-height:1.8;opacity:.95;text-shadow:0 2px 8px rgba(0,0,0,.2)}.hero-buttons{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap;margin-top:2rem}.btn{display:inline-block;padding:1rem 2.5rem;background:var(--primary);color:var(--white);text-decoration:none;border-radius:4px;transition:all .3s ease;border:none;font-size:.95rem;letter-spacing:1px;text-transform:uppercase;font-weight:600;cursor:pointer;box-shadow:0 4px 15px rgba(0,0,0,.2)}.btn:hover{background:var(--dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.3)}.btn.btn-secondary{background:transparent;border:2px solid var(--white);box-shadow:none}.btn.btn-secondary:hover{background:var(--white);color:var(--dark);border-color:var(--white)}.scroll-indicator{position:absolute;bottom:3rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.5rem;color:var(--white);opacity:.8;animation:bounce 2s infinite}@keyframes bounce{0%,to{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-10px)}}.scroll-indicator i{font-size:1.5rem}.page{display:none}.page.active{display:block}section{padding:4rem 3rem;max-width:1400px;width:100%;margin:0 auto;opacity:0;transform:translateY(30px);transition:all 1s ease;scroll-margin-top:90px;overflow-x:clip}#galeria{scroll-margin-top:var(--header-offset)}#galeria:target:before{content:"";display:block;height:var(--header-offset);margin-top:calc(var(--header-offset) * -1)}section.visible{opacity:1;transform:translateY(0)}.section-title{font-size:clamp(1.6rem,4.2vw,3rem);margin-bottom:2rem;text-align:center;color:var(--primary);position:relative;font-weight:300;letter-spacing:3px}.section-title:after{content:"";display:block;width:60px;height:1px;background:var(--primary);margin:1.5rem auto 0}.section-header{text-align:center;margin-bottom:2.5rem}.section-badge{display:inline-block;padding:.35rem 1rem;background:rgba(139,115,85,.08);border:1px solid rgba(139,115,85,.25);letter-spacing:1.5px;text-transform:uppercase;margin-bottom:1rem;color:var(--primary);font-size:.8rem}.section-subtitle{font-size:1.05rem;opacity:.8;max-width:800px;margin:.5rem auto 0;line-height:1.9}.about-bg{background:var(--light);position:relative}.about-bg:before{content:"";position:absolute;inset:0;background-image:url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1" fill="rgba(139, 115, 85, 0.08)" /></svg>');opacity:.4}.about-content{display:grid;grid-template-columns:1fr 1fr;grid-gap:clamp(1.5rem,4vw,4rem);gap:clamp(1.5rem,4vw,4rem);align-items:center;max-width:1200px;margin:0 auto;position:relative;z-index:1}.about-image{position:relative;height:min(60vh,520px);overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.15);background:var(--white)}.about-image img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.about-image:hover img{transform:scale(1.05)}.about-text h3{font-size:2rem;color:var(--primary);margin-bottom:1rem;font-weight:400;letter-spacing:1px}.about-text p{font-size:1.05rem;line-height:1.9;margin-bottom:.8rem;opacity:.9}.about-stats{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:1.5rem;gap:1.5rem;margin-top:1.5rem}.stat-item{text-align:center;padding:1.25rem;background:var(--white);border-left:3px solid var(--primary);box-shadow:0 8px 24px rgba(0,0,0,.06)}.stat-number{font-size:2rem;font-weight:400;color:var(--primary);margin-bottom:.3rem}.stat-label{font-size:.85rem;opacity:.75;text-transform:uppercase;letter-spacing:1px}.location-content{display:grid;grid-template-columns:1fr 1fr;grid-gap:clamp(1.5rem,4vw,4rem);gap:clamp(1.5rem,4vw,4rem);align-items:center}.location-text{font-size:1.1rem;line-height:2;color:var(--text-dark);opacity:.9}.location-text p{margin-bottom:1rem}.map-container{height:min(60vh,450px);border-radius:0;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.15)}.map-container iframe{width:100%;height:100%;border:none;filter:grayscale(.3)}.location-image{height:min(60vh,450px);box-shadow:0 20px 60px rgba(0,0,0,.15);position:relative;background:var(--white)}.gallery-section{background:var(--light);padding:4rem 3rem;max-width:100%;overflow-x:hidden}.gallery-section .section-header{margin-bottom:2.5rem}.gallery-container{max-width:1050px;margin:0 auto}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:100px;grid-gap:.6rem;gap:.6rem}.gallery-item{position:relative;overflow:hidden;cursor:pointer;background:var(--white);border-radius:16px;box-shadow:0 8px 24px rgba(0,0,0,.1);transition:all .4s cubic-bezier(.4,0,.2,1);grid-column:span 1}.gallery-item,.gallery-item.h-1{grid-row:span 1}.gallery-item.h-2{grid-row:span 2}.gallery-item.h-3{grid-row:span 3}.gallery-item.h-4{grid-row:span 4}.gallery-item.h-5{grid-row:span 5}.gallery-item.h-6{grid-row:span 6}.gallery-item.h-7{grid-row:span 7}.gallery-item.h-8{grid-row:span 8}.gallery-item.large{grid-column:span 2;grid-row:span 4}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease;display:block}.gallery-item:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.18)}.gallery-item:hover img{transform:scale(1.08)}.gallery-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(44,36,22,.92),rgba(44,36,22,.5) 50%,transparent);display:flex;flex-direction:column;justify-content:flex-end;padding:1.8rem;opacity:0;transition:opacity .4s ease;color:var(--text-light)}.gallery-item:hover .gallery-overlay{opacity:1}.gallery-overlay h3{font-size:1.25rem;margin-bottom:.3rem;font-weight:500;letter-spacing:.4px}.gallery-overlay p{font-size:.9rem;opacity:.95}.amenities-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));grid-gap:clamp(.9rem,3vw,1.8rem);gap:clamp(.9rem,3vw,1.8rem);margin-top:2.5rem}.amenity-card{background:linear-gradient(180deg,hsla(0,0%,100%,.92),hsla(42,39%,94%,.92));padding:1.4rem 1.6rem;border-radius:14px;text-align:left;box-shadow:0 10px 30px rgba(17,15,12,.06);transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;border:1px solid rgba(161,118,95,.06);display:flex;flex-direction:column;gap:.5rem;min-height:120px;position:relative;overflow:hidden}.amenity-card:before{content:"";position:absolute;left:0;top:8px;bottom:8px;width:6px;background:linear-gradient(180deg,var(--primary),var(--accent));border-radius:8px}.amenity-card:hover{transform:translateY(-6px);box-shadow:0 25px 60px rgba(17,15,12,.12);border-color:rgba(161,118,95,.14)}.amenity-card i{font-size:1.9rem;color:var(--primary);margin-bottom:.5rem;opacity:.95}.amenity-card h3{font-size:1.05rem;margin:0;color:var(--dark);font-weight:600;letter-spacing:.2px;padding-left:8px}.amenity-card p{font-size:.95rem;line-height:1.6;color:rgba(44,36,22,.78);margin:0;padding-left:8px}.pricing-card{transition:transform .3s ease,box-shadow .3s ease}.pricing-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,.25)!important}.pricing-grid{margin-bottom:3rem}@media (max-width:768px){.pricing-grid{grid-template-columns:1fr!important}}.amenity-card.flip{padding:0;border:none;box-shadow:none;perspective:1000px}.amenity-card-inner{position:relative;width:100%;height:100%;transform-style:preserve-3d;transition:transform .7s cubic-bezier(.4,.2,.2,1)}.amenity-card.flip:hover .amenity-card-inner{transform:rotateY(180deg)}.amenity-back,.amenity-front{position:relative;backface-visibility:hidden;-webkit-backface-visibility:hidden;min-height:260px;border:1px solid rgba(139,115,85,.1);box-shadow:0 10px 40px rgba(0,0,0,.08);border-radius:14px}.amenity-front{background:linear-gradient(135deg,hsla(0,0%,100%,.98),hsla(42,39%,94%,.95));padding:3rem 2rem;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;transition:box-shadow .3s ease}.amenity-card.flip:hover .amenity-front{box-shadow:0 15px 50px rgba(0,0,0,.15)}.amenity-front i{font-size:3.5rem;color:var(--primary);margin-bottom:1rem;opacity:.9;transition:transform .3s ease}.amenity-card.flip:hover .amenity-front i{transform:scale(1.1)}.amenity-front h3{font-size:1.3rem;margin:0;color:var(--dark);font-weight:600;letter-spacing:.5px;padding:0}.amenity-front p{font-size:.95rem;line-height:1.6;color:rgba(44,36,22,.75);margin:0;padding:0 1rem}.amenity-back{position:absolute;inset:0;transform:rotateY(180deg);overflow:hidden}.equipment-section{background:linear-gradient(135deg,hsla(0,0%,100%,.95),hsla(42,39%,94%,.85));padding:4rem 3rem}.equipment-categories{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:2rem;gap:2rem;margin-top:2rem;max-width:1400px;margin-left:auto;margin-right:auto}.equipment-category{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,.06);transition:all .4s ease;border:1px solid rgba(161,118,95,.08)}.equipment-category:hover{transform:translateY(-8px);box-shadow:0 20px 60px rgba(0,0,0,.12)}.category-header{background:linear-gradient(135deg,var(--primary),var(--secondary));padding:1.5rem;display:flex;align-items:center;gap:1rem;color:var(--white)}.category-header i{font-size:2rem;opacity:.9}.category-header h3{font-size:1.3rem;font-weight:500;letter-spacing:.5px;margin:0}.equipment-items{padding:1.2rem;display:flex;flex-direction:column;gap:.8rem}.equipment-item{display:flex;gap:1.2rem;padding:1.2rem;background:hsla(42,39%,94%,.3);border-radius:12px;transition:all .3s ease;border-left:3px solid transparent}.equipment-item:hover{background:hsla(42,39%,94%,.6);border-left-color:var(--primary);transform:translateX(5px)}.equipment-icon{flex-shrink:0;width:50px;height:50px;background:linear-gradient(135deg,rgba(161,118,95,.1),hsla(25,21%,53%,.1));border-radius:12px;display:flex;align-items:center;justify-content:center;transition:all .3s ease}.equipment-item:hover .equipment-icon{background:linear-gradient(135deg,var(--primary),var(--secondary));transform:rotate(5deg) scale(1.1)}.equipment-icon i{font-size:1.5rem;color:var(--primary);transition:color .3s ease}.equipment-item:hover .equipment-icon i{color:var(--white)}.equipment-content{flex:1 1}.equipment-content h4{font-size:1.05rem;font-weight:600;color:var(--dark);margin:0 0 .3rem;letter-spacing:.3px}.equipment-content p{font-size:.9rem;line-height:1.5;color:rgba(44,36,22,.75);margin:0}@media (max-width:768px){.equipment-categories{grid-template-columns:1fr;gap:2rem}.equipment-section{padding:4rem 1.5rem}}.attractions-bg{background:var(--light)}.attractions-grid{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:clamp(1.25rem,3.5vw,3rem);gap:clamp(1.25rem,3.5vw,3rem)}.attraction-card{background:var(--white);border-radius:0;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,.08);transition:all .4s ease}.attraction-card:hover{transform:translateY(-8px);box-shadow:0 15px 50px rgba(0,0,0,.12)}.attraction-card img{width:100%;height:280px;object-fit:cover;transition:transform .6s ease}.attraction-card:hover img{transform:scale(1.05)}.attraction-card-content{padding:2.5rem}.attraction-card h3{font-size:1.5rem;margin-bottom:1rem;color:var(--primary);font-weight:400;letter-spacing:1px}.attraction-card p{line-height:1.8;opacity:.85}.faq-container{max-width:900px;margin:0 auto}.faq-item{background:var(--white);margin-bottom:1.5rem;border-radius:0;overflow:hidden;box-shadow:0 5px 20px rgba(0,0,0,.06);border:1px solid rgba(139,115,85,.1)}.faq-question{padding:2rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:var(--white);transition:all .3s ease}.faq-question:hover{background:var(--light)}.faq-question h3{font-size:1.15rem;color:var(--primary);font-weight:400;letter-spacing:.5px}.faq-question i{color:var(--primary);transition:transform .3s ease}.faq-item.active .faq-question i{transform:rotate(180deg)}.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;padding:0 2rem;background:var(--light)}.faq-item.active .faq-answer{max-height:500px;padding:2rem}.faq-answer p{line-height:1.8;opacity:.85}.highlights-section{background:linear-gradient(135deg,hsla(42,39%,94%,.85),hsla(42,39%,94%,.75)),url("/_next/static/media/Dry Leaf Wallpaper.050edba0.webp") 50%/cover fixed;position:relative;overflow:hidden;padding:5rem 3rem}.highlights-section:before{top:-50%;right:-100px;width:500px;height:500px;background:radial-gradient(circle,rgba(161,118,95,.08) 0,transparent 70%)}.highlights-section:after,.highlights-section:before{content:"";position:absolute;border-radius:50%;z-index:0}.highlights-section:after{bottom:-100px;left:-150px;width:400px;height:400px;background:radial-gradient(circle,rgba(212,175,55,.06) 0,transparent 70%)}.highlight-item,.section-header{position:relative;z-index:1}.highlight-item{display:grid;grid-template-columns:1fr 1fr;grid-gap:0;gap:0;align-items:center;margin-bottom:4rem}.highlight-item-left{grid-template-columns:1fr 1fr}.highlight-item-left>.highlight-text{transform:translateX(3.5rem);z-index:2}.highlight-item-right{grid-template-columns:1fr 1fr}.highlight-item-right>.highlight-text{transform:translateX(-3.5rem);z-index:2}.highlight-item-right>.highlight-image{order:-1}.highlight-text{padding:2rem 2rem 2rem 2.5rem;background:var(--white);box-shadow:0 25px 80px rgba(0,0,0,.12);border:2px solid rgba(161,118,95,.08);border-radius:16px;position:relative;overflow:hidden}.highlight-text:before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--primary),var(--accent));z-index:1}.highlight-accent{position:absolute;top:0;left:0;width:5px;height:100%;background:linear-gradient(180deg,var(--primary) 0,var(--accent) 100%);border-radius:0}.highlight-text h3{font-size:1.85rem;color:var(--primary);margin-bottom:1.5rem;font-weight:300;letter-spacing:1px;display:flex;align-items:center;gap:1.2rem;position:relative;padding-bottom:1.4rem}.highlight-text h3:after{content:"";position:absolute;bottom:0;left:0;width:60px;height:3px;background:linear-gradient(90deg,var(--accent) 0,transparent 100%);border-radius:2px}.highlight-text h3 i{font-size:1.8rem;min-width:40px;color:var(--accent)}.highlight-text p{font-size:1rem;line-height:1.95;opacity:.82;margin-top:1rem;letter-spacing:.4px;font-weight:300}.highlight-image{position:relative;height:400px;overflow:hidden;box-shadow:0 25px 80px rgba(0,0,0,.16);border:1px solid rgba(161,118,95,.1);border-radius:16px}.highlight-image img{width:100%;height:100%;object-fit:cover}.contact-content{display:grid;grid-template-columns:1fr 1fr;grid-gap:4rem;gap:4rem}.contact-info{display:flex;flex-direction:column;gap:2.5rem}.contact-item{display:flex;align-items:flex-start;gap:1.5rem}.contact-item i{font-size:1.8rem;color:var(--primary);margin-top:.3rem}.contact-item div h3{font-size:1.2rem;color:var(--primary);margin-bottom:.5rem;font-weight:400;letter-spacing:1px}.contact-item div p{opacity:.85}.booking-form{background:var(--white);padding:2rem;border:1px solid rgba(139,115,85,.15);box-shadow:0 10px 30px rgba(0,0,0,.06)}.booking-form .form-group{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1rem}.booking-form label{font-size:.9rem;color:var(--primary);letter-spacing:.5px}.booking-form input,.booking-form textarea{padding:.9rem 1rem;border:1px solid rgba(139,115,85,.3);outline:none;font-size:1rem;transition:border-color .2s ease,box-shadow .2s ease}.booking-form input:focus,.booking-form textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(139,115,85,.15)}.booking-form textarea{min-height:140px;resize:vertical}.booking-form .btn-submit{margin-top:.5rem;padding:.9rem 1.2rem;background:var(--primary);color:var(--white);border:1px solid var(--primary);text-transform:uppercase;letter-spacing:1px;cursor:pointer;transition:all .25s ease}.booking-form .btn-submit:hover{background:transparent;color:var(--primary)}.modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;z-index:2000;padding:1rem}.modal{width:100%;max-width:640px;background:var(--white);border:1px solid rgba(139,115,85,.2);box-shadow:0 40px 80px rgba(0,0,0,.25);animation:fadeInUp .3s ease}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;border-bottom:1px solid rgba(139,115,85,.15)}.modal-title{color:var(--primary);font-weight:400;letter-spacing:1px}.modal-close{background:transparent;border:none;font-size:1.2rem;cursor:pointer;color:var(--primary)}.modal-body{padding:1.25rem}footer{background:var(--dark);color:var(--text-light);padding:4rem 3rem 2rem}.footer-map{width:100%;max-width:1400px;height:450px;margin:0 auto 3rem;border-radius:0;overflow:hidden}.footer-map iframe{width:100%;height:100%;border:none;filter:grayscale(.5)}.footer-content{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;grid-gap:3rem;gap:3rem;padding-top:1rem;padding-bottom:2rem}.footer-section h3{color:var(--text-light);font-size:1.2rem;margin-bottom:1rem;font-weight:400;letter-spacing:1px}.footer-section p{line-height:1.8;opacity:.8;margin-bottom:1rem}.footer-links{list-style:none}.footer-links li{margin-bottom:.6rem}.footer-links a{color:var(--text-light);text-decoration:none;opacity:.75;transition:all .3s ease}.footer-links a:hover{color:var(--accent);opacity:1;transform:translateX(4px)}.contact-info-footer{list-style:none}.contact-info-footer li{margin-bottom:.7rem;display:flex;align-items:center;gap:.6rem;opacity:.8}.contact-info-footer i{color:var(--accent)}.footer-social{display:flex;gap:1rem;margin-top:1rem}.footer-social a{color:var(--text-light);font-size:1.2rem;border:1px solid hsla(0,0%,100%,.2);padding:.6rem;display:inline-flex;transition:all .3s ease}.footer-social a:hover{color:var(--dark);background:var(--accent);border-color:var(--accent);transform:translateY(-3px)}.footer-bottom{max-width:1400px;margin:0 auto;padding-top:1.5rem;border-top:1px solid hsla(0,0%,100%,.1);display:flex;justify-content:space-between;align-items:center;opacity:.75;font-size:.9rem}.footer-bottom-links{list-style:none;display:flex;gap:1.5rem}.footer-bottom-links a{color:var(--text-light);text-decoration:none;opacity:.85}.footer-bottom-links a:hover{color:var(--accent)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}@media (max-width:1024px){nav{padding:1rem 2rem}.nav-links{gap:1.5rem}.hero-content{padding:2rem 1.5rem}.hero h1{font-size:4rem;letter-spacing:5px}.about-content{grid-template-columns:1fr;gap:3rem}.about-image{height:400px}.about-stats{grid-template-columns:repeat(3,1fr);gap:1rem}.equipment-categories{grid-template-columns:1fr;gap:2rem}.amenities-grid{grid-template-columns:repeat(2,1fr)}.highlight-item{grid-template-columns:1fr;gap:1.5rem;margin-bottom:4rem;display:flex;flex-direction:column}.highlight-item-left .highlight-text{order:1}.highlight-item-left .highlight-image{order:2}.highlight-item-right .highlight-text{order:1}.highlight-item-right .highlight-image{order:2}.highlight-text{padding:2.5rem}.gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:90px;gap:.5rem}.gallery-item.large{grid-column:span 2;grid-row:span 3}.footer-content{grid-template-columns:repeat(2,1fr);gap:2rem}.footer-map{height:350px}.booking-page-section{padding:6rem 2rem 3rem!important}.pricing-grid{grid-template-columns:repeat(2,1fr)!important}}@media (max-width:768px){.menu-toggle{display:flex}nav{padding:.9rem 1.5rem}.logo{font-size:1.3rem;letter-spacing:2px}.nav-links{position:fixed;top:65px;left:-100%;width:100%;height:calc(100vh - 65px);background:var(--white);flex-direction:column;align-items:center;justify-content:center;transition:left .3s ease;box-shadow:0 4px 20px rgba(0,0,0,.1);z-index:999;gap:2.5rem}.nav-links.active{left:0}.nav-links a{font-size:1.2rem;padding:0}.nav-links a.booking-link{padding:.8rem 2rem;font-size:.9rem;margin-left:0;margin-top:1rem}.hero{height:85vh}.hero-video{min-width:100%;min-height:100%}.hero-content{width:100%;max-width:100%;padding:2rem;margin:0 auto;left:0;right:0}.hero h1{font-size:2.5rem;letter-spacing:4px;margin-bottom:1rem}.hero-subtitle{font-size:1.1rem;margin-bottom:.8rem}.hero-description{font-size:.95rem;margin-bottom:2rem;max-width:100%}.hero-buttons{gap:1rem;flex-direction:column;width:100%;align-items:center}.btn{padding:.9rem 2rem;font-size:.85rem;width:100%;max-width:280px}.scroll-indicator{display:none}section{padding:3rem 1.5rem}.section-title{font-size:1.8rem;margin-bottom:1.5rem;letter-spacing:2px}.section-title:after{margin:1rem auto 0}.section-header{margin-bottom:2rem}.section-badge{font-size:.75rem;padding:.3rem .8rem}.section-subtitle{font-size:.95rem;line-height:1.7}.about-content{grid-template-columns:1fr;gap:2rem}.about-image{height:300px}.about-text h3{font-size:1.5rem;margin-bottom:1rem}.about-text p{font-size:.95rem;line-height:1.7}.about-stats{grid-template-columns:1fr;gap:1rem;max-width:300px;margin:1.5rem auto 0}.stat-item{padding:1rem}.stat-number{font-size:1.8rem}.stat-label{font-size:.8rem}.highlights-section{padding:3rem 1.5rem}.highlight-item{grid-template-columns:1fr;gap:1.5rem;margin-bottom:3rem;display:flex;flex-direction:column}.highlight-item-left .highlight-text{order:1;transform:none}.highlight-item-left .highlight-image{order:2}.highlight-item-right .highlight-text{order:1;transform:none}.highlight-item-right .highlight-image{order:2}.highlight-image{height:280px}.highlight-text{padding:2rem 1.5rem}.highlight-text h3{font-size:1.3rem;gap:.8rem;padding-bottom:1rem}.highlight-text h3 i{font-size:1.5rem}.highlight-text p{font-size:.9rem;line-height:1.7}.highlight-accent{width:4px}.equipment-section{padding:3rem 1.5rem}.equipment-categories{grid-template-columns:1fr;gap:1.5rem;margin-top:2rem}.equipment-category{border-radius:16px}.category-header{padding:1.2rem}.category-header h3{font-size:1.1rem}.category-header i{font-size:1.5rem}.equipment-items{padding:1rem;gap:.7rem}.equipment-item{padding:1rem;flex-direction:column;gap:.8rem;text-align:center}.equipment-item:hover{transform:translateX(0)}.equipment-icon{width:45px;height:45px;margin:0 auto}.equipment-icon i{font-size:1.3rem}.equipment-content h4{font-size:1rem}.equipment-content p{font-size:.85rem}.gallery-section{padding:3rem 1.5rem}.gallery-grid{grid-template-columns:1fr;grid-auto-rows:75px;gap:.4rem}.gallery-item{border-radius:12px;grid-row:span 4}.gallery-item.h-1,.gallery-item.h-2,.gallery-item.h-3,.gallery-item.h-4,.gallery-item.h-5,.gallery-item.h-6,.gallery-item.h-7,.gallery-item.h-8,.gallery-item.large{grid-column:span 1;grid-row:span 4}.gallery-overlay{padding:1.2rem}.gallery-overlay h3{font-size:1.1rem}.gallery-overlay p{font-size:.85rem}.amenities-grid{grid-template-columns:1fr;gap:1rem}.amenity-card{padding:1.2rem 1.4rem;min-height:100px}.amenity-card h3{font-size:1rem}.amenity-card p{font-size:.9rem}.amenity-card.flip .amenity-front{padding:2rem 1.5rem;min-height:220px}.amenity-front i{font-size:3rem;margin-bottom:.8rem}.amenity-front h3{font-size:1.15rem}.amenity-front p{font-size:.9rem;padding:0 .5rem}.attractions-grid{grid-template-columns:1fr;gap:1.5rem}.attraction-card img{height:220px}.attraction-card-content{padding:1.8rem}.attraction-card h3{font-size:1.3rem}.attraction-card p{font-size:.95rem}.faq-item{margin-bottom:1rem}.faq-question{padding:1.5rem}.faq-question h3{font-size:1rem}.faq-answer{padding:1.5rem}.faq-answer p{font-size:.95rem}.contact-content,.location-content{grid-template-columns:1fr;gap:2rem}.contact-info{gap:1.5rem}.contact-item{flex-direction:column;text-align:center}.contact-item i{font-size:2rem}.location-image,.map-container{height:300px}.booking-form{padding:1.5rem}.booking-form .form-group{margin-bottom:1rem}.booking-form input,.booking-form textarea{padding:.8rem;font-size:.95rem}.booking-form .btn-submit{padding:.85rem 1.1rem;font-size:.9rem}.modal{max-width:calc(100% - 2rem)}.modal-header{padding:1rem}.modal-title{font-size:1.1rem}.modal-body{padding:1rem}.footer-map{height:280px;margin-bottom:2rem}.footer-content{grid-template-columns:1fr;gap:2rem;text-align:center}.footer-section h3{font-size:1.1rem;margin-bottom:.8rem}.footer-section p{font-size:.95rem}.contact-info-footer,.footer-links{text-align:center}.contact-info-footer li,.footer-social{justify-content:center}.footer-bottom{flex-direction:column;gap:1rem;text-align:center}.footer-bottom-links{flex-direction:column;gap:.8rem}.lightbox-overlay{padding:1rem}.lightbox-content{max-width:90vw;max-height:80vh}.lightbox-close{top:10px;right:10px;width:40px;height:40px;font-size:1.2rem}.lightbox-nav{padding:.5rem .7rem;font-size:1.2rem}.lightbox-nav.prev{left:10px}.lightbox-nav.next{right:10px}:root{--header-offset:110px}.booking-page-section{padding:5rem 1.5rem 3rem!important}.booking-intro{font-size:.95rem!important;margin-bottom:2.5rem!important}.booking-intro p{font-size:.95rem!important;margin-bottom:1rem!important}.booking-footer{font-size:.95rem!important;margin-top:2rem!important}.booking-footer p{font-size:.9rem!important}}.lightbox-overlay{position:fixed;inset:0;background:rgba(0,0,0,.95);z-index:3000;padding:2rem;animation:fadeIn .3s ease}.lightbox-content,.lightbox-overlay{display:flex;align-items:center;justify-content:center}.lightbox-content{position:relative;width:auto;height:auto;max-width:85vw;max-height:85vh}.lightbox-close{position:fixed;top:20px;right:20px;background:hsla(0,0%,100%,.1);border:2px solid hsla(0,0%,100%,.5);color:#fff;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;cursor:pointer;z-index:3100;transition:all .3s ease}.lightbox-close:hover{background:hsla(0,0%,100%,.2);transform:rotate(90deg)}.lightbox-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.9);z-index:3000;display:flex;align-items:center;justify-content:center;padding:1rem}.lightbox-img-wrap{position:relative;width:100%;height:100%;max-width:1200px;max-height:90vh}.lightbox-nav{position:fixed;top:50%;transform:translateY(-50%);background:hsla(0,0%,100%,.08);color:#fff;border:1px solid hsla(0,0%,100%,.4);padding:.6rem .8rem;cursor:pointer;z-index:3100}.lightbox-nav.prev{left:20px}.lightbox-nav.next{right:20px}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@media (max-width:480px){.hero h1{font-size:2rem;letter-spacing:2px}.hero-subtitle{font-size:1rem}.hero-description{font-size:.9rem;max-width:100%}.hero-content{width:100%;max-width:100%;padding:1.5rem;margin:0 auto;left:0;right:0}.section-title{font-size:1.5rem}.logo{font-size:1.2rem;letter-spacing:2px}nav{padding:.8rem 1rem}.nav-links{gap:2rem}section{padding:2.5rem 1rem}.btn{padding:.85rem 1.8rem;font-size:.8rem}.equipment-item{padding:.8rem}.equipment-icon{width:40px;height:40px}.equipment-icon i{font-size:1.2rem}.highlight-image{height:240px}.highlight-text{padding:1.5rem 1rem}.highlight-text h3{font-size:1.2rem}.gallery-grid{grid-auto-rows:65px}.stat-number{font-size:1.5rem}footer{padding:3rem 1.5rem 1.5rem}.footer-map{height:240px}.pricing-grid{grid-template-columns:1fr!important;gap:1rem!important}.pricing-card{padding:2rem 1.5rem!important}}