:root {
    --bg: #2b251f;
    --surface: #352d26;
    --text: #ebe4d8;
    --muted: #c8bca9;
    --line: rgba(235, 228, 216, 0.22);
    --button: #e9dfcc;
    --button-text: #2b251f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.topline {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(43, 37, 31, 0.94);
    padding: 20px clamp(20px, 4vw, 56px);
}

.brand,
h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
}

.nav-item {
    position: relative;
    padding: 8px 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 260px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #211b16;
    padding: 10px;
}

.nav-item:hover .nav-dropdown {
    display: grid;
}

.nav-dropdown a {
    padding: 9px 10px;
    color: var(--muted);
}

.info-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(42px, 6vw, 76px) 20px;
}

h1 {
    margin: 0 0 34px;
    font-size: clamp(48px, 7vw, 92px);
    text-transform: uppercase;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.address-card,
.app-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 20px;
}

.address-card {
    display: grid;
    gap: 18px;
}

.address-photo {
    min-height: 360px;
    border-radius: 8px;
    background: url("/static/client/assets/studio-1.jpeg") center / cover no-repeat;
}

.address-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.address-card a[data-contact-address] {
    font-size: clamp(26px, 4vw, 46px);
    font-family: Georgia, "Times New Roman", serif;
}

.app-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.app-card h2 {
    margin: 0;
    font-size: 34px;
}

.qr-grid {
    display: grid;
    gap: 12px;
}

@media (max-width: 860px) {
    .topline,
    .contacts-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}
