:root{
--black:#0B0B0B;
--black-light:#121212;
--gold:#D4AF37;
--champagne:#E8D8A8;
--white:#ffffff;
--text:#d8d8d8;
--glass:rgba(255,255,255,.06);
--border:rgba(255,255,255,.12);
--radius:24px;
--transition:.5s ease;
--shadow:0 20px 80px rgba(0,0,0,.5);
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
background:var(--black);
color:var(--white);
font-family:'Inter',sans-serif;
overflow-x:hidden;
}
body.loading{
overflow:hidden;
}
body.no-scroll{
overflow:hidden;
}
a{
text-decoration:none;
color:inherit;
}
img{
max-width:100%;
display:block;
}
.container{
width:min(1400px,92%);
margin:auto;
}
section{
position:relative;
padding:120px 0;
}
.gold-text{
background:linear-gradient(90deg,var(--gold),#fff4bf,var(--gold));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
.section-tag{
color:var(--gold);
letter-spacing:3px;
text-transform:uppercase;
font-size:.8rem;
margin-bottom:20px;
}
.section-title{
font-family:'Cormorant Garamond',serif;
font-size:clamp(2.8rem,6vw,5rem);
line-height:1;
margin-bottom:25px;
}
.section-desc{
max-width:700px;
color:var(--text);
line-height:1.9;
font-size:1.05rem;
}
.loading-screen{
position:fixed;
inset:0;
background:#050505;
z-index:99999;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
}
.loader-logo{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
letter-spacing:2px;
}
.loader-line{
width:250px;
height:2px;
background:#222;
margin-top:20px;
overflow:hidden;
}
.loader-line span{
display:block;
height:100%;
width:0%;
background:linear-gradient(90deg,var(--gold),#fff);
animation:loadbar 2.8s forwards;
}
@keyframes loadbar{
100%{width:100%;}
}
.scroll-progress{
position:fixed;
top:0;
left:0;
height:3px;
width:0%;
background:linear-gradient(90deg,var(--gold),#fff0a8);
z-index:9999;
}
.cursor{
width:20px;
height:20px;
border:1px solid var(--gold);
border-radius:50%;
position:fixed;
pointer-events:none;
z-index:99999;
transform:translate(-50%,-50%);
transition:width .3s,height .3s;
mix-blend-mode:screen;
}
.cursor.active{
width:50px;
height:50px;
}
.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:.4s;
}
.navbar.scrolled{
backdrop-filter:blur(20px);
background:rgba(5,5,5,.8);
border-bottom:1px solid rgba(255,255,255,.05);
}
.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 4%;
}
.logo{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
font-weight:700;
letter-spacing:1px;
}
.logo span{
color:var(--gold);
}
.nav-links{
display:flex;
gap:40px;
align-items:center;
}
.nav-links a{
font-size:.95rem;
position:relative;
}
.nav-links a:after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0%;
height:1px;
background:var(--gold);
transition:.4s;
}
.nav-links a:hover:after{
width:100%;
}
.nav-btn{
padding:14px 28px;
border-radius:50px;
border:1px solid rgba(212,175,55,.4);
background:rgba(212,175,55,.08);
backdrop-filter:blur(10px);
}
.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
padding:5px;
z-index:1001;
background:none;
border:none;
}
.hamburger span{
display:block;
width:26px;
height:2px;
background:var(--gold);
transition:.4s;
border-radius:2px;
}
.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
opacity:0;
}
.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}
.hero{
height:100vh;
min-height:900px;
display:flex;
align-items:center;
overflow:hidden;
}
.hero-video{
position:absolute;
inset:0;
}
.hero-video img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.3);
}
.hero-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at top right, rgba(212,175,55,.15), transparent 30%),
linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.85));
}
.hero-content{
position:relative;
z-index:3;
max-width:900px;
}
.hero-sub{
color:var(--gold);
letter-spacing:5px;
text-transform:uppercase;
margin-bottom:20px;
}
.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:clamp(4rem,9vw,8rem);
line-height:.95;
font-weight:600;
margin-bottom:30px;
}
.hero p{
max-width:700px;
font-size:1.15rem;
line-height:1.9;
color:#ddd;
margin-bottom:40px;
}
.hero-actions{
display:flex;
gap:20px;
flex-wrap:wrap;
}
.btn{
padding:18px 38px;
border-radius:60px;
display:inline-flex;
align-items:center;
justify-content:center;
transition:var(--transition);
font-weight:600;
cursor:pointer;
}
.btn-gold{
background:linear-gradient(135deg,var(--gold),#f7e7a1);
color:#111;
}
.btn-gold:hover{
transform:translateY(-4px);
box-shadow:0 20px 50px rgba(212,175,55,.35);
}
.btn-outline{
border:1px solid rgba(255,255,255,.15);
background:rgba(255,255,255,.04);
backdrop-filter:blur(12px);
}
.btn-outline:hover{
border-color:var(--gold);
}
.hero-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:80px;
}
.stat{
padding:30px;
border-radius:20px;
background:rgba(255,255,255,.04);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.06);
}
.stat h3{
font-size:2rem;
color:var(--gold);
margin-bottom:10px;
}
.stat p{
margin:0;
font-size:.9rem;
}
.particles{
position:absolute;
inset:0;
overflow:hidden;
pointer-events:none;
}
.particle{
position:absolute;
width:3px;
height:3px;
background:var(--gold);
border-radius:50%;
opacity:.6;
animation:floatParticle linear infinite;
}
@keyframes floatParticle{
0%{transform:translateY(120vh);opacity:0;}
20%{opacity:1;}
100%{transform:translateY(-20vh);opacity:0;}
}
.about{
background:
radial-gradient(circle at left top, rgba(212,175,55,.08), transparent 30%);
}
.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}
.about-card{
background:var(--glass);
backdrop-filter:blur(20px);
border:1px solid var(--border);
padding:50px;
border-radius:var(--radius);
box-shadow:var(--shadow);
}
.about-card h3{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
margin-bottom:20px;
}
.about-card p{
color:var(--text);
line-height:1.9;
}
.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:30px;
}
.feature-box{
padding:25px;
border-radius:18px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
transition:.4s;
}
.feature-box:hover{
transform:translateY(-8px);
border-color:rgba(212,175,55,.3);
}
.feature-box h4{
margin-bottom:10px;
color:var(--gold);
}
.about-image{
position:relative;
height:700px;
}
.about-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:30px;
}
.about-image:before{
content:"";
position:absolute;
inset:-20px;
border:1px solid rgba(212,175,55,.25);
border-radius:35px;
}
.reveal{
opacity:0;
transform:translateY(60px);
transition:1s cubic-bezier(.2,.8,.2,1);
}
.reveal.active{
opacity:1;
transform:none;
}
.luxury-gradient{
background:
radial-gradient(circle at top left,
rgba(212,175,55,.12),
transparent 35%),
radial-gradient(circle at bottom right,
rgba(212,175,55,.08),
transparent 40%);
}
.services{
padding-top:140px;
}
.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:70px;
}
.service-card{
position:relative;
overflow:hidden;
padding:45px;
border-radius:28px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
transition:.5s;
min-height:300px;
}
.service-card:hover{
transform:translateY(-12px);
border-color:rgba(212,175,55,.4);
box-shadow:0 25px 60px rgba(212,175,55,.12);
}
.service-hover{
position:absolute;
inset:0;
background:
radial-gradient(circle at top right,
rgba(212,175,55,.15),
transparent 40%);
opacity:0;
transition:.5s;
}
.service-card:hover .service-hover{
opacity:1;
}
.service-number{
font-size:1rem;
color:var(--gold);
margin-bottom:25px;
letter-spacing:3px;
}
.service-card h3{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
margin-bottom:18px;
}
.service-card p{
color:var(--text);
line-height:1.8;
}
.portfolio{
background:#090909;
}
.portfolio-heading{
text-align:center;
margin-bottom:70px;
}
.masonry-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
grid-auto-rows:250px;
gap:20px;
}
.masonry-item{
position:relative;
overflow:hidden;
border-radius:24px;
cursor:pointer;
}
.masonry-item.large{
grid-column:span 2;
grid-row:span 2;
}
.masonry-item.tall{
grid-row:span 2;
}
.masonry-item img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
filter:brightness(.7);
}
.masonry-item:hover img{
transform:scale(1.08);
filter:brightness(.95);
}
.portfolio-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:35px;
background:
linear-gradient(to top,
rgba(0,0,0,.85),
transparent);
transform:translateY(30px);
opacity:0;
transition:.5s;
}
.masonry-item:hover .portfolio-overlay{
transform:translateY(0);
opacity:1;
}
.portfolio-overlay h3{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
margin-bottom:8px;
}
.portfolio-overlay p{
color:#ddd;
}
.vip-experience{
background:
linear-gradient(180deg,
#0b0b0b 0%,
#111111 100%);
}
.experience-header{
text-align:center;
margin-bottom:80px;
}
.benefits-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-bottom:100px;
}
.benefit-card{
padding:40px;
border-radius:25px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
transition:.4s;
}
.benefit-card:hover{
transform:translateY(-10px);
border-color:rgba(212,175,55,.35);
}
.benefit-icon{
font-size:2rem;
color:var(--gold);
margin-bottom:20px;
}
.benefit-card h3{
margin-bottom:15px;
font-size:1.3rem;
}
.benefit-card p{
color:var(--text);
line-height:1.8;
}
.timeline-wrapper{
position:relative;
max-width:1000px;
margin:auto;
}
.timeline-line{
position:absolute;
left:50%;
top:0;
bottom:0;
width:1px;
background:
linear-gradient(
to bottom,
transparent,
var(--gold),
transparent);
}
.timeline-item{
position:relative;
display:flex;
margin:70px 0;
}
.timeline-item:nth-child(even){
justify-content:flex-end;
}
.timeline-content{
width:42%;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:24px;
backdrop-filter:blur(15px);
}
.timeline-content span{
color:var(--gold);
font-size:.85rem;
letter-spacing:2px;
}
.timeline-content h4{
font-size:1.4rem;
margin:12px 0;
}
.timeline-content p{
color:var(--text);
line-height:1.8;
}
.timeline-dot{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:18px;
height:18px;
border-radius:50%;
background:var(--gold);
box-shadow:
0 0 20px rgba(212,175,55,.6),
0 0 40px rgba(212,175,55,.4);
}
.testimonials-section{
background:
radial-gradient(circle at center,
rgba(212,175,55,.08),
transparent 45%);
}
.testimonials-header{
text-align:center;
margin-bottom:70px;
}
.testimonial-slider{
position:relative;
max-width:1000px;
margin:auto;
}
.testimonial-track{
position:relative;
overflow:hidden;
}
.testimonial-card{
display:none;
padding:70px;
border-radius:32px;
background:rgba(255,255,255,.05);
backdrop-filter:blur(22px);
border:1px solid rgba(255,255,255,.08);
text-align:center;
box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.testimonial-card.active{
display:block;
animation:fadeLuxury .7s ease;
}
@keyframes fadeLuxury{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:none;}
}
.quote-mark{
font-size:4rem;
color:var(--gold);
margin-bottom:20px;
}
.testimonial-card p{
font-size:1.2rem;
line-height:2;
max-width:750px;
margin:auto;
color:#ececec;
}
.testimonial-card h4{
margin-top:35px;
font-size:1.3rem;
}
.testimonial-card span{
color:var(--gold);
}
.testimonial-controls{
display:flex;
justify-content:center;
gap:15px;
margin-top:30px;
}
.testimonial-btn{
width:55px;
height:55px;
border-radius:50%;
border:none;
cursor:pointer;
background:rgba(255,255,255,.06);
color:white;
font-size:1.2rem;
transition:.4s;
}
.testimonial-btn:hover{
background:var(--gold);
color:black;
}
.achievement-section{
padding:80px 0;
background:#080808;
}
.achievement-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}
.achievement-card{
text-align:center;
padding:45px;
border-radius:25px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.06);
}
.achievement-card h3{
font-size:4rem;
font-family:'Cormorant Garamond',serif;
color:var(--gold);
}
.achievement-card p{
margin-top:12px;
color:#d4d4d4;
}
.packages-section{
background:
linear-gradient(180deg,
#080808,
#101010);
}
.packages-header{
text-align:center;
margin-bottom:70px;
}
.package-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}
.package-card{
position:relative;
padding:55px;
border-radius:30px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
transition:.5s;
}
.package-card:hover{
transform:translateY(-12px);
}
.featured-package{
border:1px solid rgba(212,175,55,.45);
box-shadow:
0 25px 80px rgba(212,175,55,.12);
}
.popular-tag{
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
padding:10px 25px;
background:linear-gradient(90deg,var(--gold),#fff1a7);
color:black;
font-size:.8rem;
font-weight:700;
border-radius:50px;
}
.package-label{
font-size:2rem;
font-family:'Cormorant Garamond',serif;
margin-bottom:15px;
}
.package-price{
font-size:3rem;
color:var(--gold);
margin-bottom:30px;
}
.package-card ul{
list-style:none;
margin-bottom:35px;
}
.package-card li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.06);
color:#ddd;
}
.team-section{
background:#090909;
}
.team-header{
text-align:center;
margin-bottom:70px;
}
.team-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.team-card{
text-align:center;
padding:25px;
border-radius:25px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
transition:.5s;
}
.team-card:hover{
transform:translateY(-10px);
}
.team-image{
height:380px;
overflow:hidden;
border-radius:20px;
margin-bottom:25px;
}
.team-image img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}
.team-card:hover img{
transform:scale(1.08);
}
.team-card h3{
font-family:'Cormorant Garamond',serif;
font-size:1.8rem;
margin-bottom:8px;
}
.team-card p{
color:var(--gold);
}
.faq-section{
background:#080808;
}
.faq-header{
text-align:center;
margin-bottom:70px;
}
.faq-wrapper{
max-width:1000px;
margin:auto;
}
.faq-item{
margin-bottom:20px;
border-radius:24px;
overflow:hidden;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
}
.faq-question{
padding:28px 35px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:1.05rem;
}
.faq-icon{
font-size:1.5rem;
color:var(--gold);
}
.faq-answer{
max-height:0;
overflow:hidden;
transition:.5s;
}
.faq-answer p{
padding:0 35px 30px;
color:#d6d6d6;
line-height:1.9;
}
.faq-item.active .faq-answer{
max-height:300px;
}
.contact-section{
background:
radial-gradient(circle at top right,
rgba(212,175,55,.08),
transparent 30%);
}
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}
.contact-info{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:40px;
}
.info-card{
padding:25px;
border-radius:20px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
}
.info-card h4{
color:var(--gold);
margin-bottom:10px;
}
.luxury-form{
padding:50px;
border-radius:30px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
}
.form-group{
margin-bottom:20px;
}
.luxury-form input,
.luxury-form textarea,
.luxury-form select{
width:100%;
padding:18px 20px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:16px;
color:white;
font-size:1rem;
outline:none;
}
.luxury-form select{
appearance:none;
background:rgba(255,255,255,.04) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23D4AF37'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 18px center;
}
.luxury-form select option{
background:#111;
color:white;
}
.form-btn{
width:100%;
}
.luxury-footer{
position:relative;
overflow:hidden;
background:#050505;
padding:100px 0 40px;
border-top:1px solid rgba(255,255,255,.05);
}
.footer-glow{
position:absolute;
top:-200px;
left:50%;
transform:translateX(-50%);
width:700px;
height:700px;
background:radial-gradient(circle,
rgba(212,175,55,.08),
transparent 65%);
pointer-events:none;
}
.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
margin-bottom:60px;
}
.footer-logo{
font-family:'Cormorant Garamond',serif;
font-size:3rem;
margin-bottom:20px;
}
.footer-logo span{
color:var(--gold);
}
.footer-text{
max-width:450px;
line-height:1.9;
color:#d3d3d3;
}
.footer-grid h4{
margin-bottom:20px;
color:var(--gold);
}
.footer-grid ul{
list-style:none;
}
.footer-grid li{
margin-bottom:12px;
color:#c9c9c9;
}
.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.05);
color:#9f9f9f;
}
.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
width:70px;
height:70px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(
135deg,
var(--gold),
#fff0a8
);
color:black;
z-index:999;
box-shadow:
0 15px 40px rgba(212,175,55,.4);
animation:floatWhatsapp 3s infinite ease-in-out;
}
@keyframes floatWhatsapp{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}
.back-to-top{
position:fixed;
right:25px;
bottom:110px;
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.1);
color:var(--gold);
font-size:1.3rem;
z-index:998;
cursor:pointer;
opacity:0;
pointer-events:none;
transition:.5s;
backdrop-filter:blur(10px);
}
.back-to-top.visible{
opacity:1;
pointer-events:auto;
}
.back-to-top:hover{
background:var(--gold);
color:black;
border-color:var(--gold);
}
.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.92);
z-index:100000;
display:flex;
align-items:center;
justify-content:center;
opacity:0;
pointer-events:none;
transition:.4s;
}
.lightbox.open{
opacity:1;
pointer-events:auto;
}
.lightbox-img{
max-width:90vw;
max-height:85vh;
border-radius:12px;
object-fit:contain;
}
.lightbox-close{
position:absolute;
top:30px;
right:40px;
font-size:2.5rem;
color:white;
cursor:pointer;
background:none;
border:none;
transition:.3s;
}
.lightbox-close:hover{
color:var(--gold);
transform:rotate(90deg);
}
.lightbox-prev,
.lightbox-next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:2rem;
color:white;
cursor:pointer;
background:none;
border:none;
padding:20px;
transition:.3s;
}
.lightbox-prev{
left:20px;
}
.lightbox-next{
right:20px;
}
.lightbox-prev:hover,
.lightbox-next:hover{
color:var(--gold);
}
.lightbox-counter{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
color:rgba(255,255,255,.6);
font-size:.9rem;
letter-spacing:2px;
}
@keyframes luxuryFloat{
0%,100%{transform:translateY(0px);}
50%{transform:translateY(-10px);}
}
@media(max-width:1100px){
.hero-stats{grid-template-columns:repeat(2,1fr);}
.about-grid{grid-template-columns:1fr;}
.about-image{height:500px;}
.services-grid{grid-template-columns:repeat(2,1fr);}
.benefits-grid{grid-template-columns:repeat(2,1fr);}
.masonry-grid{grid-template-columns:repeat(2,1fr);}
.package-grid{grid-template-columns:1fr;}
.team-grid{grid-template-columns:repeat(2,1fr);}
.achievement-grid{grid-template-columns:repeat(2,1fr);}
.contact-grid{grid-template-columns:1fr;}
.footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
.nav-links{
position:fixed;
top:0;
right:-100%;
width:80%;
max-width:350px;
height:100vh;
background:rgba(10,10,10,.98);
backdrop-filter:blur(30px);
flex-direction:column;
justify-content:center;
gap:30px;
padding:40px;
transition:.5s;
border-left:1px solid rgba(255,255,255,.06);
display:flex;
}
.nav-links.open{right:0;}
.hamburger{display:flex;}
.hero{
min-height:auto;
padding-top:140px;
padding-bottom:80px;
height:auto;
}
.hero-stats{grid-template-columns:1fr;}
.hero-actions{flex-direction:column;}
.section-title{font-size:3rem;}
.about-features{grid-template-columns:1fr;}
.services-grid{grid-template-columns:1fr;}
.benefits-grid{grid-template-columns:1fr;}
.masonry-grid{grid-template-columns:1fr;grid-auto-rows:280px;}
.masonry-item.large,.masonry-item.tall{grid-column:auto;grid-row:auto;}
.timeline-line{left:20px;}
.timeline-item{justify-content:flex-end !important;padding-left:50px;}
.timeline-dot{left:20px;}
.timeline-content{width:100%;}
.team-grid{grid-template-columns:1fr;}
.achievement-grid{grid-template-columns:1fr;}
.package-grid{grid-template-columns:1fr;}
.testimonial-card{padding:40px 25px;}
.package-card{padding:40px 30px;}
.contact-grid{grid-template-columns:1fr;}
.contact-info{grid-template-columns:1fr;}
.footer-grid{grid-template-columns:1fr;}
.footer-bottom{flex-direction:column;gap:15px;text-align:center;}
.luxury-form{padding:30px;}
}

