

.page-hero {
    height: 60vh;
    min-height: 400px;
    max-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 800px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(250, 248, 244, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--oak-light);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: rgba(250, 248, 244, 0.4);
}

.breadcrumb span {
    color: var(--oak-light);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(250, 248, 244, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-intro {
    padding: 4rem 8%;
    background: var(--cream);
}

.page-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.page-intro-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.page-intro-content h2 span {
    color: var(--oak-dark);
    font-style: italic;
}

.page-intro-content .lead {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.page-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-intro-image {
    position: relative;
}

.page-intro.centered {
    text-align: center;
}

.page-intro-centered {
    max-width: 700px;
    margin: 0 auto;
}

.page-intro-centered .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.page-intro-centered h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.page-intro-centered h2 span {
    color: var(--oak-dark);
    font-style: italic;
}

.page-intro-centered .lead {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-intro-centered p {
    color: var(--text-light);
    line-height: 1.8;
}

.intro-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.intro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    background: var(--oak);
    opacity: 0.1;
    z-index: -1;
}

.home-services {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

.home-services .section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

.home-service-card {
    background: var(--cream);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.home-service-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.home-service-card:hover .home-service-img img {
    transform: scale(1.05);
}

.home-service-content {
    padding: 1.25rem;
}

.home-service-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--forest);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.home-service-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    text-decoration: none;
}

.services-cta-banner {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    overflow: hidden;
    background: var(--forest);
}

.services-cta-img {
    position: relative;
}

.services-cta-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-cta-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-cta-content .section-tag {
    color: var(--oak-light);
    margin-bottom: 0.5rem;
}

.services-cta-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.services-cta-content p {
    color: rgba(250, 248, 244, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--oak-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.services-cta-link:hover {
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .services-cta-banner {
        grid-template-columns: 1fr;
    }

    .services-cta-img {
        aspect-ratio: 16 / 9;
    }

    .services-cta-content {
        padding: 1.5rem;
    }
}

.services-cta-banner.card-style {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-cta-banner.card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-cta-banner.card-style .services-cta-img {
    aspect-ratio: 4 / 3;
}

.services-cta-banner.card-style .services-cta-img img {
    transition: transform 0.6s ease;
}

.services-cta-banner.card-style:hover .services-cta-img img {
    transform: scale(1.05);
}

.services-cta-banner.card-style .services-cta-content {
    padding: 1.25rem;
}

.services-cta-banner.card-style .services-cta-content h3 {
    font-size: 1.3rem;
}

.services-cta-banner.card-style .services-cta-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.page-quote {
    background: var(--forest);
    padding: 3rem 8%;
}

.page-quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--oak);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: -0.5rem;
}

.page-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.page-quote cite {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-style: normal;
    color: var(--oak-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.page-gallery {
    padding: 4rem 8%;
    background: var(--cream);
}

.page-gallery .section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.page-gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.page-gallery-item:hover img {
    transform: scale(1.05);
}

.page-gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
}

.btn-outline-dark:hover {
    background: var(--forest);
    color: var(--cream);
}

.page-cta {
    position: relative;
    padding: 4rem 8%;
    overflow: hidden;
}

.page-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.page-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.page-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.section-tag-light {
    color: var(--oak-light);
}

.page-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.page-cta p {
    color: rgba(250, 248, 244, 0.8);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

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

.related-services {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

.intro-img-wrapper.avatar {
    aspect-ratio: 1 / 1;
    max-width: 180px;
    border-radius: 50%;
    margin: 0 auto;
}

.intro-img-wrapper.avatar img {
    border-radius: 50%;
}

.page-gallery-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-section {
    padding: 4rem 8%;
    background: var(--cream);
}

.team-section.alt {
    background: var(--cream-mid);
}

.team-section-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--cream-dark);
}

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

.team-section .section-tag {
    margin-bottom: 0.75rem;
}

.team-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.team-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--oak-dark);
    margin-bottom: 1rem;
}

.team-section p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 0.75rem;
}

.team-section p.lead {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-cta-section {
    padding: 4rem 8%;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.contact-cta-section.has-bg {
    background: transparent;
}

.contact-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.contact-cta-inner {
    position: relative;
    z-index: 1;
}

.contact-cta-section .section-header {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-cta-section .section-tag {
    color: var(--oak-light);
}

.contact-cta-section .section-title {
    color: var(--cream);
}

.contact-cta-section .section-header p {
    color: rgba(250, 248, 244, 0.8);
    margin-top: 0.75rem;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta-card {
    background: rgba(250, 248, 244, 0.08);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 248, 244, 0.1);
}

.contact-cta-card:hover {
    background: rgba(250, 248, 244, 0.12);
    transform: translateY(-3px);
}

.contact-cta-icon {
    width: 50px;
    height: 50px;
    background: var(--oak);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-cta-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--forest);
}

.contact-cta-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.contact-cta-card p {
    color: rgba(250, 248, 244, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-gallery-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .contact-cta-card {
        padding: 1.5rem;
    }

    .team-section {
        padding: 2.5rem 5%;
    }
}

.related-services .section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.related-service-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.related-service-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.related-service-card:hover .related-service-img img {
    transform: scale(1.05);
}

.related-service-content {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-service-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--forest);
    font-weight: 500;
}

.related-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--oak-dark);
    transition: gap 0.3s ease;
}

.related-service-card:hover .related-service-link {
    gap: 0.6rem;
}

.related-service-link svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 1200px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .page-intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .page-intro-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .intro-accent {
        display: none;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 320px;
        max-height: 450px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .page-intro,
    .home-services,
    .page-gallery,
    .related-services {
        padding: 2.5rem 5%;
    }

    .page-quote {
        padding: 2rem 5%;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .page-quote blockquote {
        font-size: 1.15rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .page-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-cta {
        padding: 2.5rem 5%;
    }

    .page-cta-buttons {
        flex-direction: column;
    }

    .page-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 45vh;
        min-height: 280px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .page-intro-content h2 {
        font-size: 1.5rem;
    }

    .home-service-content {
        padding: 1.25rem;
    }

    .home-service-content h3 {
        font-size: 1.2rem;
    }

    .page-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-filter-section {
    padding: 2rem 8%;
    background: var(--cream);
}

.gallery-filter-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filter-container .section-header {
    margin-bottom: 1.5rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--cream-mid);
    color: var(--text);
    border: 1px solid var(--cream-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.gallery-filter-btn:hover {
    background: var(--oak-light);
    color: var(--cream);
    border-color: var(--oak-light);
}

.gallery-filter-btn.active {
    background: var(--oak-dark);
    color: var(--cream);
    border-color: var(--oak-dark);
}

.main-gallery {
    padding: 0 8% 4rem;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-item:hover .gallery-item-img img {
    transform: scale(1.05);
}

.gallery-cta {
    padding: 3rem 8%;
    background: var(--cream-mid);
    text-align: center;
}

.gallery-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.gallery-cta .section-tag {
    color: var(--oak-dark);
    margin-bottom: 0.75rem;
}

.gallery-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.gallery-cta p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-filter-section {
        padding: 1.5rem 5%;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .gallery-filter-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }

    .main-gallery {
        padding: 0 5% 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-cta {
        padding: 2.5rem 5%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        flex-direction: column;
    }

    .gallery-filter-btn {
        width: 100%;
        text-align: center;
    }
}

.contact-main {
    padding: 4rem 8%;
    background: var(--cream);
}

.contact-main-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main .contact-form-wrapper {
    background: var(--cream-mid);
    padding: 2.5rem;
}

.contact-main .contact-form-wrapper h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.contact-main .contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-main #contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-details-card {
    background: var(--forest);
    padding: 2rem;
}

.contact-details-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    stroke: var(--oak);
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
    color: rgba(250, 248, 244, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--oak);
}

.contact-team-section {
    background: var(--cream-mid);
    padding: 1.5rem;
}

.contact-team-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1rem;
}

.contact-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-person-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.contact-person-item strong {
    display: block;
    color: var(--forest);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-person-item span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.contact-team-text {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.contact-main .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.contact-main .contact-form-wrapper,
.contact-details {
    height: 100%;
}

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

.contact-team-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
    }

    .contact-details {
        order: -1;
    }
}

@media (max-width: 600px) {
    .contact-main {
        padding: 2rem 5%;
    }

    .contact-main .contact-form-wrapper,
    .contact-details-card,
    .contact-person-card {
        padding: 1.5rem;
    }
}

.contact-info-section {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--cream);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--oak);
}

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

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

.contact-info-card p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--oak-dark);
}

