:root {
    --espresso: #2D1B14;
    --ochre: #A67C37;
    --parchment: #F2D9A7;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--white);
    color: var(--espresso);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

header {
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 1000;
}

/* Stacked Logo Styling (Top Left) */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align lines to the left */
    text-decoration: none;
    font-family: serif;
    color: var(--espresso);
    letter-spacing: 2px;
}

.logo-line1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.logo-line2 {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    color: var(--ochre); /* Using the brand accent for the sub-line */
}

/* Nav on the right */
nav a {
    text-decoration: none;
    color: var(--espresso);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 30px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

nav a:hover { opacity: 1; }

/* Content Sections */
.hero { padding: 100px 5%; max-width: 1200px; }
.hero h1 { font-family: serif; font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; margin: 0; }
.hero p { font-size: 1.1rem; max-width: 550px; margin-top: 30px; line-height: 1.7; color: #555; }

.accent-section {
    background-color: var(--parchment);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card { border-left: 2px solid var(--ochre); padding-left: 25px; }
.card h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--ochre); margin-bottom: 10px; }

.btn-main {
    display: inline-block;
    background: var(--espresso);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    transition: background 0.3s;
}
.btn-main:hover { background: var(--earth-brown); }

footer { padding: 60px 5%; font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 1px; text-align: center; }