/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Minion';
    src: url('./Minion Display.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-text: #1a1a1a;
    --color-text-light: #6b6b6b;
    --color-bg-light: #faf9f7;
    --color-bg-section: #faf9f7;
    --color-bg-card: #f0ede8bb;
    --color-bg-dark: #1a1a1a;
    --color-link: #b8956b;
    --color-brand: #b8956b;
    --color-border: #e5e2dd;
    --color-divider: #e5e2dd;
    --color-accent: #ff6200;
    --max-width: 800px;
    --spacing-section: 80px;
    --spacing-container: 60px;
    --font-heading: 'Alexandria', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 20px;
    font-size: 14px;
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-accent);
    color: #fff;
}

::-moz-selection {
    background-color: var(--color-accent);
    color: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: calc(2 * 24px);
    padding-right: calc(2 * 24px);
    position: relative;
    margin-top: 40px;
}

/* Top Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    height: 60px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 calc(2 * 24px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -20px;
}
.nav-links-left li,
.nav-links-right li {
    margin-top: 14px;
    margin-bottom: 14px;
}


.nav-links-left li::before,
.nav-links-right li::before {
    display: none;
}

.top-nav a {
    font-size: 14px;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.top-nav a:hover,
.top-nav a:active {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

@media (max-width: 768px) {
    .container {
        padding-left: calc(1 * 24px);
        padding-right: calc(1 * 24px);
    }
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 54px;
    margin: 0;
    margin-bottom: calc(2 * 24px);
    color: var(--color-text);
    text-align: left;
}

h1 .mobile-break {
    display: none;
}

h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    margin-bottom: 32px;
    color: var(--color-text);
    text-align: left;
}

h2.section-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    margin-bottom: 16px;
    color: var(--color-text);
    text-align: left;
}

p {
    margin-top: 0;
    margin-bottom: 1em;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--font-body);
}

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

hr {
    float: none;
    clear: both;
    height: 1px;
    background: var(--color-divider);
    border: 0;
    margin: 0;
    padding: 0;
    margin-top: calc(4 * 24px);
    margin-bottom: calc(2 * 24px);
}

ul {
    list-style: none;
    margin-bottom: 24px;
}

ul li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    font-family: var(--font-body);
}

ul li::before {
    content: "•";
    position: absolute;
    font-size: 16px;
    left: 8px;
    color: var(--color-accent);
    font-weight: 400;
    top: -3px;
}

strong {
    /* font-weight: 600; */
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    background: #e2dbd0;
    padding-left: 3px;
    padding-right: 3px;
}

em,
i {
    font-style: italic;
    font-family: var(--font-body);
}

/* Hero Section */
.hero {
    background-color: var(--color-bg-section);
    padding-top: 80px;
    padding-bottom: 48px;
    text-align: left;
}

.name-label {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--color-brand);
    margin-bottom: calc(4 * 24px);
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 16px;
    text-align: left;
}

.location {
    font-family: var(--font-body);
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.intro {
    margin-top:40px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}
.intro b {
    font-weight: 800;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 50px 0 24px;
}

.profile-image-container {
    flex-shrink: 0;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    /* border: 2.5px solid var(--color-accent); */
    box-shadow: 0px 0px 9px 0px #815b4866;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: var(--color-text);
}

.profile-location {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.btn-cta {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brand);
    background: transparent;
    border: 1px solid var(--color-brand);
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
    font-family: var(--font-body);
}

.btn-cta:hover,
.btn-cta:active {
    color: var(--color-text);
    background-color: rgba(184, 149, 107, 0.08);
    border-color: var(--color-text);
}

.role-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
}

/* Card Styles */
.card {
    background-color: var(--color-bg-card);
    border-radius: 10px;
    padding: 28px 32px 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* How I Operate Section */
.operate {
    background-color: var(--color-bg-section);
}
.credibility-list .section-intro {
    margin-bottom: 2rem;
}

.section-intro {
    margin-bottom: 1rem;
}

.operate-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 0;
}

.operate-item h3 {
    font-family: var(--font-body);
    margin-bottom: 1em;
}