/* ===== BLOG STYLES ===== */
.blog-hero{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;padding:180px 0 100px}
.blog-hero .hero-content{max-width:900px;margin:0 auto}
.blog-hero .hero-content h1{font-family:'Cormorant Garamond',serif;font-size:clamp(3rem,7vw,6rem);line-height:1;margin-bottom:20px}
.blog-hero .hero-content p{max-width:700px;font-size:1.15rem;line-height:1.9;color:#ddd;margin:0 auto}

.featured-posts,.categories-section,.recent-posts,.newsletter-section{padding:120px 0}
.featured-posts{background:#090909}
.featured-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:35px;margin-top:60px}
.featured-card{border-radius:28px;overflow:hidden;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);transition:.5s}
.featured-card:hover{transform:translateY(-8px);border-color:rgba(212,175,55,.3)}
.featured-image{position:relative;height:240px;overflow:hidden}
.featured-image img{width:100%;height:100%;object-fit:cover;transition:1s}
.featured-card:hover .featured-image img{transform:scale(1.08)}
.post-category{position:absolute;top:16px;left:16px;padding:6px 16px;background:rgba(212,175,55,.9);color:#111;font-size:.75rem;font-weight:600;border-radius:50px;text-transform:uppercase;letter-spacing:.5px}
.featured-content{padding:30px}
.post-meta{display:flex;gap:12px;font-size:.85rem;color:#aaa;margin-bottom:14px}
.post-date{color:var(--gold)}
.featured-content h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;margin-bottom:14px}
.featured-content p{color:var(--text);line-height:1.8;font-size:.95rem;margin-bottom:20px}
.read-more{color:var(--gold);font-weight:600;font-size:.9rem;letter-spacing:.5px;text-transform:uppercase;transition:.3s}
.read-more:hover{color:#fff}

.categories-section{background:#080808}
.categories-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:60px}
.category-card{text-align:center;padding:40px;border-radius:25px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);transition:.5s}
.category-card:hover{transform:translateY(-8px);border-color:rgba(212,175,55,.3)}
.category-icon{font-size:2rem;color:var(--gold);margin-bottom:16px}
.category-card h3{font-family:'Cormorant Garamond',serif;font-size:1.5rem;margin-bottom:12px}
.category-card p{color:var(--text);line-height:1.7;font-size:.9rem;margin-bottom:14px}
.category-count{color:var(--gold);font-size:.85rem;font-weight:600}

.posts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:60px}
.post-card{border-radius:24px;overflow:hidden;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);transition:.5s}
.post-card:hover{transform:translateY(-6px);border-color:rgba(212,175,55,.25)}
.post-card-image{position:relative;height:200px;overflow:hidden}
.post-card-image img{width:100%;height:100%;object-fit:cover;transition:1s}
.post-card:hover .post-card-image img{transform:scale(1.08)}
.post-card-content{padding:25px}
.post-card-content h3{font-family:'Cormorant Garamond',serif;font-size:1.25rem;margin-bottom:12px}
.post-card-content p{color:var(--text);line-height:1.7;font-size:.9rem;margin-bottom:18px}