.contact-form-section {
    padding: 4rem 8%;
    background: var(--cream);
}

.contact-form-section .contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--cream);
    padding: 0;
}

.contact-form-section .contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-section #contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-section {
    padding: 0;
    background: var(--cream-mid);
}

.map-wrapper {
    max-width: 100%;
    margin: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 2.5rem 5%;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2.5rem 5%;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-info-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}

.job-listing-section {
    padding: 4rem 8%;
    background: var(--cream);
}

.job-listing-container {
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background: var(--cream-mid);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.job-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.job-card .job-type {
    display: inline-block;
    background: var(--oak);
    color: var(--forest);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.job-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.job-card .job-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.job-card .job-contact p {
    margin-bottom: 0.5rem;
}

.job-card .job-contact a {
    color: var(--oak-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-card .job-contact a:hover {
    color: var(--forest);
}

.job-listing-card {
    background: var(--cream);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--forest);
}

.job-type {
    display: inline-block;
    background: var(--oak);
    color: var(--forest);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-detail-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--oak-dark);
}

.job-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.job-requirements {
    background: var(--cream-mid);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-requirements h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.job-requirements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--oak);
    border-radius: 50%;
}

.job-contact {
    border-top: 1px solid var(--cream-dark);
    padding-top: 1.5rem;
}

.job-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1rem;
}

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

