/*
Theme Name: House Mazzutti
Theme URI: https://housemazzutti.com
Author: Antigravity Lead Designer
Description: A luxury minimalist WordPress theme inspired by the 'Shade' aesthetic. Featuring asymmetrical grids and high-contrast typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: house-mazzutti
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

/* Main Design Tokens */
:root {
    --bg-white: #ffffff;
    --text-black: #000000;
    --text-grey: #737373;
    --accent-line: #f5f5f5;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

.luxury-spacing {
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}