.newsletter-section{background:radial-gradient(circle at center,rgba(212,175,55,.06),transparent 50%)}
.newsletter-wrapper{text-align:center;max-width:650px;margin:0 auto}
.newsletter-form{margin-top:40px}
.newsletter-input-group{display:flex;gap:12px;max-width:500px;margin:0 auto}
.newsletter-input-group input{flex:1;padding:16px 20px;border-radius:60px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:white;font-size:1rem;outline:none}
.newsletter-input-group input:focus{border-color:var(--gold)}
.newsletter-input-group button{padding:16px 32px;border-radius:60px;border:none;cursor:pointer;font-weight:600}
.newsletter-disclaimer{margin-top:12px;color:#888;font-size:.8rem}

/* ===== BLOG POST SINGLE STYLES ===== */
.blog-post{background:#080808}
.blog-post-hero{min-height:65vh;display:flex;align-items:flex-end;position:relative;overflow:hidden}
.blog-post-hero .hero-content{max-width:900px;padding:120px 0 80px}
.blog-post-hero .hero-content h1{font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,6vw,5rem);line-height:1;margin-bottom:20px}
.post-meta-large{display:flex;gap:12px;color:#ccc;font-size:.95rem;flex-wrap:wrap}
.post-meta-large .post-date{color:var(--gold)}
.post-meta-large .post-author{color:#ddd}
.post-sep{color:#555}

.blog-layout{display:grid;grid-template-columns:1fr 300px;gap:60px;padding:60px 0}
.blog-content{min-width:0}
.blog-content .post-intro{font-size:1.2rem;line-height:1.9;color:var(--text);margin-bottom:40px}
.blog-content h2{font-family:'Cormorant Garamond',serif;font-size:2.2rem;margin:50px 0 20px;line-height:1.2}
.blog-content h3{font-family:'Cormorant Garamond',serif;font-size:1.6rem;margin:35px 0 15px;color:var(--gold)}
.blog-content p{color:var(--text);line-height:1.9;margin-bottom:20px;font-size:1.05rem}
.blog-content img{border-radius:20px;margin:30px 0;width:100%;height:auto}
.blog-content ul,.blog-content ol{padding-left:25px;margin-bottom:20px}
.blog-content li{color:var(--text);line-height:1.9;margin-bottom:8px}
.blog-content blockquote{border-left:3px solid var(--gold);padding:20px 25px;margin:30px 0;background:rgba(212,175,55,.05);border-radius:0 16px 16px 0;font-style:italic;font-size:1.1rem;color:#ddd}

.blog-sidebar{position:sticky;top:120px}
.sidebar-widget{padding:30px;border-radius:24px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);margin-bottom:30px}
.sidebar-widget h3{font-family:'Cormorant Garamond',serif;font-size:1.4rem;margin-bottom:18px;color:var(--gold)}
.sidebar-widget ul{list-style:none}
.sidebar-widget li{margin-bottom:10px}
.sidebar-widget li a{color:#ccc;transition:.3s}
.sidebar-widget li a:hover{color:var(--gold)}
.sidebar-widget .btn{width:100%;margin-top:12px;text-align:center}

/* ===== CONTACT PAGE ADDITIONAL ===== */
.contact-hero{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;padding:180px 0 100px}
.contact-hero-bg{position:absolute;inset:0;z-index:0}
.contact-hero-bg img{width:100%;height:100%;object-fit:cover}
.contact-hero .hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,11,11,.85) 0%,rgba(11,11,11,.7) 50%,rgba(11,11,11,.95) 100%);z-index:1}
.contact-hero .container{position:relative;z-index:2}
.contact-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(3rem,7vw,6rem);line-height:1;margin-bottom:20px}
.contact-hero p{max-width:650px;margin:0 auto 30px;color:var(--text);font-size:1.15rem;line-height:1.9}
.form-section{background:var(--black-light)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.form-text h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2.2rem,4vw,3.4rem);line-height:1.1;margin-bottom:20px}
.form-text p{color:var(--text);line-height:1.9;margin-bottom:20px;font-size:.95rem}
.form-note{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:28px;margin-top:20px}
.form-note h4{color:var(--gold);margin-bottom:12px}
.form-note p{font-size:.9rem;margin-bottom:0}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.areas-section{padding:120px 0;background:#090909}
.areas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:60px}
.area-group h3{font-family:'Cormorant Garamond',serif;font-size:2rem;margin-bottom:25px;color:var(--gold)}
.area-group ul{list-style:none}
.area-group li{padding:8px 0;color:var(--text);border-bottom:1px solid rgba(255,255,255,.04)}
.info-section{padding:120px 0}
.info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;margin-top:60px}
.info-card .icon{font-size:2rem;display:block;margin-bottom:12px}
.info-card h3{font-family:'Cormorant Garamond',serif;font-size:1.4rem;margin-bottom:10px}
.info-card p{color:var(--text);line-height:1.7}
.hours-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:40px;max-width:700px;margin-left:auto;margin-right:auto}
.hours-item{display:flex;justify-content:space-between;padding:20px 25px;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.hours-item .day{color:#ddd;font-weight:500}
.hours-item .time{color:var(--gold)}
.hours-note{text-align:center;color:var(--text);font-size:.9rem;margin-top:25px}
.social-section{padding:120px 0;background:#080808;text-align:center}
.social-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px;max-width:600px;margin:50px auto 0}
.social-link{padding:30px;border-radius:20px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);font-size:1.2rem;font-weight:700;color:var(--gold);transition:.5s;text-align:center}
.social-link:hover{transform:translateY(-8px);background:rgba(212,175,55,.12);border-color:var(--gold)}
.map-section{padding:80px 0}
.map-placeholder{text-align:center;padding:80px;border-radius:32px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);max-width:700px;margin:0 auto}
.map-placeholder .icon{font-size:3rem;display:block;margin-bottom:20px}
.map-placeholder h3{font-family:'Cormorant Garamond',serif;font-size:2rem;margin-bottom:16px}
.map-placeholder p{color:var(--text);line-height:1.8}
.faq-small{padding:80px 0}
.faq-contact-cta{text-align:center;margin-top:40px;padding:35px;border-radius:24px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.faq-contact-cta p{margin-bottom:16px;color:var(--text)}

/* ===== GALLERY / TESTIMONIALS ADDITIONAL ===== */
.page-hero{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:hidden;padding:160px 0 80px}
.page-hero .hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,11,11,.85) 0%,rgba(11,11,11,.7) 50%,rgba(11,11,11,.95) 100%);z-index:1}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(3rem,7vw,6rem);line-height:1;margin-bottom:20px}
.page-hero p{max-width:650px;margin:0 auto;color:var(--text);font-size:1.15rem;line-height:1.9}

