:root {
    --bg: #0f0f10;
    --surface: #171719;
    --surface-2: #202024;
    --text: #f5f1ea;
    --muted: #b8aea2;
    --line: rgba(255,255,255,.12);
    --accent: #d6b47c;
    --accent-dark: #9d7542;
    --radius: 28px;
    --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(214,180,124,.16), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(255,255,255,.05), transparent 28rem),
        var(--bg);
    color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 78px;
    padding: 18px clamp(18px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(18px);
    background: rgba(15,15,16,.74);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 750; letter-spacing: -.03em; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #18110b;
}
.nav { display: flex; gap: 22px; color: var(--muted); font-size: .95rem; }
.nav a:hover { color: var(--text); }

main { padding: 0 clamp(18px, 5vw, 72px); }
.hero {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    padding: 72px 0;
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 750;
}
h1, h2 { margin: 0; letter-spacing: -.06em; line-height: .94; }
h1 { font-size: clamp(3.2rem, 9vw, 7.8rem); max-width: 900px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
.presentation-text {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.7;
    max-width: 760px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
}
.btn.primary { background: var(--accent); color: #17110b; border-color: transparent; }
.btn.secondary { color: var(--text); background: rgba(255,255,255,.04); }
.hero-photo-card {
    min-height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.photo-placeholder { height: 520px; display: grid; place-items: center; color: var(--muted); }

.section { padding: 70px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 5;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
    position: absolute;
    left: 12px; right: 12px; bottom: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 650;
}
.empty-state, .contact-section, .footer {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
}
.empty-state { padding: 40px; color: var(--muted); }
.contact-section {
    margin: 70px 0;
    padding: clamp(28px, 5vw, 54px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}
.contact-section p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.contact-card {
    min-width: min(420px, 100%);
    display: grid;
    gap: 12px;
}
.contact-card a {
    display: flex;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    font-weight: 750;
}
.footer {
    margin: 0 clamp(18px, 5vw, 72px) 24px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
}
.footer a { color: var(--accent); }

@media (max-width: 900px) {
    .site-header { align-items: flex-start; flex-direction: column; }
    .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .hero { grid-template-columns: 1fr; padding-top: 48px; }
    .hero-photo-card, .hero-photo-card img, .photo-placeholder { min-height: 380px; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-section { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .footer { flex-direction: column; gap: 10px; }
}
