
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --bg: #FFFFFF;
    --text: #000000;
    --gray: #F5F5F5;
    --border: #E0E0E0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%); }
ul, ol { list-style-position: inside; }

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-container {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.desktop-nav {
    display: flex;
    gap: 2.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.desktop-nav a {
    position: relative;
    padding-bottom: 5px;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 1px;
    background: #000;
    transition: width 0.3s;
}
.desktop-nav a:hover::after { width: 100%; }

/* HERO SPLIT */
.hero-split {
    display: flex;
    min-height: calc(100vh - 80px);
}
.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #fff;
}
.hero-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}
.hero-excerpt {
    font-size: 1.1rem;
    color: #444;
    max-width: 500px;
    margin-bottom: 3rem;
}
.btn-solid {
    display: inline-block;
    padding: 1rem 3rem;
    background: #000;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.btn-solid:hover { background: #333; }
.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-image: url('images/hero.jpg');
    filter: grayscale(100%);
}

/* CHECKERBOARD CATALOG */
.section-header {
    padding: 4rem 4rem 2rem;
    text-align: center;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}
.checkerboard {
    display: flex;
    flex-direction: column;
}
.checker-row {
    display: flex;
    min-height: 60vh;
}
.checker-row.reverse {
    flex-direction: row-reverse;
}
.checker-img-col {
    filter: grayscale(100%);
    flex: 1;
    background-size: cover;
    background-position: center;
}
.checker-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--bg);
}
.checker-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
}
.checker-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.checker-desc {
    color: #444;
    margin-bottom: 2rem;
}
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid #000;
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: #000; color: #fff; }

/* ARTICLE BLOCKS (Inspired by Site 1) */
.article-header {
    text-align: center;
    padding: 6rem 4rem 4rem;
    background: var(--gray);
}
.article-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.1;
    font-weight: 400;
}
.article-hero-img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}
.article-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}
.article-content p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #333; }
.article-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border-left: 2px solid #000;
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
}

/* GENERIC PAGES (FAQ, About, Contact) */
.generic-page-header {
    text-align: center;
    padding: 6rem 4rem 2rem;
    border-bottom: 1px solid var(--border);
}
.generic-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
}
.generic-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    padding: 2rem 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-content { padding-bottom: 2rem; color: #555; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 2rem; }
.about-card { padding-top: 2rem; border-top: 1px solid #000; }
.about-card h3 { font-family: var(--font-heading); margin-bottom: 1rem; font-weight: 600; }

/* CONTACT */
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    outline: none;
}
.contact-form textarea { min-height: 200px; resize: vertical; }

/* FOOTER */
.main-footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.footer-nav { display: flex; gap: 3rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-copy { font-size: 0.75rem; color: #888; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .main-header { padding: 1.5rem 2rem; flex-direction: column; gap: 1.5rem; }
    .desktop-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero-split { flex-direction: column; }
    .hero-left, .hero-right { flex: none; min-height: 50vh; }
    .hero-title { font-size: 2.5rem; }
    .checker-row { flex-direction: column; }
    .checker-row.reverse { flex-direction: column; }
    .checker-img-col {
    filter: grayscale(100%); min-height: 40vh; }
    .checker-text-col { padding: 3rem 2rem; }
    .article-title { font-size: 2.2rem; padding: 0 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-nav { flex-direction: column; align-items: center; gap: 1.5rem; }
}

.generic-container h2 { font-family: var(--font-heading); font-size: 2rem; margin: 3rem 0 1.5rem; font-weight: 400; }
.generic-container p { margin-bottom: 1.5rem; font-size: 1.1rem; color: #333; }
.generic-container ul { margin-bottom: 2rem; padding-left: 2rem; color: #333; }
.generic-container li { margin-bottom: 0.5rem; }

/* HAMBURGER MENU */
.menu-checkbox {
    display: none;
}
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1024px) {
    .main-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        position: relative;
    }
    .menu-icon {
        display: block;
    }
    .desktop-nav {
        display: none; /* Hide by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    /* When checkbox is checked, show the nav */
    .menu-checkbox:checked ~ .desktop-nav {
        display: flex;
    }
}