.gallery-filters{display:flex;gap:15px;justify-content:center;flex-wrap:wrap;margin:50px 0}
.gallery-filter{padding:12px 28px;border-radius:60px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04);color:white;cursor:pointer;font-size:.9rem;transition:.4s}
.gallery-filter:hover,.gallery-filter.active{border-color:var(--gold);background:rgba(212,175,55,.1);color:var(--gold)}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.gallery-item{position:relative;overflow:hidden;border-radius:20px;cursor:pointer}
.gallery-item img{width:100%;height:280px;object-fit:cover;transition:1s}
.gallery-item:hover img{transform:scale(1.08)}

.testimonials-page-hero{min-height:50vh;display:flex;align-items:center;text-align:center;position:relative;overflow:hidden;padding:160px 0 80px}
.testimonials-filter{display:flex;gap:15px;justify-content:center;flex-wrap:wrap;margin:50px 0}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.testimonial-card-full{padding:40px;border-radius:25px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);transition:.5s}
.testimonial-card-full:hover{transform:translateY(-6px);border-color:rgba(212,175,55,.25)}
.testimonial-card-full .quote{font-size:2.5rem;color:var(--gold);margin-bottom:15px}
.testimonial-card-full p{color:var(--text);line-height:1.8;margin-bottom:20px}
.testimonial-card-full h4{font-family:'Cormorant Garamond',serif;font-size:1.3rem}
.testimonial-card-full span{color:var(--gold);font-size:.85rem}

