:root {
--gold: #c5a059;
--dark: #121212;
--light: #f9f9f9;
--drawer-bg: #121214;
} * {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden; font-family: 'Inter', sans-serif;
background: var(--light);
color: var(--dark);
-webkit-text-size-adjust: 100%;
}
body.drawer-open {
overflow: hidden;
}
h1, h2, h3 { 
font-family: 'Playfair Display', serif; 
font-weight: 400; 
}
img {
max-width: 100%;
height: auto;
} .site-header {
position: sticky; 
top: 0; 
z-index: 1000;
background: rgba(255, 255, 255, 0.95); 
backdrop-filter: blur(10px);
padding: 20px 60px; 
display: flex; 
justify-content: space-between; 
align-items: center;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}
.site-header .logo img {
height: 80px;
width: auto;
display: block;
transition: height 0.3s ease;
}
.desktop-nav {
display: flex;
align-items: center;
}
.desktop-nav a { 
margin-left: 25px; 
text-decoration: none; 
color: var(--dark); 
font-size: 12px; 
letter-spacing: 1.5px; 
text-transform: uppercase; 
opacity: 0.7; 
transition: 0.3s; 
}
.desktop-nav a:hover { 
opacity: 1; 
color: var(--gold); 
}
.lang-toggle {
margin-left: 25px;
font-size: 12px;
color: rgba(0,0,0,0.2);
}
.lang-toggle a { 
color: var(--gold); 
font-weight: bold; 
padding: 0 3px; 
text-decoration: none;
} .mobile-menu-toggle, .mobile-drawer {
display: none;
} .hero { 
height: 80vh; 
background-size: cover; 
background-position: center; 
display: flex; 
align-items: center; 
padding: 0 10%; 
color: white; 
position: relative; 
}
.hero::after { 
content: ''; 
position: absolute; 
inset: 0; 
background: rgba(0,0,0,0.3); 
}
.hero div { z-index: 2; }
.hero h1 { font-size: 5rem; margin: 0; }
.section { padding: 120px 10%; }
#main-content {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}
.grid-2 { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 80px; 
align-items: center; 
}
.gallery { 
display: grid; 
grid-template-columns: repeat(3, 1fr); 
gap: 15px; 
}
.gallery img { 
width: 100%; 
height: 500px; 
object-fit: cover; 
filter: grayscale(100%); 
transition: 0.6s; 
}
.gallery img:hover { 
filter: grayscale(0%); 
transform: scale(1.02); 
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} footer, .site-footer { 
background: var(--dark); 
color: #fff; 
padding: 80px 10%; 
text-align: center; 
width: 100%;
}
.footer-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin: 25px 0;
}
.footer-nav a {
color: #fff;
text-decoration: none;
font-size: 11px;
letter-spacing: 1.5px;
text-transform: uppercase;
opacity: 0.6;
transition: 0.3s ease;
}
.footer-nav a:hover {
opacity: 1;
color: var(--gold);
}  @media (max-width: 1024px) {
.site-header { padding: 20px 40px; }
.site-header .logo img { height: 70px; }
.section { padding: 80px 5%; }
.grid-2 { gap: 40px; }
.gallery { grid-template-columns: repeat(2, 1fr); }
} @media (max-width: 768px) { .desktop-nav {
display: none !important;
}
.site-header {
padding: 15px 20px !important;
} .site-header .logo img {
height: 55px !important; 
width: auto !important;
} #main-content, 
.section, 
main {
padding: 40px 24px !important;
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
text-align: left; } #main-content p, 
#main-content div,
.content {
width: 100% !important;
max-width: 100% !important;
word-wrap: break-word !important;
}
#main-content h1 {
font-size: 2.2rem !important;
line-height: 1.2 !important;
margin-bottom: 20px !important;
}
.hero h1 { font-size: 2.4rem !important; }
.grid-2 { grid-template-columns: 1fr !important; gap: 30px !important; }
.gallery { grid-template-columns: 1fr !important; }
.gallery img { height: 300px !important; } .mobile-menu-toggle {
display: flex !important;
flex-direction: column;
justify-content: space-between;
width: 22px;
height: 15px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 9999;
}
.mobile-menu-toggle .bar {
width: 100%;
height: 2px;
background-color: var(--dark);
transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
transform-origin: left center;
} .mobile-menu-toggle.open .bar:nth-child(1) {
transform: rotate(45deg) translate(1px, -1px);
background-color: #fff;
}
.mobile-menu-toggle.open .bar:nth-child(2) {
opacity: 0;
width: 0;
}
.mobile-menu-toggle.open .bar:nth-child(3) {
transform: rotate(-45deg) translate(1px, 1px);
background-color: #fff;
} .mobile-drawer {
display: flex !important;
position: fixed;
top: 0;
right: 0;
width: 280px;
height: 100vh;
background: var(--drawer-bg);
z-index: 9998;
flex-direction: column;
padding: 50px 24px 40px 24px;
box-shadow: -10px 0 30px rgba(0,0,0,0.4); transform: translateX(100%);
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
} .mobile-drawer.active {
transform: translateX(0);
}
.drawer-header {
display: flex;
align-items: center;
margin-bottom: 35px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-avatar {
width: 42px;
height: 42px;
background: var(--gold);
color: var(--dark);
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 16px;
}
.drawer-nav {
display: flex;
flex-direction: column;
gap: 4px;
}
.drawer-nav a {
color: rgba(255,255,255,0.85);
text-decoration: none;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 12px 14px;
border-radius: 6px;
transition: all 0.2s ease;
text-align: left;
}
.drawer-nav a:hover, 
.drawer-nav a:active {
background: rgba(197, 160, 89, 0.15);
color: var(--gold);
}
.drawer-footer {
margin-top: auto;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex;
align-items: center;
gap: 10px;
}
.drawer-footer a {
color: rgba(255,255,255,0.5);
text-decoration: none;
font-size: 13px;
font-weight: bold;
padding: 4px;
}
.drawer-footer a:hover {
color: var(--gold);
}
.drawer-footer .sep {
color: rgba(255,255,255,0.15);
} footer, .site-footer {
padding: 40px 20px;
}
.footer-nav {
flex-direction: column;
gap: 15px;
}
}