:root {
    --primary: #000000;
    --secondary: #333333;
    --accent: #0056b3;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --text: #1a1a1a;
    --text-muted: #666666;
    --border: #e0e0e0;
    --container-width: 1100px;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.9rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

/* Navigation */
nav {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    align-items: center;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.9rem;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 2.25rem; /* 36px */
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.logo {
    height: 80px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

input.nav-toggle[type="checkbox"] {
    display: none !important; /* Forces it to stay hidden */
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* Hero */
.hero {
    padding: 72px 0;
    text-align: left;
    max-width: 900px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
}

.cta-group {
    display: flex;
    gap: 1.2rem;
}

/* Offerings */
.offerings {
    padding: 60px 0;
    background-color: var(--bg-alt);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.offering-card {
    background: white;
    padding: 1.8rem;
    border: 1px solid var(--border);
}

.outcome-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.outcome {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.details {
    list-style: none;
}

.details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.details li::before {
    content: "—";
    position: absolute;
    left: 0;
}

/* About */
.about {
    padding: 72px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bio {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
}

.about-text p {
    margin-bottom: 0.9rem;
    color: var(--text-muted);
}

.about-image img {
    width: 100%;
    max-width: 450px;
}

/* Footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.logo-footer {
    height: 60px;
    margin-bottom: 0.9rem;
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
}

.footer-contact a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    nav .container {
        flex-direction: row;
        justify-content: center;
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .logo {
        height: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
        margin-top: 2rem;
    }
}