:root {
    --bg-color: #ffffff;
    --text-color: #6e6767;
    --heading-color: #272727;
    --accent-color: #b5834e;
    --primary-brown: #b5834e;
    --dark-brown: #9b6a4a;
    --light-brown: #d8c4b0;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Monument Extended', sans-serif;
    --font-hero: 'Monument Extended', sans-serif;
}

@font-face {
    font-family: 'Monument Extended';
    src: local('Monument Extended'), local('MonumentExtended-Regular');
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--font-heading);
    margin-top: 0;
    line-height: 1.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    display: block;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary-brown);
    position: relative;
    font-family: var(--font-heading);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark-brown);
}

/* Hero */
.hero {
    padding: 200px 0 150px;
    text-align: center;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: 0 -300px;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-hero);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-main);
    font-weight: 300;
}

/* Strategy / Venture Capital */
.strategy {
    padding: 100px 0;
    background-color: #fff;
}

.strategy h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-brown);
}

.strategy .content {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-color);
}

.strategy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.point {
    text-align: center;
}

.point h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.point p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Investment Strategy List */
.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
}

.strategy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url('/images/nucleus-3.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Investment Areas */
.investment-areas {
    padding: 100px 0;
    background-image: url('/images/investment-areas-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.investment-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.investment-areas .container {
    position: relative;
    z-index: 2;
}

.investment-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    text-align: center;
}

.area {
    background-color: #fff;
    border: 1px solid var(--primary-brown);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.area-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.area h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}

.area p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--font-main);
    font-weight: 500;
}

.area hr {
    width: 8%;
    border: none;
    border-top: 2px solid var(--primary-brown);
    margin: 15px 0;
}

/* More Than Money */
.more-than-money {
    padding: 100px 0;
    background-color: #f3f3f3;
}

.more-than-money h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-brown);
}

.more-than-money .content {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-color);
}

.more-than-money hr {
    width: 8%;
    border: none;
    border-top: 2px solid var(--primary-brown);
    margin: 20px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url('/images/nucleus-3.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.closing-statement {
    text-align: left;
    max-width: 800px;
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-color);
    font-style: normal;
}

/* Corporate Finance */
.corporate-finance {
    padding: 100px 0;
    background-color: #fff;
}

.corporate-finance h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-hero);
}

.corporate-finance .content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About */
.about {
    padding: 100px 0;
    background-color: #f3f3f3;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-hero);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 20px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-hero);
    color: #fff;
}

.contact-content {
    text-align: center;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info a {
    color: var(--accent-color);
}

/* Footer */
.site-footer {
    padding: 60px 0 30px 0;
    background-color: var(--primary-brown);
    color: #fff;
}

.footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.1em;
    font-family: var(--font-main);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 500;
}

.footer-col a:hover {
    color: #fff;
}

.linkedin-btn {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-brown);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.linkedin-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    font-size: 0.8rem;
    font-family: var(--font-main);
    font-weight: 500;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}