:root {
    --bg: #151617;
    --panel: #1c1d1f;
    --ink: #f4efe8;
    --muted: #a99b8a;
    --gold: #9a784c;
    --gold-light: #c7a16d;
    --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font: 400 14px/1.75 Montserrat, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1102px, calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 36px)); }
.centered { margin-left: auto; margin-right: auto; text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(21,22,23,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.header-inner {
    width: min(1122px, calc(100% - 24px));
    height: 130px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    align-items: center;
    gap: 20px;
}
.brand img {
    width: 158px;
    height: auto;
    margin: 0 auto;
}
.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav a { color: #d9d0c4; padding: 8px 0; }
.nav a:hover, .nav a.is-active { color: var(--gold-light); }
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -24px;
    min-width: 230px;
    display: none;
    padding: 12px 0;
    background: #202123;
    border: 1px solid var(--line);
}
.dropdown-menu a {
    display: block;
    padding: 8px 18px;
    text-transform: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 10px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}
.mobile-menu { display: none; }

.hero {
    min-height: calc(100vh - 130px);
    display: grid;
    place-items: center;
    background:
        linear-gradient(90deg, rgba(21,22,23,.88), rgba(21,22,23,.25)),
        var(--hero-bg) center/cover no-repeat;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--line);
}
.hero-content {
    width: min(1102px, calc(100% - 36px));
    margin: 0 auto;
}
.hero p, .intro-text, h6 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #b89669;
}
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: 0;
}
.hero h1 {
    max-width: 560px;
    margin: 12px 0 24px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: .95;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #fff;
    cursor: pointer;
}
.button:hover { background: #74542a; border-color: #74542a; }
.button-light { background: transparent; border-color: #d6bd98; }

.intro-section {
    padding: 70px 0 52px;
    text-align: center;
}
.intro-text {
    color: #f1e8dc;
    margin: 0;
}
.sep {
    display: block;
    width: 146px;
    height: 1px;
    margin: 24px auto 0;
    background: var(--gold);
}
.image-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1630 / 860;
    background: #0e0f10;
}
.image-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}
.image-slider img.is-active { opacity: 1; }
.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
}
.slider-dots button.is-active { background: var(--gold-light); }
.video-band {
    padding: 240px 0;
    background:
        linear-gradient(90deg, rgba(21,22,23,.88), rgba(21,22,23,.36)),
        var(--video-bg) center/cover no-repeat;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.video-grid h2 {
    white-space: pre-line;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1;
    margin: 0 0 26px;
}
.video-card {
    text-align: center;
    color: #b89669;
    letter-spacing: 4px;
}
.video-card img { margin-bottom: 20px; }

.subheader {
    padding: 70px 0 55px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.subheader h1 {
    margin: 0;
    font-size: 42px;
}
.breadcrumbs {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}
.breadcrumbs span { margin: 0 8px; }
.section { padding: 70px 0 90px; }
.content-copy h2 {
    color: #d5b17a;
    text-align: center;
    font-size: 34px;
}
.content-copy p {
    color: #d5cec3;
    font-size: 15px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.project-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: var(--panel);
}
.project-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    opacity: .86;
    transform: scale(1);
    transition: transform .35s ease, opacity .35s ease;
}
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.78));
}
.project-card span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 1;
    font: 500 24px/1.1 "Cormorant Garamond", Georgia, serif;
    color: #fff;
}
.project-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.gallery-item {
    display: block;
    background: var(--panel);
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.team-card {
    text-align: center;
    padding: 26px 22px;
    background: #1b1c1e;
    border: 1px solid var(--line);
}
.team-card img {
    width: 124px;
    height: 124px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 18px;
}
.team-card h3 {
    margin: 0;
    font-size: 25px;
}
.team-card p {
    margin: 4px 0 0;
    color: var(--muted);
}
.contact-hero {
    padding: 90px 0;
    background:
        linear-gradient(90deg, rgba(21,22,23,.92), rgba(21,22,23,.68)),
        var(--contact-bg) center/cover no-repeat;
}
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
}
.contact-copy h2 {
    margin-top: 0;
    font-size: 48px;
    line-height: 1;
}
dl { margin: 0; }
dt { color: #b89669; margin-top: 18px; }
dd { margin: 4px 0 0; color: #e7ded2; }
.contact-form {
    padding: 30px;
    background: rgba(15,16,17,.72);
    border: 1px solid var(--line);
}
.contact-form label {
    display: block;
    margin-bottom: 14px;
    color: #cfc4b6;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1px solid #51555b;
    color: #fff;
    background: rgba(255,255,255,.02);
    font: inherit;
}
.notice {
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
}
.notice.success { border-color: #3c8d5b; color: #aef0c2; }
.notice.error { border-color: #9e4c4c; color: #ffc1c1; }

.site-footer {
    padding: 0 0 28px;
    text-align: center;
    border-top: 1px solid var(--line);
}
.footer-mark {
    width: 78px;
    margin: -80px auto 46px;
}
.footer-copy-block {
    width: min(680px, calc(100% - 36px));
    margin: 0 auto 36px;
}
.footer-copy-block h4 {
    color: var(--gold-light);
    margin: 0 0 12px;
    font-size: 24px;
}
.footer-copy-block p { color: #cfc6ba; }
.copyright {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: #928778;
    font-size: 13px;
}
.copyright a { color: #b89669; }
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 999px;
    background: #25d366;
    color: #0b2c16;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

@media (max-width: 900px) {
    .header-inner {
        height: 86px;
        grid-template-columns: 1fr auto;
    }
    .brand { order: 0; }
    .brand img { width: 118px; margin: 0; }
    .nav { display: none; }
    .menu-toggle { display: block; justify-self: end; }
    .mobile-menu.is-open {
        display: grid;
        gap: 10px;
        padding: 12px 20px 22px;
        border-top: 1px solid var(--line);
    }
    .hero { min-height: calc(100vh - 86px); }
    .video-grid, .contact-grid { grid-template-columns: 1fr; }
    .video-band { padding: 110px 0; }
    .card-grid, .gallery-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .card-grid, .gallery-grid, .team-grid { grid-template-columns: 1fr; }
    .hero-content { text-align: left; }
    .project-card, .project-card img { min-height: 220px; }
    .copyright { flex-direction: column; gap: 6px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float {
        width: 58px;
        padding: 0;
        justify-content: center;
    }
    .whatsapp-float::before { content: "WA"; }
}
