/*
Theme Name: Vontot Craftsmanship
Description: A bold, asymmetric editorial design for high-end construction and design blogs.
Version: 1.0
*/

:root {
    --c-bg: #F7F5F2;
    --c-dark: #1A1A1A;
    --c-accent: #D95D39; /* Burnt Orange */
    --c-text: #2C2C2C;
    --c-muted: #8E8E8E;
    --c-border: #E5E1DA;
    --f-display: 'Prata', serif;
    --f-main: 'Inter', sans-serif;
    --gap: 40px;
}

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

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.1; color: var(--c-dark); }

a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { max-width: 1600px; margin: 0 auto; padding: 0 5%; }

/* Header */
.site-header {
    height: 120px;
    background: transparent;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { font-size: 1.8rem; font-family: var(--f-display); border-bottom: 2px solid var(--c-accent); }

.main-nav ul { display: flex; list-style: none; gap: 40px; }
.main-nav a { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--c-dark); }
.main-nav a:hover { color: var(--c-accent); }

/* Hero */
.hero-vontot {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    border-bottom: 1px solid var(--c-border);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-text h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); margin-bottom: 40px; }
.hero-text p { font-size: 1.3rem; color: var(--c-muted); max-width: 500px; margin-bottom: 50px; }

.hero-visual { position: relative; height: 70vh; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.3) contrast(1.1); }
.hero-label {
    position: absolute; top: 50%; left: -50px;
    transform: rotate(-90deg) translateY(-50%);
    font-family: var(--f-main); font-weight: 900; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 10px; color: var(--c-accent);
}

/* Diagonal Block */
.diagonal-section {
    padding: 150px 0;
    background: var(--c-dark);
    color: #fff;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 100px 0;
}

.diagonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.d-item h2 { color: #fff; font-size: 3rem; margin-bottom: 30px; }
.d-item p { color: rgba(255,255,255,0.5); font-size: 1.1rem; }
.d-item span { display: block; font-family: var(--f-main); font-weight: 900; color: var(--c-accent); font-size: 0.7rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }

/* Blog Grid (Standard) */
.bento-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 120px 0;
}
.b-card { 
    grid-column: span 1 !important; 
    background: #fff; 
    border: 1px solid var(--c-border); 
    display: flex; 
    flex-direction: column; 
    transition: 0.5s; 
    padding: 0 !important;
    overflow: hidden;
}

.b-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eee;
}
.b-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}
.b-card:hover .b-card-img img { transform: scale(1.1); }

.b-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.b-card h3 { font-size: 1.6rem; margin-bottom: 20px; line-height: 1.2; }
.b-card p { font-size: 0.95rem; color: var(--c-muted); margin-bottom: 30px; line-height: 1.6; }
.b-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }

@media (max-width: 1200px) {
    .bento-feed { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bento-feed { grid-template-columns: 1fr; }
}

/* Overlap Block */
.overlap-section {
    padding: 200px 0;
    position: relative;
}
.overlap-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 20vw; font-family: var(--f-display); color: var(--c-border); opacity: 0.5; z-index: -1; white-space: nowrap;
}
.overlap-content {
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.overlap-text { max-width: 800px; }
.overlap-text h2 { font-size: 4.5rem; margin-bottom: 40px; }
.overlap-text p { font-size: 1.5rem; color: var(--c-muted); font-style: italic; font-family: var(--f-display); }

/* Custom Button */
.v-btn {
    display: inline-flex;
    padding: 18px 45px;
    background: var(--c-dark);
    color: #fff;
    font-family: var(--f-main);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.v-btn:hover { background: var(--c-accent); }

/* Pagination */
.v-pagination { display: flex; justify-content: center; gap: 15px; margin-top: 80px; }
.v-pg-link {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--c-border); font-family: var(--f-display); font-size: 1.2rem;
}
.v-pg-link.current { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.v-pg-link:hover:not(.current) { border-color: var(--c-dark); }

/* Footer */
.site-footer { padding: 150px 0 60px; border-top: 1px solid var(--c-border); background: #fff; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 100px; margin-bottom: 120px; }
.f-label { font-family: var(--f-main); font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: var(--c-accent); margin-bottom: 25px; display: block; }
.f-val { font-family: var(--f-display); font-size: 1.4rem; margin-bottom: 40px; display: block; }

.f-bottom { border-top: 1px solid var(--c-border); padding-top: 40px; display: flex; justify-content: space-between; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--c-muted); font-weight: 700; }

/* Responsive */
.burger { display: none; cursor: pointer; }

@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-visual { height: 50vh; order: -1; }
    .diagonal-grid { grid-template-columns: 1fr; gap: 60px; }
    .bento-feed { grid-template-columns: 1fr; }
    .b-card, .b-card:nth-child(1), .b-card:nth-child(4) { grid-column: span 1; padding: 40px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: block; font-family: var(--f-main); font-weight: 900; letter-spacing: 2px; }
    .overlap-text h2 { font-size: 2.5rem; }
    .f-grid { grid-template-columns: 1fr; gap: 60px; }
    .site-header { height: 90px; }
}

body.menu-open .main-nav {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff;
    flex-direction: column; align-items: center; justify-content: center; z-index: 2000;
}
body.menu-open .main-nav ul { flex-direction: column; align-items: center; }
body.menu-open .main-nav a { font-size: 2rem; }
