
:root {
    --bg-color: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --border-light: #f0f0f0;
    --f-sans: 'Inter', sans-serif;
    --f-serif: 'Playfair Display', serif;
    --base-space: 20px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}
html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}
body {
    font-family: var(--f-sans);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 calc(var(--base-space) * 2);
}
.mono {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    font-weight: 700;
}
.serif {
    font-family: var(--f-serif);
    font-weight: 400;
}

/* --- HEADER --- */
.site-header {
    padding: calc(var(--base-space) * 1.5) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
}
.site-nav {
    display: flex;
    gap: calc(var(--base-space) * 2);
}
.site-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 400;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.site-nav a:hover {
    color: var(--text-muted);
}

/* --- ENTRY --- */
.entry-block {
    padding: calc(var(--base-space) * 10) 0 calc(var(--base-space) * 8);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: calc(var(--base-space) * 4);
}

.entry-block h1 {
    font-size: clamp(45px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 700;
}

.entry-context {
    padding-top: calc(var(--base-space) * 1.5);
    border-top: 1px solid var(--text-main);
    max-width: 380px;
}

.entry-context p {
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 300;
}

/* --- PHILOSOPHY --- */
.philosophy-wrap {
    padding: calc(var(--base-space) * 8) 0;
    background-color: #f9f9f9;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: calc(var(--base-space) * 6);
}
.philosophy-grid h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -2px;
}
.philosophy-body p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 600px;
}

/* --- SERVICES --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--border-light);
    margin: calc(var(--base-space) * 6) 0;
    border: 1px solid var(--border-light);
}

.spec-item {
    background-color: #fff;
    padding: calc(var(--base-space) * 4);
    transition: var(--transition);
}
.spec-item:hover {
    background-color: #fcfcfc;
}
.spec-item h3 {
    font-size: 26px;
    margin: 15px 0;
    letter-spacing: -1px;
}
.spec-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- PRICING --- */
.pricing-wrap {
    padding: calc(var(--base-space) * 8) 0;
    background-color: var(--text-main);
    color: #fff;
}
.pricing-table {
    margin-top: calc(var(--base-space) * 4);
    border-top: 1px solid #333;
}
.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: calc(var(--base-space) * 1.5) 0;
    border-bottom: 1px solid #222;
    font-size: 15px;
}
.pricing-row.head {
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
}

/* --- CONTACT & MAP --- */
.contact-area {
    padding: calc(var(--base-space) * 10) 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: calc(var(--base-space) * 6);
    align-items: start;
}

.contact-content h2 {
    font-size: 56px;
    letter-spacing: -3px;
    margin-bottom: 30px;
}
.contact-details {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2;
}
.contact-details b {
    display: block;
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.map-container {
    width: 100%;
    height: 550px;
    background: #f4f4f4;
    position: relative;
    filter: grayscale(1) contrast(1.1) brightness(0.9);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.map-container:hover {
    filter: grayscale(0) contrast(1) brightness(1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
.footer {
    padding: calc(var(--base-space) * 4) 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .entry-block, .philosophy-grid, .contact-area {
        grid-template-columns: 1fr;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
    .pricing-row {
        grid-template-columns: 1.5fr 1fr;
    }
    .pricing-row div:last-child {
        display: none;
    }
    .site-nav {
        display: none;
    }
    .container {
        padding: 0 var(--base-space);
    }
    .map-container {
        height: 400px;
    }
}
