html {
    scroll-behavior: smooth;
}

/* Base Styles */
:root {
    /* Colors from Brand Guide */
    --brand-dark-blue: #112446;
    --brand-gold: #997910;
    --brand-off-white: #f8f0d4;
    --brand-dark-green: #053827;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--brand-off-white);
}

a {
    text-decoration: none;
}

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

/* Header Section */
.header {
    background-color: var(--brand-dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-logo {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust height as needed */
    width: auto;
}

.header-action {
    position: absolute;
    right: 40px;
}

.header-shield-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--brand-off-white);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-off-white);
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: none;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation .nav-link:hover,
.navigation .nav-link.active {
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--brand-gold);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
    background-color: #bfa43e;
    /* Lighter gold for hover */
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    /* slightly taller hero to match proportion */
    min-height: 600px;
    background: url('../images/headshot-hero.jpg') center 50% / cover no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Move content to the top instead of center */
    padding-top: 8vh;
    /* Push it down from the very top */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.hero-foreground {
    background-image: url('../images/headshot-hero-foreground.png');
    z-index: 3;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--brand-dark-blue);
    border-bottom: 1px solid #eee;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-content-col {
    position: relative;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
}

.about-divider {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 2px;
    background-color: var(--brand-gold);
}

.about-text-wrapper {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.5;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: var(--brand-dark-blue);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Approach Section v2 */
.approach-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.approach-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.approach-left {
    display: flex;
    flex-direction: column;
}

.approach-heading {
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-dark-blue);
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1;
}

.approach-video-spot {
    width: 100%;
    flex: 1;
    /* Allow container to take up all remaining vertical space */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Slightly smoother rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-video {
    position: absolute;
    top: -25%;
    /* Push video up by 25% of container height */
    left: 0;
    width: 100%;
    height: 125%;
    /* Make video 25% taller (cuts exactly 20% of its total height off the top) */
    object-fit: cover;
}

.approach-steps {
    display: flex;
    flex-direction: column;
}

.step {
    padding: 20px 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--brand-dark-blue);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.step p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-divider {
    height: 1px;
    background-color: var(--brand-dark-blue);
    margin: 10px 0;
    width: 100%;
}

/* Integrity / Experience Section */
.integrity-section {
    padding: 80px 0;
    background-color: var(--brand-off-white);
}

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

.brand-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--brand-gold);
    letter-spacing: 4px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.integrity-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Right column is wider */
    gap: 60px;
    align-items: stretch;
}

.integrity-image-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.integrity-img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    /* Optional shadow depending on preference */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resume-button-container {
    display: flex;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--brand-dark-blue);
    padding: 2px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--brand-dark-blue);
    padding: 20px 40px;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: var(--brand-dark-blue);
    color: var(--brand-off-white);
}

.integrity-content-col {
    display: flex;
    flex-direction: column;
}

.integrity-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--brand-dark-blue);
    line-height: 1.1;
    margin-bottom: 20px;
}

.integrity-heading-divider {
    height: 3px;
    width: 150px;
    background-color: var(--brand-gold);
    margin-bottom: 40px;
}

.integrity-subheading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 20px;
}

.integrity-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
    /* Slightly bolder paragraph text */
}

.experience-block {
    margin-bottom: 30px;
}

.experience-title {
    font-size: 2rem;
    font-weight: 900;
    color: #0c182a;
    margin-bottom: 15px;
}

.experience-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
}

.experience-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.experience-divider {
    height: 1px;
    background-color: #000;
    width: 100%;
    margin: 30px 0;
}

.experience-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-dark {
    display: inline-block;
    background-color: #172a45;
    color: #ffffff;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: #0c182a;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid,
    .approach-grid-v2,
    .integrity-grid {
        grid-template-columns: 1fr;
    }

    .about-content-col {
        padding-left: 20px;
    }

    .approach-heading {
        font-size: 3rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .approach-video-spot {
        min-height: 400px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .header-logo,
    .header-action {
        position: static;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navigation {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Latest Insights Section */
.insights-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.insights-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--brand-dark-blue);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.insights-divider {
    height: 3px;
    width: 100px;
    background-color: var(--brand-gold);
    margin: 0 auto 60px auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--brand-off-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--brand-dark-blue);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-gold);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.insight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.insight-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Specific Card Styling (Optional variations) */
.linkedin-card:hover .insight-icon {
    color: #0077b5;
}

.tiktok-card:hover .insight-icon {
    color: #000000;
}

.instagram-card:hover .insight-icon {
    color: #E1306C;
}

/* Responsive adjustments for insights */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.integrity-footer {
    background-color: var(--brand-dark-blue);
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 80px;
    font-family: 'Roboto', sans-serif;
}

.footer-btn {
    display: inline-block;
    background-color: #ffffff;
    color: var(--brand-dark-blue);
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    /* Square button as per image */
    margin-bottom: 140px;
}

.footer-btn:hover {
    background-color: #e0e0e0;
}

.footer-link {
    display: inline-block;
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.footer-link:hover {
    background-color: var(--brand-gold);
    color: #ffffff;
}

.integrity-footer {
    position: relative;
    /* To allow absolute positioning of the bottom bar */
}

.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom-right {
    color: #a0aec0;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Responsive adjustment for footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .footer-bottom-center {
        text-align: center;
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Founding 100 Section */
.founding-100 {
    padding: 100px 0;
    background-color: #f7f9fa;
    /* Sleek light grey background */
    border-top: 1px solid #e1e4e8;
    border-bottom: 1px solid #e1e4e8;
}

.founding-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.founding-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-dark-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.founding-tagline {
    font-size: 1.5rem;
    color: var(--brand-gold);
    font-weight: 500;
    margin-bottom: 30px;
}

.founding-divider {
    height: 3px;
    width: 80px;
    background-color: var(--brand-dark-blue);
    margin-bottom: 30px;
}

.founding-body {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    max-width: 90%;
}

.founding-form-container {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #efefef;
}

.founding-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founding-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.founding-form input:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.consent-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background-color: rgba(212, 175, 55, 0.05);
    /* Very subtle gold tint */
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.consent-container:hover {
    background-color: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.consent-text {
    font-size: 0.95rem;
    color: var(--brand-dark-blue);
    line-height: 1.4;
    font-weight: 500;
}

.disclosure-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
}

.disclosure-text a {
    color: var(--brand-gold);
    text-decoration: underline;
}

.btn-gold-fill {
    background-color: var(--brand-gold);
    color: #ffffff;
    padding: 18px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-gold-fill:hover {
    background-color: #8a6c0e;
}

.founding-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

@media (max-width: 992px) {
    .founding-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founding-title {
        font-size: 2.8rem;
    }
}