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

/* General Body Styling */
html {
    overflow-y: scroll;
    height: 100%;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #faf7f2;
    color: #2d3a2e;
}

body {
    height: 100%;
}

.desktop {
    display: none;
}

@media (min-width: 1200px) {
    .desktop {
        display: initial;
    }
}

/* ========================= */
/*          HEADER            */
/* ========================= */

header {
    display: grid;
    background-color: #2d3a2e;
    grid-template-columns: auto 1fr auto;
    padding: 5px 20px;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    align-items: center;
}

/* Logo Styling */
a.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
}

a.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
}

header a {
    color: #fff;
    z-index: 5;
    display: flex;
    align-items: center;
}

header nav a {
    text-decoration: none;
    padding: 5px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

header nav.center {
    text-align: center;
    padding-top: 10px;
}

header nav.right {
    text-align: right;
    padding-top: 0;
    margin-left: auto;
}

#menuBtn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
}

.menu-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #faf7f2;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hide middle line on mobile */
.menu-line-mid {
    display: none;
}

/* Mobile: 2 lines compress into 1 */
#menuBtn.active .menu-line:first-child {
    transform: translateY(3.75px);
}

#menuBtn.active .menu-line:last-child {
    transform: translateY(-3.75px);
}

/* Desktop: show all 3 lines */
@media (min-width: 1200px) {
    .menu-line-mid {
        display: block;
    }

    /* 3 lines compress into 1: top and bottom move to center */
    #menuBtn.active .menu-line:first-child {
        transform: translateY(7.5px);
    }

    #menuBtn.active .menu-line-mid {
        opacity: 1;
    }

    #menuBtn.active .menu-line:last-child {
        transform: translateY(-7.5px);
    }
}

#menuBtn:hover .menu-line {
    background-color: #a09b91;
}

/* Desktop Nav Links */
.center.desktop.links {
    background: transparent;
    color: #fff;
    transition: color 0.3s ease;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.center.desktop.links:hover {
    color: #a09b91;
}

#headerLinks {
    margin-top: 0;
}

/* ========================= */
/*         SIDEBAR            */
/* ========================= */

aside {
    position: fixed;
    transition: right 0.4s ease;
    right: -320px;
    width: 320px;
    background-color: #faf7f2;
    padding: 80px 40px;
    z-index: 6;
    height: 100vh;
    border-left: 1px solid #d4cfc6;
}

aside.active {
    right: 0;
}

aside a {
    display: block;
    color: #2d3a2e;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.03em;
}

aside a:hover {
    color: #6b7a6c;
}

aside button.close {
    font-size: 24px;
    border: 0;
    background-color: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    cursor: pointer;
    color: #2d3a2e;
}

.backdrop {
    display: none;
    position: fixed;
    z-index: 5;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.4s ease;
    backdrop-filter: blur(3px);
}

.backdrop.active {
    display: block;
    background-color: rgba(0, 0, 0, 0.2);
}

/* ========================= */
/*         SECTIONS           */
/* ========================= */

section {
    padding: 6rem 2rem;
    padding-top: 80px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    scroll-margin-top: 60px;
}

section + section {
    margin-top: 0;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2d3a2e;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
        padding-top: 80px;
    }

    section h1 {
        font-size: 2rem;
    }

    section p {
        font-size: 1rem;
    }
}

/* ========================= */
/*      ABOUT / HERO          */
/* ========================= */

#aboutsection {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf7f2;
    color: #2d3a2e;
    text-align: center;
    height: 100vh;
    min-height: 600px;
    padding: 60px 2rem 0;
    overflow: hidden;
}

.hero-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

/* ---- Neighborhood Infill Animation ---- */

