@font-face {
    font-family: 'Brandon Grotesque';
    src: url('Brandon_reg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #949c73;
    --primary-light: #b0b89a;
    --primary-lighter: #c4ccb3;
    --primary-dark: #7a8260;
    --primary-darker: #6b7355;
    --dark: #3a3939;
    --dark-light: #5a5959;
    --dark-lighter: #6a6969;
    --accent: #b0b89a;
    --accent-light: #c4ccb3;
    --accent-lighter: #d8dfcc;
    --bg-light: #f5f6f2;
    --bg-lighter: #fafbf9;
    --bg-white: #ffffff;
    --text-primary: #3a3939;
    --text-secondary: #5a5959;
    --border: #d4d8c8;
    --shadow: rgba(58, 57, 57, 0.1);
    --shadow-dark: rgba(58, 57, 57, 0.15);
    --gradient-start: #949c73;
    --gradient-end: #7a8260;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* All headings use Montserrat */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(58, 57, 57, 0.15), 0 2px 10px rgba(58, 57, 57, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    border: none;
    min-height: 95px;
}




.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 240px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-dark);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 95px 0 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    height: calc(100vh - 95px);
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    padding: 2rem 0;
    width: fit-content;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding-left: 1rem;
}

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 3rem;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}


.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #c4ccb3 0%, #d8dfcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header.light h2 {
    color: white;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-header.light .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    background: var(--bg-white);
    padding: 0;
    scroll-margin-top: 95px;
    min-height: calc(100vh - 95px);
    height: calc(100vh - 95px);
    display: flex;
    align-items: stretch;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-left {
    background: #f5f3f0;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    height: 100%;
}

.about-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
}

.about-core-message {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-core-message .highlight {
    color: #a63f36;
    font-weight: 700;
}

.about-supporting-text {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-right {
    background: #c9ccbe;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    height: 100%;
}

.stages-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.stages-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-around;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.stage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 1;
}

.stage-item .stage-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a63f36;
    line-height: 1;
    min-width: 50px;
    flex-shrink: 0;
}

.stage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stage-title-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stage-item .stage-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: 0.5px;
}

.about-right .stage-item .stage-title {
    color: #000;
}

.stage-item .stage-subtitle {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--dark);
    margin: 0;
}

.stage-item .stage-subtitle em {
    font-style: italic;
}

.stage-item .stage-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-item .stage-details li {
    font-size: 0.75rem;
    color: var(--dark);
    line-height: 1.5;
    padding: 0.15rem 0;
}

.stage-item .stage-details li::before {
    content: none;
}

.about-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: var(--primary);
}

.card-icon {
    display: none;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stages (now part of About Section) */
.stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stage {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stage:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: var(--primary);
}

.stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.stage-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stage h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.stage-subtitle {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stage-details {
    list-style: none;
}

.stage-details li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    position: relative;
    font-size: 1rem;
}

.stage-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 0;
    background: white;
    min-height: auto;
}

.services-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: calc(100vh - 95px);
    height: calc(100vh - 95px);
}

.services-left {
    flex: 1;
    background-color: #f7f7f5;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.services-right {
    flex: 1;
    background-color: #daddcf;
    /* Light sage green */
    padding: 1.5rem 3rem;
    position: relative;
    border-left: 5px solid #8b946d;
    /* Timeline line */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.services-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a3c34;
    /* Dark green */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
}