.contact-info .contact-name {
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.contact-info .contact-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--oak-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email svg {
    width: 16px;
    height: 16px;
}

.contact-email:hover {
    color: var(--forest);
}

.why-work-section {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

.why-work-section .section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.why-work-section .home-services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--oak);
}

.intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

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

.intro-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--oak-dark);
    line-height: 1;
}

.intro-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.usp-section {
    padding: 4rem 8%;
    background: var(--cream);
}

.usp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.usp-card {
    background: var(--cream-mid);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.usp-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--oak);
}

.usp-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-section {
    padding: 4rem 8%;
    background: var(--cream-mid);
}

.process-section .section-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--cream);
    padding: 2rem;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--oak);
    color: var(--forest);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 8%;
    background: var(--cream);
}

.faq-section .section-header {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream-mid);
    padding: 1.75rem;
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cta-section {
    padding: 4rem 8%;
    background: var(--forest);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner .section-tag {
    color: var(--oak-light);
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(250, 248, 244, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

@media (max-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .intro-stat-number {
        font-size: 1.75rem;
    }

    .usp-section,
    .process-section,
    .faq-section,
    .cta-section {
        padding: 2.5rem 5%;
    }

    .usp-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .usp-card,
    .process-step,
    .faq-item {
        padding: 1.5rem;
    }

    .job-listing-card {
        padding: 1.5rem;
    }

    .job-header h3 {
        font-size: 1.4rem;
    }

    .job-details {
        gap: 1rem;
    }

    .job-requirements {
        padding: 1rem;
    }

    .why-work-section {
        padding: 2.5rem 5%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--oak);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.3s ease;
    position: absolute;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--oak);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: var(--cream);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-close {
        top: -35px;
        font-size: 1.5rem;
    }
}