.operate-item > p {
    margin-bottom: 1em;
    max-width: 800px;
    font-family: var(--font-body);
}

.operate-item ul {
    margin-bottom: 0;
}

.operate-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Selected Builds Section */
.builds {
    background-color: var(--color-bg-section);
}

.builds-list {
    margin-top: 0;
}

.builds-list li {
    margin-bottom: 24px;
    padding-left: 0;
    color: var(--color-text);
    font-family: var(--font-body);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.builds-list li::before {
    display: none;
}

.build-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    opacity: 0.5;
    mix-blend-mode: difference;
}

.builds-list strong {
    color: var(--color-text);
    font-weight: 600;
}

.spacer {
    display: inline-block;
    width: 12px;
}

.spacer::before {
    content: "•";
    color: var(--color-accent);
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin:0;
    position: relative;
    top:0px;
    left:2px;
}

/* Scope & Credibility Section */
.credibility {
    background-color: var(--color-bg-section);
}

.credibility-list {
    margin-top: 0;
}

.credibility-list li {
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

/* When it makes sense to talk Section */
.contact-cta {
    background-color: var(--color-bg-section);
}

.contact-list {
    margin-top: 0;
    margin-bottom: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.best-fit {
    font-style: italic;
    color: var(--color-text);
    margin-top: 40px;
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 2px solid var(--color-text);
    max-width: 800px;
    font-family: var(--font-body);
}

.cta-link {
    margin-top: 32px;
    margin-bottom: 0;
}

.cta-link a {
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid transparent;
    font-family: var(--font-body);
}

.cta-link a:hover {
    color: var(--color-brand);
    border-bottom-color: var(--color-brand);
}

/* About Section */
.about {
    background-color: var(--color-bg-section);
}

.about p {
    max-width: 800px;
    font-family: var(--font-body);
}

/* Pull Quote Styles */
.pull-quote {
    margin: 1rem 0;
    padding-left: calc(3 * 24px);
    font-family: var(--font-body);
    font-style: italic;
    color: var(--color-text);
    max-width: 800px;
}

.pull-quote-attribution {
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    font-weight: normal;
    color: var(--color-text);
    font-family: var(--font-body);
}

/* Footer */
.footer {
    background-color: var(--color-bg-section);
    margin: calc(4 * 24px) 0;
}

.footer-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.footer-links li {
    padding-left: 0;
}

.footer-links li::before {
    display: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-light);
    text-decoration: none;
    border-bottom: none;
    font-family: var(--font-body);
    border-bottom: 1px solid var(--color-border);
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.footer-links a:hover,
.footer-links a:active {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
        --spacing-container: 40px;
    }

    .nav-container {
        padding: 0 calc(1 * 24px);
    }

    .nav-links-left,
    .nav-links-right {
        gap: 16px;
    }

    .top-nav a {
        font-size: 13px;
    }


    .card {
        padding: 20px 24px;
    }

    h1 {
        font-size: 48px;
        line-height: 40px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .hero h1 {
        height: 100px;
    }

    h1 .mobile-break {
        display: block;
    }

    h2 {
        font-size: 14px;
        line-height: 20px;
    }

    h2.section-title {
        font-size: 14px;
    }

    h3 {
        font-size: 14px;
        line-height: 20px;
    }


    .intro {
        font-size: 24px;
        line-height: 1.4;
    }

    .name-label {
        font-size: 24px;
    }

    .operate-grid {
        gap: 1.5rem;
    }

    .pull-quote {
        padding-left: calc(1.5 * 24px);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-section: 60px;
        --spacing-container: 24px;
    }

    .card {
        padding: 18px 20px;
    }

    h1 {
        font-size: 48px;
        line-height: 40px;
    }

    h2 {
        font-size: 14px;
        line-height: 20px;
    }

    h2.section-title {
        font-size: 14px;
    }

    h3 {
        font-size: 14px;
        line-height: 20px;
    }

    body {
        font-size: 14px;
        line-height: 20px;
    }
    
    .name-label {
        font-size: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--color-accent);
    z-index: 9999;
    transition: width 0.1s ease-out;
    opacity: 1;
}