/* ===== IMAGE & TEXT DISPLAY FIXES ===== */
img{max-width:100%;height:auto}
.about-image{height:700px;overflow:hidden}
.about-image img{width:100%;height:100%;object-fit:cover;border-radius:30px}

@media(max-width:1100px){
.featured-grid{grid-template-columns:1fr}
.posts-grid{grid-template-columns:1fr}
.categories-grid{grid-template-columns:1fr}
.blog-layout{grid-template-columns:1fr}
.blog-sidebar{position:static;margin-top:40px}
.form-grid{grid-template-columns:1fr}
.areas-grid{grid-template-columns:1fr}
.info-grid{grid-template-columns:repeat(2,1fr)}
.social-grid{grid-template-columns:repeat(3,1fr)}
.gallery-grid{grid-template-columns:repeat(2,1fr)}
.testimonials-grid{grid-template-columns:1fr}
.about-image{height:450px}
}

@media(max-width:768px){
.form-row{grid-template-columns:1fr}
.newsletter-input-group{flex-direction:column}
.info-grid{grid-template-columns:1fr}
.hours-grid{grid-template-columns:1fr}
.social-grid{grid-template-columns:repeat(3,1fr)}
.gallery-grid{grid-template-columns:1fr}
.gallery-item img{height:220px}
.about-image{height:300px}
.about-image:before{display:none}
}
