/* Reset & Base */
:root {
    --bg: #ffffff;
    --text: #111111;
    --border: #e0e0e0;
    --accent: #000000;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1 { font-size: 3.5rem; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2.5rem; line-height: 1.2; letter-spacing: -0.01em; font-weight: 400; margin-bottom: 24px; }
h3 { font-size: 2rem; font-weight: 400; margin-bottom: 40px; }
h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
p { color: #333; margin-bottom: 20px; max-width: 600px; }
.label { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; color: #666; }
.mono-number { font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 16px; display: block; color: #999; }
.text-link { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--text); padding-bottom: 2px; font-weight: 600; }
.text-link:hover { opacity: 0.7; }

/* Layout Utilities */
.container { max-width: 1000px; margin: 0 auto; padding: 0 40px; } /* Updated to 1000px */
.divider { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    max-width: 1000px; /* Updated to match container */
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO STYLES */
.logo { 
    font-weight: 700; 
    font-size: 1.1rem; 
    letter-spacing: -0.02em; 
    color: var(--text); 
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img {
    height: 80px; /* Big Logo */
    width: auto;
    display: block;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    margin-left: 32px;
    font-weight: 500;
}
.site-nav a:hover { text-decoration: underline; }

/* Hero */
.hero { padding: 160px 0 100px 0; }
.hero-text { max-width: 900px; }
.subtitle { font-size: 1.25rem; font-weight: 400; color: #555; max-width: 700px; }

/* Sections */
.content-section { padding: 100px 0; }
.content-section.small-pad { padding: 60px 0; }

/* Grid Systems */
.grid-layout { display: flex; }
.column-left { width: 30%; }
.column-right { width: 70%; }

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.grid-item {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

/* Footer */
.site-footer {
    background: #f9f9f9;
    border-top: 1px solid var(--border);
    padding: 80px 0;
    font-size: 0.9rem;
}
.footer-grid { display: flex; justify-content: space-between; }

.footer-col .logo.small { 
    margin-bottom: 16px; 
    font-size: 1rem; 
    display: flex; 
    align-items: center;
}
.footer-col .logo.small img {
    height: 40px; /* Smaller Footer Logo */
    width: auto;
}

.address { color: #666; font-family: var(--font-mono); font-size: 0.8rem; }
.legal-links { margin-top: 10px; }
.legal-links a { color: #666; text-decoration: none; margin-left: 20px; font-size: 0.8rem; }
.right-align { text-align: right; }

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .grid-layout { flex-direction: column; }
    .column-left { width: 100%; margin-bottom: 20px; }
    .column-right { width: 100%; }
    .three-col-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { flex-direction: column; gap: 40px; }
    .right-align { text-align: left; }
    .legal-links a { margin-left: 0; margin-right: 20px; }
    .container { padding: 0 24px; }
}