:root {
    --primary: #1a1a1a;
    --secondary: #c9a86c;
    --bg: #ffffff;
    --bg-dark: #111111;
    --text: #333333;
    --text-light: #777777;
    --text-inverse: #ffffff;
    --radius: 0;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --font-main: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    background: var(--bg);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.blog-link {
    color: var(--secondary) !important;
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    border-color: var(--text-inverse);
    background: var(--text-inverse);
    color: var(--primary);
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.section h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-dark h2 {
    text-align: left;
    margin-bottom: 24px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: var(--bg);
    border: 1px solid #eee;
    padding: 40px 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-text p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.split-visual {
    position: relative;
}

.single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-image {
    margin-bottom: 32px;
}

.contact-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.about-section {
    background: #f8f8f8;
    color: var(--text);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-image {
    min-height: 400px;
    background: #222;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 2rem;
}

.about-text p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-image {
        min-height: 300px;
    }
}

.visual-placeholder {
    aspect-ratio: 4/5;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    border: 1px dashed #444;
}

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

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-inverse);
}

.footer-socials {
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center;
    margin-top: 4px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
    color: rgba(255,255,255,0.85);
    transform: translateY(-1px);
}

.footer-socials svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid #eee;
    }
    .nav-links.active {
        display: flex;
    }
    .split {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section {
        padding: 60px 0;
    }
}

.page-header {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    font-weight: 600;
}

.content p {
    margin-bottom: 16px;
    color: var(--text);
}

.content ul {
    margin: 16px 0 16px 24px;
}

.content li {
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message ul {
    margin: 10px 0 0 20px;
}

.form-message li {
    margin-bottom: 4px;
}

.form-message-success {
    background: #e7f8ed;
    border-color: #badbcc;
    color: #155724;
}

.form-message-error {
    background: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.form-message-error a {
    color: #842029;
    text-decoration: underline;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.85rem;
}

.gallery-item-real {
    position: relative;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4/3;
}

.gallery-item-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-real:hover img {
    transform: scale(1.05);
}

.empty {
    color: var(--text-light);
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border: 1px dashed #ddd;
}

.section-dark .empty {
    background: #222;
    color: rgba(255,255,255,0.5);
    border-color: #444;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}