.services-intro {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.services-list li {
    font-size: 1rem;
    color: #333;
    /* Black/Dark Grey */
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.services-outro {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.client-outputs-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a3c34;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -4.8rem;
    /* 4rem padding + half border width + nudging */
    top: 0.4rem;
    width: 18px;
    height: 18px;
    background-color: #8b946d;
    border-radius: 50%;
    z-index: 1;
}

/* Since the border is 5px, we want the marker centered on it. 
   The border is at the left edge of the content box? No, it's the left border of the div.
   So it is strictly at left: 0 of the box model (if box-sizing is border-box).
   But padding pushes content in.
   So `left: -4rem` (the padding amount) puts us at the border.
   We need to center the 18px marker on the 5px border.
   Border center is at -4rem - 2.5px.
   Marker center needs to be there.
   Marker left = (-4rem - 2.5px) - (18px / 2) = -4rem - 2.5px - 9px = -4rem - 11.5px.
   Let's approximate.
*/
.timeline-marker {
    left: calc(-3rem - 11px);
}


.timeline-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.1rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0;
}

.services-logo {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.services-logo img {
    height: 40px;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

/* Responsive Services */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .services-left,
    .services-right {
        padding: 3rem 2rem;
    }

    .services-right {
        border-left: none;
        border-top: 5px solid #8b946d;
        padding-left: 2rem;
        /* Restore padding */
    }

    .timeline-marker {
        left: -2.6rem;
        /* Adjust for new padding relative to imaginary line? 
        actually on mobile the vertical line is gone or top. 
        Let's make a local vertical line or hide markers. 
        Or keep markers as bullets. */
        position: static;
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-right: 10px;
        margin-bottom: 2px;
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
    }

    .timeline-content h4 {
        display: inline-flex;
        align-items: center;
    }

    .timeline-content h4::before {
        content: '';
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: #8b946d;
        border-radius: 50%;
        margin-right: 10px;
    }

    /* Hide the absolute marker on mobile */
    .timeline-item .timeline-marker {
        display: none;
    }
}

/* Values Section */
.values {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(180, 184, 163, 0.15) 0%, transparent 50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Team Section */
.team {
    background: #f7f7f5;
    padding: 50px 0;
    scroll-margin-top: 95px;
}

.team-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
    padding-left: 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.team-avatar-wrapper {
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 160px;
    height: 160px;
    min-width: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #d8dfcc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar img[alt="Angie Moore"] {
    object-position: center 30%;
}

.team-content {
    width: 100%;
    max-width: 500px;
    /* Constrain width for readability if single column, but in grid it's fine */
}

.team-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.team-separator {
    width: 100%;
    height: 1px;
    background-color: #a63f36;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.team-bio p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-main-heading {
        font-size: 2.5rem;
        padding-left: 0;
        text-align: center;
    }

    .team-member {
        align-items: center;
    }

    .team-content h3 {
        text-align: center;
    }

    .team-content {
        text-align: left;
        /* Keep text left aligned for readability */
    }
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-info>p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark);
}

.contact-cta-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.contact-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    margin-top: 2rem;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 15px 20px;
        min-height: 70px;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 30px rgba(58, 57, 57, 0.15);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:first-child {
        border-top: 1px solid var(--border);
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 0.8rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu .nav-cta {
        margin: 1.5rem 0;
        padding: 1rem 1.5rem !important;
        display: inline-block;
        width: auto;
    }

    .nav-menu li:has(.nav-cta) {
        border: none;
    }

    .hero {
        padding: 70px 0 0;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 70px);
        justify-content: flex-start;
        align-items: center;
    }

    .hero-logo-wrapper {
        order: 1;
        height: auto;
        min-height: auto;
        padding: 1.5rem 1.5rem 1rem;
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-image-wrapper {
        order: 2;
        height: auto;
        min-height: auto;
        padding: 1rem 1.5rem 3rem;
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-image {
        padding-left: 0;
        margin: 0 auto;
        max-width: 100%;
        width: auto;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .stages {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .about {
        height: auto;
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .about-left,
    .about-right {
        height: auto;
        min-height: 50vh;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        box-shadow: 0 2px 15px rgba(58, 57, 57, 0.1);
    }

    .nav-container {
        padding: 12px 15px;
        min-height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu a {
        padding: 1.15rem 1.75rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 70px 0 0;
    }

    .hero-container {
        height: auto;
    }

    .hero-logo-wrapper {
        padding: 5rem 1.5rem 5rem;
    }

    .hero-image-wrapper {
        height: auto;
        min-height: auto;
        padding: 0 0 2rem;
    }

    .hero-image {
        padding-left: 0;
        max-height: 55vh;
    }

    .hero-logo {
        max-width: 320px;
    }

    section {
        padding: 50px 0;
        min-height: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* About Section */
    .about {
        height: auto;
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .about-left,
    .about-right {
        padding: 2.5rem 1.5rem;
        height: auto;
        min-height: auto;
    }

    .about-main-heading {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .about-core-message {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .about-supporting-text {
        font-size: 0.8rem;
    }

    .stages-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .stages-list {
        gap: 1.25rem;
        padding-top: 1.25rem;
    }

    .stage-item {
        gap: 1rem;
    }

    .stage-item .stage-number {
        font-size: 2rem;
        min-width: 40px;
    }

    .stage-title-wrapper {
        flex-wrap: nowrap;
        gap: 0.3rem;
    }

    .stage-item .stage-title {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .stage-item .stage-subtitle {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .stage-item .stage-details li {
        font-size: 0.65rem;
        padding: 0.1rem 0;
    }

    /* Approach Section */
    .about-approach {
        padding: 3rem 1.5rem;
    }

    .approach-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .values-heading {
        font-size: 1.35rem;
    }

    .values-list {
        font-size: 0.8rem;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0.5rem 1rem;
        justify-items: center;
        width: 100%;
    }

    /* Items 1 and 5 (Integrity, Bespoke) - Left column, align right */
    .values-list .value-item:nth-child(1),
    .values-list .value-item:nth-child(5) {
        justify-self: end;
    }

    /* Items 3 and 7 (Passion, Perseverance) - Right column, align left */
    .values-list .value-item:nth-child(3),
    .values-list .value-item:nth-child(7) {
        justify-self: start;
    }

    .values-list .separator {
        display: block;
        margin: 0;
    }

    /* Hide the middle separator (Child 4) to break the line */
    .values-list .separator:nth-child(4) {
        display: none;
    }

    .values-description {
        font-size: 0.8rem;
    }

    .values-section {
        padding: 80px 0;
        min-height: auto;
        display: block;
    }

    .approach-bottom {
        gap: 1.5rem;
        padding: 0;
    }

    /* Services Section */
    .services-container {
        height: auto;
        min-height: auto;
    }

    .services-left,
    .services-right {
        padding: 2.5rem 1.5rem;
    }

    .services-heading {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .services-intro,
    .services-outro {
        font-size: 0.8rem;
    }

    .services-list li {
        font-size: 0.8rem;
    }

    .client-outputs-heading {
        font-size: 1.1rem;
    }

    .timeline-content h4 {
        font-size: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    /* Team Section */
    .team {
        padding: 40px 0;
    }

    .team-main-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-members {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-avatar {
        width: 140px;
        height: 140px;
        min-width: 140px;
    }

    .team-content h3 {
        font-size: 1.4rem;
    }

    .team-bio p {
        font-size: 0.8rem;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0;
    }

    .contact-cta-box {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .contact-cta-box h3 {
        font-size: 1.5rem;
    }

    .contact-cta-box p {
        font-size: 0.8rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

    .contact-form button {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .outputs-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* About Approach Section (Page 2) */
.about-approach {
    background: var(--bg-light);
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-approach-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.approach-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1a3c34;
    /* Dark green */
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}

.venn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.venn-circle {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background-color: rgba(216, 223, 204, 0.9);
    /* Light sage green with opacity for overlap */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
}

.venn-circle.left {
    margin-right: -80px;
    /* Reduced Overlap */
}

.venn-circle.right {
    margin-left: -80px;
    /* Reduced Overlap */
}

.venn-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #a63f36;
    /* Red/Orange */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.venn-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.venn-circle.left .venn-content ul {
    text-align: left;
    /* Align text to the left (away from center) */
    padding-right: 100px;
    /* Push text away from center overlap */
}

.venn-circle.right .venn-content ul {
    text-align: right;
    /* Align text to the right (away from center) */
    padding-left: 100px;
    /* Push text away from center overlap */
}

.venn-content li {
    font-size: 1rem;
    color: #1a3c34;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
}

/* Left Circle: Bullets on the LEFT */
.venn-circle.left .venn-content li::before {
    content: '•';
    color: #a63f36;
    margin-right: 8px;
    font-weight: bold;
}

.venn-circle.left .venn-content li::after {
    content: none;
}

/* Right Circle: Bullets on the RIGHT */
.venn-circle.right .venn-content li::after {
    content: '•';
    color: #a63f36;
    margin-left: 8px;
    font-weight: bold;
}

.venn-circle.right .venn-content li::before {
    content: none;
}

.venn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.venn-logo {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Approach Bottom (Values) */
.values-section {
    padding: 3rem 0;
    background: var(--bg-light);
    min-height: auto;
    display: flex;
    align-items: center;
}

.approach-bottom {
    border-top: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
}

.values-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
}

.values-list {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #a63f36;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.values-list .separator {
    color: var(--text-secondary);
    margin: 0 0.5rem;
    font-weight: 400;
}

.values-description {
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.values-description strong {
    color: var(--dark);
    font-weight: 700;
}

.bottom-logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.bottom-logo img {
    height: 40px;
    width: auto;
    opacity: 0.6;
}

/* Responsive for Approach Section */
@media (max-width: 900px) {
    .venn-container {
        flex-direction: column;
        gap: 0;
        position: relative;
        align-items: center;
        padding: 2rem 0;
    }

    .venn-circle {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 !important;
        border-radius: 50%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .venn-circle.left {
        margin-bottom: -100px !important;
        z-index: 1;
        padding-bottom: 6rem;
    }

    .venn-circle.right {
        z-index: 1;
        padding-top: 5rem;
    }

    .venn-center {
        position: absolute;
        top: 48.5%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 10;
    }

    .venn-content ul {
        text-align: center !important;
        padding: 0 !important;
    }

    .venn-content h3 {
        font-size: 1.1rem;
    }

    .venn-content li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .venn-circle.left .venn-content li::after {
        display: none;
    }

    .venn-circle.right .venn-content li::before {
        content: '•';
        color: #a63f36;
        margin-right: 8px;
        font-weight: bold;
        display: inline;
    }

    .venn-circle.right .venn-content li::after {
        display: none;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 10px 12px;
        min-height: 60px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 2rem;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
    }

    .nav-cta {
        margin: 1.25rem 0;
        padding: 0.9rem 1.5rem !important;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 60px 0 0;
    }

    .hero-container {
        min-height: calc(100vh - 60px);
    }

    .hero-logo-wrapper {
        padding: 2rem 1rem 1rem;
        min-height: auto;
        height: auto;
    }

    .hero-image-wrapper {
        height: auto;
        min-height: auto;
        padding: 0 0 2rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    section {
        padding: 40px 0;
    }

    .about-left,
    .about-right {
        padding: 2rem 1.25rem;
    }

    .about-main-heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-core-message {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .about-supporting-text {
        font-size: 0.75rem;
    }

    .stages-heading {
        font-size: 1rem;
    }

    .stage-item .stage-number {
        font-size: 1.75rem;
        min-width: 35px;
    }

    .stage-item .stage-title {
        font-size: 0.75rem;
    }

    .stage-item .stage-subtitle {
        font-size: 0.6rem;
    }

    .stage-item .stage-details li {
        font-size: 0.6rem;
    }

    .about-approach {
        padding: 2.5rem 1.25rem;
    }

    .about-approach-container {
        gap: 3rem;
    }

    .approach-heading {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .venn-circle {
        max-width: 100%;
        min-height: auto;
        aspect-ratio: 1 / 1;
        padding: 1rem;
        border-radius: 50%;
    }

    .venn-circle.left {
        margin-bottom: -70px !important;
        padding-bottom: 5rem;
    }

    .venn-circle.right {
        padding-top: 4rem;
    }

    .venn-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .venn-content li {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .venn-center {
        width: 120px;
        height: 120px;
        margin: 0;
        position: absolute;
        top: 49%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .values-heading {
        font-size: 1.2rem;
    }

    .values-list {
        font-size: 0.75rem;
    }

    .values-description {
        font-size: 0.75rem;
    }

    .services-left,
    .services-right {
        padding: 2rem 1.25rem;
    }

    .services-heading {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .services-intro,
    .services-outro {
        font-size: 0.75rem;
    }

    .services-list li {
        font-size: 0.75rem;
    }

    .client-outputs-heading {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .timeline {
        gap: 0.85rem;
    }

    .timeline-content h4 {
        font-size: 0.75rem;
    }

    .timeline-content p {
        font-size: 0.75rem;
    }

    .team {
        padding: 35px 0;
    }

    .team-main-heading {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .team-members {
        gap: 2rem;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }

    .team-content h3 {
        font-size: 1.25rem;
    }

    .team-bio p {
        font-size: 0.75rem;
        margin-bottom: 0.65rem;
    }

    .contact-cta-box {
        padding: 1.75rem 1.25rem;
    }

    .contact-cta-box h3 {
        font-size: 1.35rem;
    }

    .contact-cta-box p {
        font-size: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .contact-form label {
        font-size: 0.75rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.75rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form button {
        padding: 0.85rem 1.75rem;
        font-size: 0.75rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-links {
        gap: 1.25rem;
        font-size: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}