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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f1eb;
    color: #1a1a1a;
}

.top-bar {
    background-color: #1a1a1a;
    color: #d4c9b8;
    font-size: 12px;
    padding: 10px 24px;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content span {
    letter-spacing: 0.1em;
}

.top-bar-links {
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: #d4c9b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-bar-links a:hover {
    color: white;
}

header {
    background-color: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(212, 201, 184, 0.3);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-image {
    height: 64px;
    width: auto;
    mix-blend-mode: multiply;
}

.logo-text {
    font-size: 10px;
    letter-spacing: 0.4em;
    color: #8b7355;
    margin-top: 4px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.3), transparent);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 24px;
}

.hero-text {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-text p:first-child {
    color: #d4c9b8;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

.hero-text h2 {
    font-size: 72px;
    font-weight: 200;
    color: white;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-text h2 span {
    color: #d4c9b8;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 448px;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a1a1a;
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.hero-btn:hover {
    background: #1a1a1a;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

section {
    padding: 96px 24px;
}

.section-content {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-tag {
    color: #8b7355;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
}

.section-title span {
    color: #8b7355;
}

.section-text {
    color: #4a4a4a;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    align-items: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}

.stat p {
    font-size: 12px;
    color: #8b7355;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 64px;
    background: #d4c9b8;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border: 1px solid #d4c9b8;
}

.about-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.full-image {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.full-image-overlay h3 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 24px;
}

.full-image-overlay p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-item {
    position: relative;
    overflow: hidden;
    background: #f5f1eb;
    aspect-ratio: 3/4;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.media-item:hover img {
    transform: scale(1.05);
    transition: transform 0.5s;
}

.media-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.media-badge-video {
    background: #dc2626;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.modal-content img,
.modal-content video {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10000;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

#contact {
    background: #1a1a1a;
    color: white;
}



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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info h4 {
    color: white;
    font-weight: 300;
    margin-bottom: 4px;
}

.contact-info p, .contact-info a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: white;
}

.map-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8b7355;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.3s;
}

.map-btn:hover {
    background: #a08566;
}

.map-container {
    height: 100%;
    min-height: 400px;
    background: #2a2a2a;
    border-radius: 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    filter: grayscale(100%);
    opacity: 0.8;
}

footer {
    background: #0f0f0f;
    padding: 48px 24px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: white;
}

.footer-logo span {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: #8b7355;
    display: block;
    margin-top: 2px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-text h2 { font-size: 48px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .stats { flex-direction: column; gap: 24px; align-items: flex-start; }
    .stat-divider { display: none; }
    .section-title { font-size: 36px; }
    .top-bar-content { flex-direction: column; gap: 8px; text-align: center; }
    .top-bar-links { flex-direction: column; gap: 8px; }
    .logo-image { height: 48px; }
}