:root {
    --black: #000000;
    --gold: #c9a15b;
    --white: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 100px 0;
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.main-nav a:hover {
    color: var(--gold);
}

.hero { 
	height: 100vh; 
	position: relative; background: url('../assets/images/header.jpg') center center/cover no-repeat; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	text-align: center; }


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}



h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

h3 {
    font-size: 32px;
}

p {
    margin-bottom: 20px;
}

.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-column img {
    width: 100%;
    border-radius: 8px;
}

.dark-section {
    background: #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    border: 1px solid rgba(201,161,91,0.3);
    background: rgba(255,255,255,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.center-text {
    text-align: center;
}

.page-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/images/header.jpg') center center/cover no-repeat;
}

.form-container {
    max-width: 800px;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: #111;
    border: 1px solid rgba(201,161,91,0.3);
    color: white;
}

.site-footer {
    padding: 80px 0;
    border-top: 1px solid rgba(201,161,91,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 180px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu a,
.instagram-link {
    color: var(--white);
    text-decoration: none;
}

.footer-menu a:hover,
.instagram-link:hover {
    color: var(--gold);
}

.team-image {
    width: 220px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.team-title {
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media(max-width: 991px) {

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .two-column,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        gap: 20px;
    }

}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.form-container {
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border: 1px solid rgba(201,161,91,0.2);
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: #111;
    border: 1px solid rgba(201,161,91,0.3);
    color: white;
    font-size: 16px;
}

.wpcf7-submit {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 36px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.wpcf7-submit:hover {
    background: var(--gold);
    color: var(--black);
}