/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #666666;
    --gray-dark: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-reserve {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-reserve:hover {
    background: var(--gold-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 80px 15px;
        background-position: center center !important;
    }
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: 30px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-text {
    font-size: 18px;
    color: #CCCCCC;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    color: #666;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-cta {
    background: linear-gradient(135deg, #FFF8E7, #FFFAED, #FFF8E7);
}

.section-header {
    text-center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.text-center {
    text-center;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.text-large {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.img-cover {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center center;
}

/* Values List */
.values-list {
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.value-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.value-item span {
    color: var(--gray);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
    transition: all 0.5s;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

.service-number {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    color: #E5E5E5;
    display: block;
    margin-bottom: 30px;
    transition: color 0.5s;
}

.service-card:hover .service-number {
    color: rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    transition: color 0.5s;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    transition: color 0.5s;
}

.service-card:hover .service-link {
    color: var(--gold);
}

/* Projects */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.btn-outline-white {
    border: 2px solid #444;
    color: var(--white);
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
    transition: background 0.5s;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
}

.project-category {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.project-overlay h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.project-line {
    height: 2px;
    width: 60px;
    background: var(--gold);
    transition: width 0.7s;
}

.project-card:hover .project-line {
    width: 100%;
}

/* CTA */
.btn-primary-large {
    background: var(--gold);
    color: var(--black);
    padding: 24px 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer p {
    color: #999;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #999;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #999;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: #666;
    margin-left: 30px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