.neighborhood-container {
    width: 100%;
    height: 40vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.neighborhood {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ground plane */
.street        { fill: #b8b3a8; }
.sidewalk-near { fill: #d4cfc6; }
.sidewalk-far  { fill: #d4cfc6; }

/* Existing buildings — sage tones */
.existing-building .face-top    { fill: #4a5d4b; }
.existing-building .face-right  { fill: #2d3a2e; }
.existing-building .face-left   { fill: #1a241b; }

/* Existing building detail elements */
.ctx-window  { fill: #1a241b; }
.ctx-door    { fill: #243026; }
.roof-right  { fill: #3a4d3b; }
.roof-left   { fill: #2d3a2e; }
.chimney     { fill: #4a5d4b; stroke: none; }
.chimney-top { fill: #3a4d3b; stroke: none; }

/* Infill buildings — terracotta / off-white tones */
.infill-base               { fill: #a09b91; }
.infill-building .face-top  { fill: #d4a574; }
.infill-building .face-right { fill: #c4703f; }
.infill-building .face-left  { fill: #8b5e3c; }

.infill-window { fill: #faf7f2; opacity: 0.7; }
.infill-door   { fill: #faf7f2; opacity: 0.5; }

.parapet { fill: #d4a574; opacity: 0.8; }
.balcony { fill: #a09b91; }

.floor-line {
    stroke: rgba(255,255,255,0.15);
    stroke-width: 0.5;
}

/* Empty lot dashed outlines */
.empty-lot {
    fill: rgba(160, 155, 145, 0.15);
    stroke: #a09b91;
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: fade-lot 0.4s ease-out 1.2s forwards;
}

/* Existing trees */
.existing-tree ellipse { opacity: 0.9; }

/* ---- Animation sequence (8s loop) ---- */
/* 0:00 - Scene visible, empty lot shown
   0:00.5 - Property boundary traces
   0:02 - Building rises from ground
   0:04 - Details bloom (balconies, landscaping)
   0:05.5 - Window glow, pause, then reset */

/* Property boundary trace */
.property-line {
    fill: none;
    stroke: #c4703f;
    stroke-width: 2;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: trace-boundary 0.8s ease-in-out 0.3s forwards;
}

@keyframes trace-boundary {
    to { stroke-dashoffset: 0; }
}

@keyframes fade-lot {
    to { opacity: 0; }
}

/* Building rise (smooth extrude from ground) */
.infill-building {
    transform: translateY(200px);
    opacity: 0;
    animation: grow-up 1.4s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

@keyframes grow-up {
    0%   { transform: translateY(200px); opacity: 0; }
    1%   { opacity: 1; }
    60%  { transform: translateY(-8px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Detail bloom — balconies push out */
.detail-element {
    opacity: 0;
    transform: scale(0.3);
    transform-origin: center bottom;
    animation: bloom-detail 0.4s ease-out 2.8s forwards;
}

@keyframes bloom-detail {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Landscaping springs up after building */
.new-tree, .new-shrub {
    opacity: 0;
    transform: scale(0);
    transform-origin: center bottom;
}

.tree-n1 { animation: plant-tree 0.4s ease-out 3.0s forwards; }
.tree-n2 { animation: plant-tree 0.4s ease-out 3.1s forwards; }
.shrub-1 { animation: plant-tree 0.3s ease-out 3.3s forwards; }
.shrub-2 { animation: plant-tree 0.3s ease-out 3.4s forwards; }
.shrub-3 { animation: plant-tree 0.3s ease-out 3.35s forwards; }

@keyframes plant-tree {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Window glow — warm lights turn on */
.window-glow {
    fill: #f5c96a;
    opacity: 0;
    filter: blur(1.5px);
}

.glow-1 { animation: light-on 0.3s ease-in 3.6s forwards; }
.glow-2 { animation: light-on 0.3s ease-in 3.7s forwards; }
.glow-3 { animation: light-on 0.3s ease-in 3.8s forwards; }
.glow-4 { animation: light-on 0.3s ease-in 3.65s forwards; }
.glow-5 { animation: light-on 0.3s ease-in 3.75s forwards; }
.glow-6 { animation: light-on 0.3s ease-in 3.85s forwards; }
.glow-7 { animation: light-on 0.3s ease-in 3.9s forwards; }
.glow-8 { animation: light-on 0.3s ease-in 4.0s forwards; }

@keyframes light-on {
    to { opacity: 0.85; }
}

/* Golden hour shadow sweep */
.golden-shadow {
    fill: url(#golden-shadow);
    opacity: 0;
    animation: shadow-sweep 1.4s ease-in-out 2.6s forwards;
}

@keyframes shadow-sweep {
    to { opacity: 0.6; }
}

/* People walking along sidewalk */
.person {
    opacity: 0;
}

.person-1 { animation: walk-right 5s linear 4.2s forwards; }
.person-2 { animation: walk-left 5.5s linear 4.5s forwards; }
.person-5 { animation: walk-left-slow 4.5s linear 4.8s forwards; }
.person-6 { animation: bike-ride 3s linear 4.8s forwards; }

@keyframes walk-right {
    0%   { opacity: 0; transform: translateX(0); }
    5%   { opacity: 1; }
    100% { opacity: 1; transform: translateX(120px) translateY(24px); }
}

@keyframes walk-left {
    0%   { opacity: 0; transform: translateX(0); }
    5%   { opacity: 1; }
    100% { opacity: 1; transform: translateX(-120px) translateY(24px); }
}

@keyframes walk-left-slow {
    0%   { opacity: 0; transform: translateX(0); }
    8%   { opacity: 1; }
    100% { opacity: 1; transform: translateX(-80px) translateY(16px); }
}

@keyframes bike-ride {
    0%   { opacity: 0; transform: translateX(0); }
    5%   { opacity: 1; }
    100% { opacity: 1; transform: translateX(200px) translateY(40px); }
}

/* Walking leg/arm swing — full stride cycle that starts and ends at neutral */
/* Person 1: walks 5s from 4.2s */
.person-1 .leg-l { animation: stride-leg 0.5s ease-in-out 4.2s 10 forwards; }
.person-1 .leg-r { animation: stride-leg-r 0.5s ease-in-out 4.2s 10 forwards; }
.person-1 .arm-l { animation: stride-arm-r 0.5s ease-in-out 4.2s 10 forwards; }
.person-1 .arm-r { animation: stride-arm 0.5s ease-in-out 4.2s 10 forwards; }

/* Person 2: walks 5.5s from 4.5s */
.person-2 .leg-l { animation: stride-leg 0.5s ease-in-out 4.5s 11 forwards; }
.person-2 .leg-r { animation: stride-leg-r 0.5s ease-in-out 4.5s 11 forwards; }
.person-2 .arm-l { animation: stride-arm-r 0.5s ease-in-out 4.5s 11 forwards; }
.person-2 .arm-r { animation: stride-arm 0.5s ease-in-out 4.5s 11 forwards; }

/* Person 5 (dog walker): walks 4.5s from 4.8s */
.person-5 .leg-l { animation: stride-leg 0.5s ease-in-out 4.8s 9 forwards; }
.person-5 .leg-r { animation: stride-leg-r 0.5s ease-in-out 4.8s 9 forwards; }
.person-5 .arm-l { animation: stride-arm-r 0.5s ease-in-out 4.8s 9 forwards; }
.person-5 .arm-r { animation: stride-arm 0.5s ease-in-out 4.8s 9 forwards; }

/* Cyclist pedaling: rides 3s from 4.8s */
.cyclist .pedal-l { animation: stride-leg 0.35s ease-in-out 4.8s 9 forwards; }
.cyclist .pedal-r { animation: stride-leg-r 0.35s ease-in-out 4.8s 9 forwards; }

/* Full stride: starts neutral → forward → neutral → back → neutral */
@keyframes stride-leg {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(20deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-20deg); }
    100% { transform: rotate(0deg); }
}
@keyframes stride-leg-r {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-20deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(20deg); }
    100% { transform: rotate(0deg); }
}
@keyframes stride-arm {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(15deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}
@keyframes stride-arm-r {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-15deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Dog legs trot — faster, stops with walker */
.dog-leg-l { animation: stride-leg 0.3s ease-in-out 4.8s 15 forwards; }
.dog-leg-r { animation: stride-leg-r 0.3s ease-in-out 4.8s 15 forwards; }

.about-heading {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2d3a2e;
}

.about-text {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    margin-bottom: 0;
    line-height: 1.6;
    color: #6b7a6c;
    font-weight: 400;
}

.about-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-button.primary {
    background-color: #c4703f;
    color: #fff;
}

.cta-button.primary:hover {
    background-color: #a85d33;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #2d3a2e;
    color: #2d3a2e;
}

.cta-button.secondary:hover {
    background-color: #f0ece4;
}

@media (max-width: 768px) {
    .cta-button {
        font-size: 0.85rem;
        padding: 10px 22px;
    }

    .about-cta {
        margin-top: 0.8rem;
    }

    .hero-group {
        gap: 0;
    }

    .neighborhood-container {
        width: 130%;
        height: 35vh;
        margin-top: -1rem;
    }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .infill-building {
        animation: none;
        transform: translateY(0);
        opacity: 1;
    }

    .property-line {
        animation: none;
        stroke-dashoffset: 0;
    }

    .empty-lot {
        animation: none;
        opacity: 0;
    }

    .detail-element,
    .new-tree,
    .new-shrub {
        animation: none;
        opacity: 1;
        transform: scale(1);
    }

    .window-glow {
        animation: none;
        opacity: 0.85;
    }

    .golden-shadow {
        animation: none;
        opacity: 0.6;
    }

    .person {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .person .leg-l, .person .leg-r,
    .person .arm-l, .person .arm-r,
    .cyclist .pedal-l, .cyclist .pedal-r,
    .dog-leg-l, .dog-leg-r {
        animation: none;
    }
}

/* ========================= */
/*        PROJECTS            */
/* ========================= */

#projectssection {
    text-align: center;
    background-color: #f0ece4;
}

.projects-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3a2e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.projects-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7a6c;
}

.projects-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.project-box {
    display: flex;
    flex-direction: column;
    background-color: #faf7f2;
    border: 1px solid #d4cfc6;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    padding: 0;
    width: 340px;
    min-height: 370px;
    transition: box-shadow 0.3s ease;
}

.project-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-box h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem;
    color: #2d3a2e;
}

.project-box p {
    font-size: 0.95rem;
    color: #6b7a6c;
    margin: 0 1rem 1rem;
}

/* Project carousel */
.project-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-carousel .project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-carousel .project-image.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-arrow.left {
    left: 8px;
}

.photo-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0dbd3;
}

.photo-coming-soon span {
    font-size: 0.95rem;
    color: #6b7a6c;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.carousel-arrow.right {
    right: 8px;
}

.project-link {
    margin: auto auto 1.5rem;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3a2e;
    background-color: transparent;
    border: 1px solid #2d3a2e;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.5;
}

.project-link:hover {
    background-color: #c4703f;
    border-color: #c4703f;
    color: #fff;
}

/* Project card expand/collapse */
.project-details {
    display: none;
    list-style: none;
    padding: 0;
    margin: 1rem 1.5rem;
    text-align: left;
}

.project-details li {
    font-size: 0.95rem;
    color: #2d3a2e;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d4cfc6;
}

.project-details li:last-child {
    border-bottom: none;
}

.project-box.expanded .project-carousel {
    display: none;
}

.project-box.expanded .project-details {
    display: block;
}

@media (max-width: 768px) {
    .projects-grid {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .project-box {
        width: 100%;
        max-width: 400px;
    }

    .project-carousel {
        height: 180px;
    }
}

/* ========================= */
/*        STRATEGY            */
/* ========================= */

#strategysection {
    text-align: center;
    background-color: #faf7f2;
}

.strategy-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.strategy-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2d3a2e;
}

.strategy-text {
    font-size: 1.1rem;
    color: #6b7a6c;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 2rem;
}

.strategy-box {
    background-color: #f0ece4;
    border: 1px solid #d4cfc6;
    border-radius: 4px;
    padding: 24px;
    text-align: left;
    color: #2d3a2e;
    transition: box-shadow 0.3s ease;
}

.strategy-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.strategy-box h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3a2e;
}

.strategy-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7a6c;
}

@media (max-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================= */
/*         PARTNER            */
/* ========================= */

#partnersection {
    text-align: center;
    background-color: #f0ece4;
}

.partner-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2d3a2e;
}

.partner-text {
    font-size: 1.1rem;
    color: #6b7a6c;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #d4cfc6;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #d4cfc6;
}

.faq-question {
    background-color: transparent;
    color: #2d3a2e;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.25rem 0;
    width: 100%;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: #6b7a6c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    padding: 0;
    color: #6b7a6c;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 1.25rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0;
}

/* ========================= */
/*         CONTACT            */
/* ========================= */

#contactsection {
    background: #faf7f2;
    color: #2d3a2e;
    padding: 6rem 2rem 0;
    text-align: center;
    justify-content: center;
}

.contact-content {
    max-width: 800px;
    text-align: center;
    position: relative;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2d3a2e;
}

.headshot-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 1rem auto 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.headshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2d3a2e;
    font-weight: 500;
}

.contact-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #6b7a6c;
}

.contact-details a {
    color: #2d3a2e;
    text-decoration: none;
    border-bottom: 1px solid #d4cfc6;
    transition: border-color 0.3s ease;
}

.contact-details a:hover {
    color: #c4703f;
    border-color: #c4703f;
}

.bio-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0ece4;
    border-radius: 4px;
    text-align: left;
}

.bio-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3a2e;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7a6c;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 2rem;
    }

    .headshot-container {
        width: 100px;
        height: 100px;
    }

    .bio-section {
        padding: 1rem;
    }

    .bio-heading {
        font-size: 1.1rem;
    }

    .bio-text {
        font-size: 0.9rem;
    }
}

/* ========================= */
/*          FOOTER            */
/* ========================= */

.footer {
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid #d4cfc6;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a,
.footer-social a {
    color: #6b7a6c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #c4703f;
}

.footer-social {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #a09b91;
}

/* ========================= */
/*     DESKTOP (>1200px)      */
/* ========================= */

@media (min-width: 1200px) {
    section h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .content {
        max-width: 1000px;
    }

    .about-heading {
        font-size: 5rem;
    }

    .about-text {
        font-size: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 40px;
    }

    .about-cta {
        gap: 24px;
        margin-top: 2rem;
    }

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

    .projects-text {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }

    .projects-grid {
        gap: 32px;
    }

    .project-box {
        width: 450px;
    }

    .project-carousel {
        height: 280px;
    }

    .project-box h2 {
        font-size: 1.4rem;
    }

    .project-box p {
        font-size: 1.05rem;
    }

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

    .strategy-text {
        font-size: 1.3rem;
        max-width: 1000px;
    }

    .strategy-grid {
        gap: 24px;
        grid-template-columns: repeat(3, 1fr);
    }

    .strategy-box {
        padding: 30px;
    }

    .strategy-box h2 {
        font-size: 1.4rem;
    }

    .strategy-box p {
        font-size: 1.05rem;
    }

    .partner-content {
        max-width: 1000px;
    }

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

    .partner-text {
        font-size: 1.3rem;
    }

    .faq {
        max-width: 1000px;
    }

    .faq-question {
        font-size: 1.15rem;
    }

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

    .headshot-container {
        width: 150px;
        height: 150px;
    }

    .contact-text {
        font-size: 1.15rem;
    }

    .contact-details p {
        font-size: 1.1rem;
    }

    .bio-section {
        padding: 2rem;
        max-width: 600px;
    }

    .bio-heading {
        font-size: 1.4rem;
    }

    .bio-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
    }

    .footer-links a,
    .footer-social a {
        font-size: 0.85rem;
    }
}
