:root {
    --bg: #faf8f3;
    --bg-alt: #f2ede2;
    --ink: #1a2332;
    --ink-soft: #4a5464;
    --ink-muted: #7d8695;
    --accent: #8b6f47;
    --accent-deep: #5d4a2f;
    --rule: #e2dccf;
    --card: #ffffff;
    --shadow: 0 1px 2px rgba(26, 35, 50, 0.04), 0 4px 16px rgba(26, 35, 50, 0.04);
    --radius: 4px;
    --max: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--ink-soft); }

a {
    color: var(--accent-deep);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

a:hover {
    border-bottom-color: var(--accent);
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* NAV */
.nav {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: none;
    letter-spacing: -0.01em;
}

.brand-mark {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    margin-right: 0.75rem;
    vertical-align: middle;
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: var(--ink-soft);
    border-bottom: none;
}

.nav-links a:hover {
    color: var(--accent-deep);
}

/* HERO */
.hero {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid var(--rule);
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-lede {
    max-width: 640px;
    font-size: 1.15rem;
    color: var(--ink-soft);
}

/* VENTURES */
.ventures {
    padding: 5rem 0;
}

.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule);
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-meta {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.venture-card {
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.venture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 35, 50, 0.06), 0 12px 28px rgba(26, 35, 50, 0.08);
}

.venture-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.venture-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.venture-card p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: var(--ink-soft);
}

.venture-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    display: inline-block;
    align-self: flex-start;
}

.venture-link:hover {
    color: var(--accent-deep);
    border-bottom-color: var(--accent-deep);
}

.venture-link .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 0.35rem;
}

.venture-link:hover .arrow {
    transform: translateX(3px);
}

/* ABOUT */
.about {
    padding: 5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-grid p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.about-grid p:last-child {
    margin-bottom: 0;
}

/* CONTACT */
.contact {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 2rem;
}

.contact-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
}

.contact-block a:hover {
    border-bottom-color: var(--accent);
    color: var(--accent-deep);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--rule);
    padding: 3rem 0 2rem;
    background: var(--bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--ink-muted);
    border-bottom: none;
}

.footer-links a:hover {
    color: var(--accent-deep);
}

/* LEGAL PAGES */
.legal-page {
    padding: 4rem 0 6rem;
}

.legal-header {
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--rule);
}

.legal-header h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}

.legal-body {
    max-width: 760px;
}

.legal-body h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.legal-body p {
    margin-bottom: 1rem;
    color: var(--ink-soft);
}

.legal-body ul {
    margin: 0 0 1.25rem 1.25rem;
    color: var(--ink-soft);
}

.legal-body li {
    margin-bottom: 0.4rem;
}

.legal-body strong {
    color: var(--ink);
    font-weight: 600;
}

.legal-body a {
    color: var(--accent-deep);
    border-bottom: 1px solid var(--rule);
}

.legal-body a:hover {
    border-bottom-color: var(--accent-deep);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .nav-links { gap: 1.25rem; font-size: 0.85rem; }
    .hero { padding: 4rem 0 3rem; }
    .ventures { padding: 3.5rem 0; }
    .about { padding: 3.5rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact { padding: 3.5rem 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section-heading { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .venture-card { padding: 2rem; }
}
