@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary-color: #1c1c1c;
    --text-color: #1c1c1c;
    --light-bg: #fdfcfb;
    --accent-bg: #f7f3ef;
    --white: #ffffff;
    --gold: #9d8461;
    --border-luxury: rgba(28, 28, 28, 0.1);
    --font-sans: 'Montserrat', system-ui, sans-serif;
    --font-serif: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* General Typography */
.theme-heading {
    font-family: var(--font-serif);
    line-height: 1.1;
    font-weight: 400;
}
.theme-heading .italic {
    font-style: italic;
    font-weight: 400;
}
.theme-accent-text {
    color: var(--gold);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}
.theme-desc {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.8;
}
.theme-subheading {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-top: 10px;
    font-weight: 700;
}

.action-btn {
    margin-top: 3rem !important;
}

/* Borders */
.border-t {
    border-top: 1px solid var(--border-luxury);
}
.luxury-border {
    border-color: var(--border-luxury);
}

/* Navbar */
.navbar {
    background-color: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-luxury);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.logo-sub {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: var(--light-bg);
}

.hero-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 4rem 0 6rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.hero-desc {
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-luxury);
}

.stat-item h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 11px;
    opacity: 0.6;
}

.hero-right {
    width: 50%;
    position: relative;
    background-color: var(--primary-color);
}

.hero-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(30%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(28,28,28,0.2));
}

.floating-card {
    position: absolute;
    bottom: 3rem;
    left: 0;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 2rem;
    width: 18rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid var(--accent-bg);
    z-index: 10;
}

.card-border {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    font-weight: 700;
}

.card-desc {
    font-size: 11px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 4rem;
}

.section-title.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title h2 {
    font-size: 2.5rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    padding: 1rem;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-luxury);
    transform: translate(15px, 15px);
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(10%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Services Section */
.services {
    background-color: var(--accent-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border: 1px solid var(--border-luxury);
    background: var(--white);
}

.service-card {
    padding: 3.5rem;
    border-right: 1px solid var(--border-luxury);
    border-bottom: 1px solid var(--border-luxury);
    transition: background-color 0.4s ease;
}

.service-card:hover {
    background-color: rgba(157, 132, 97, 0.03);
}

.service-card:last-child {
    border-right: none;
}

.service-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.en-title {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    display: block;
    margin-top: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: grayscale(40%);
    transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer Section */
.footer {
    background-color: var(--accent-bg);
    padding: 0 0 2rem;
}

.footer-content {
    padding-top: 4rem;
}

.footer-columns {
    display: flex;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-info, .footer-form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    border: 1px solid var(--border-luxury);
    background-color: var(--white);
    color: var(--text-color);
    outline: none;
    resize: vertical;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.submit-btn {
    align-self: flex-start;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer-heading {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.footer-address {
    font-style: normal;
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-email a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-link {
    display: inline-block;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-top: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    text-align: right;
}

.copyright {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .floating-card {
        left: 2rem;
        transform: none;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 80px;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-left {
        padding: 4rem 5%;
    }
    .hero-right {
        min-height: 60vh;
    }
    .floating-card {
        left: 50%;
        bottom: auto;
        top: -3rem; /* overlap upwards */
        transform: translateX(-50%);
    }
    .about-content {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(253, 252, 251, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        text-align: center;
        border-bottom: 1px solid var(--border-luxury);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-columns {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-bottom {
        text-align: left;
    }
}
