h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.intro-title {
    font-size: 30px;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.highlight {
    color: #e64d67;
}

.projects-intro {
    padding: 120px 0;
}

.tech {
    border-bottom: 1px solid #f5f5f4;
}

/* Projects Section */
.projects-section {
    padding: 50px 0;
    position: relative;
}

.projects-heading {
    font-size: 36px;
    line-height: 46px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;

}

/* Projects Grid - 2 Column Layout Overhaul */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    height: auto;
}

/* Hide legacy column wrappers but keep compatibility */
.project-column {
    display: contents;
}

/* Project Card Redesign */
.project-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    background: transparent;
    display: block;
    text-decoration: none;
    margin-bottom: 0;
}

.project-card:hover {
    transform: translateY(-5px);
}

/* Project Image */
.project-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    background: #1c1917;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

/* Metadata Styling */
.project-card-info {
    padding: 0;
    text-align: left;
    margin-top: 25px;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.project-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.project-card-year {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.project-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-weight: 500;
}

.project-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    margin: 0;
    max-width: 90%;
}

/* Responsive styles moved to mobile.css */


.casa-tower {
    height: 260px;
}

.armaco {
    height: 260px;
}

.madinat-jum {
    height: 250px;
}

.ceer-el {
    height: 250px;
}

.cove-2 {
    height: 100px;
}

.project-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

/* Project Overlay - Always at bottom */
.project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0) 100%); */
    padding: 25px 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    transition: background 0.4s ease;
}

.turnkey-title {
    font-size: 58px;
}

/* .project-card:hover .project-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.1) 100%);
} */

/* Project Title */
.project-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400 !important;
    margin: 0;
    line-height: 1.3;
    max-width: 100%;
}

/* Project Icon */
.project-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.project-icon span {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

/* More Projects Button */
.more-projects-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.more-projects-btn:hover {
    color: #ff3b3b;
}

/* Responsive Design */
/* Responsive styles moved to mobile.css */

.project-modal .close-btn {
    position: absolute;
    top: -45px;
    /* Above the card */
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.2s ease;
}

.project-modal .close-btn2:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

.financial {
    height: 360px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
}

.modal-description {
    font-size: 13px;
    font-weight: 400;
}

.intro-description {
    padding-bottom: 10px;
}

/* TURNKEY HOUSE PAGE STYLES */

.turnkey-nav .nav-active {
    color: #ffffff;
    font-weight: 500;
}

.turnkey-nav .nav-inactive {
    color: rgba(255, 255, 255, 0.45);
}

.turnkey-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 20px 0 50px 0;
    overflow: hidden;
    margin-top: 0px;
    text-align: left !important;
    box-sizing: border-box;
}

.turnkey-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.turnkey-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.turnkey-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.1) 100%);
}

.turnkey-hero-content {
    position: relative;
    z-index: 2;
    /* Responsive width handled by Bootstrap .container */
    box-sizing: border-box;
}

.turnkey-hero-subtitle {
    color: #9ca3af;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
}

.turnkey-hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 200;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Responsive styles moved to mobile.css */

/* COMPLETE HOUSE DELIVERY SECTION */
.complete-delivery-section {
    background-color: #0c0c0c;
    padding: 20px 0;
    color: #fff;
    box-sizing: border-box;
}

.complete-delivery-container {
    /* Responsive width handled by Bootstrap .container */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
}

.complete-delivery-left {
    flex: 1;
    max-width: 550px;
}

.complete-delivery-content {
    flex: 1;
}

.complete-delivery-left h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 0;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f5f5f4;
}

.complete-delivery-text {
    text-align: left;
}

.complete-delivery-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.complete-delivery-text p:last-child {
    margin-bottom: 0;
}

.complete-delivery-right {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.stat-card {
    border: 1px solid #1c1917;
    /* Darker border, similar to dark stone/grey */
    background: transparent;
    width: 160px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.stat-value {
    color: #ffffffbf;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1.3;
}

.stat-label {
    color: #57534e;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* RESPONSIVE */
/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* YOUR JOURNEY SECTION */
.journey-section {
    background-color: #0c0c0c;
    padding: 60px 0 40px;
    box-sizing: border-box;
    color: #fff;
}

.journey-container {
    /* Responsive width handled by Bootstrap .container */
    box-sizing: border-box;
}

.journey-header {
    margin-bottom: 25px;
}

.journey-title {
    color: #57534e;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.journey-card {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Partially cut by gaps */
    padding-top: 30px;
    text-align: left;
}

.journey-number {
    color: #57534e;
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.journey-card-title {
    color: #e7e5e4;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 12px 0;
}

.journey-card-desc {
    color: #737373;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* RESPONSIVE JOURNEY */
/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* TURNKEY CTA SECTION */
.turnkey-cta-section {
    background-color: #0c0c0c;
    padding: 60px 0 30px;
    text-align: center;
    box-sizing: border-box;
}

.turnkey-cta-container {
    /* max-width handled by Bootstrap .container */
    box-sizing: border-box;
}

.turnkey-cta-title {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.turnkey-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0c0c0c;
    font-size: 13px;
    font-weight: 400;
    padding: 9px 30px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
}

.turnkey-cta-btn:hover {
    background-color: #f3f4f6;
}

.turnkey-cta-btn .arrow {
    margin-left: 15px;
    font-size: 20px;
    font-weight: 400;
}

/* Responsive styles moved to mobile.css */

/* ==============================
   TURNKEY FOOTER
============================== */
.tk-footer {
    background-color: #0a0a0a;
    padding: 80px 0 0;
    box-sizing: border-box;
}

.tk-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

/* Brand column */
.tk-footer-brand {
    flex: 1;
    max-width: 400px;
}

.tk-footer-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-align: left;
}

.tk-footer-location {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    font-style: italic;
    margin: 0;
    text-align: left;
}

/* Nav columns */
.tk-footer-col {
    flex: 1;
}

.tk-footer-col-title {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 24px 0;
    text-align: left;
}

.tk-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.tk-footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tk-footer-links a:hover {
    color: #e7e5e4;
}

/* Divider */
.tk-footer-divider {
    border: none;
    border-top: 1px solid #1c1917;
}

/* Bottom bar */
.tk-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.tk-footer-copy {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.tk-footer-tagline {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-style: italic;
    margin: 0;
    text-align: right;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* OFFERINGS SECTION - TINY HOUSE PAGE */
.offerings-section {
    background-color: #0c0c0c;
    padding: 60px 0 20px;
    box-sizing: border-box;
    color: #fff;
}

.offerings-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offering-card {
    background: transparent;
    border: 1px solid #1c1917;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.offering-card:hover {
    border-color: #292524;
}

.offering-title {
    color: #ffffffbf;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.offering-desc {
    color: #ffffff59;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 400;
}

.offering-price {
    color: #57534e;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 500;
}

.offering-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* PRECISION STRUCTURES SECTION - TIMBER KITS PAGE */
.precision-structures-section {
    background-color: #0c0c0c;
    padding: 120px 0 20px;
    /* Symmetrical padding removed */
    color: #fff;
    box-sizing: border-box;
}

.precision-structures-container {

    /* Revert to standard */
    margin: 0 auto;
    /* Centered */
    display: flex;
    gap: 120px;
}

.precision-content {
    flex: 0 0 500px;
    text-align: left;
}

.precision-title {
    font-size: 38px;
    font-weight: 200;
    line-height: 45px;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: -0.02em;
}

.precision-text p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.included-side {
    flex: 1;
    margin-top: 15px;
    /* Adjusting starting position to match image */
}

.included-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #292a2c;
}

.included-item {
    display: flex;
    gap: 15px;
    padding: 10px 25px 8px 0;
    border-bottom: 1px solid #292a2c;
}

.included-item .dash {
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

.included-item .item-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* WHO IT'S FOR SECTION - TIMBER KITS PAGE */
.who-its-for-section {
    background-color: #0c0c0c;
    padding: 40px 0;
    box-sizing: border-box;
}

.who-its-for-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.who-its-for-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0px;
    font-weight: 500;
    text-align: left;
}

.who-its-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    border-bottom: .5px solid #292a2c;
    padding: 60px 0;
}

.who-its-for-col {
    border-top: .5px solid #292a2c;
    padding-top: 30px;
}



.who-its-for-col h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.01em;
    text-align: left;
}

.who-its-for-col p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    text-align: left;
}

/* CONTACT PROMPT SECTION */
.contact-prompt-section {
    background-color: #0c0c0c;
    padding: 0 0 40px;
    box-sizing: border-box;
}

.contact-prompt-divider {
    /* Divider width handled by offset or container */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin: 0 auto 80px;
}

.contact-prompt-container {
    text-align: center;
}

.contact-prompt-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.contact-prompt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0c0c0c;
    font-size: 14px;
    font-weight: 500;
    padding: 18px 45px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.contact-prompt-btn:hover {
    background-color: #e5e5e5;
}

.contact-prompt-btn .arrow {
    margin-left: 10px;
}

/* Responsive styles moved to mobile.css */

/* ABOUT PAGE INTRO SECTION */
.about-intro-section {
    background-color: #0c0c0c;
    padding: 160px 0 50px;
    /* Symmetrical horizontal padding removed */
    color: #fff;
    box-sizing: border-box;
    margin-top: 60px;
}

.about-intro-container {
    /* Responsive width handled by Bootstrap .container */
    display: flex;
    gap: 100px;
    align-items: flex-start;
    border-bottom: .5px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 50px;
    width: 100%;
}

.about-intro-content {
    flex: 0 0 600px;
    text-align: left;
}

.about-intro-title {
    font-size: 52px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 60px;
    color: #fff;
    letter-spacing: -0.02em;
}

.about-intro-text p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}


.about-intro-text .highlight {
    color: #fff9;
    font-weight: 400;
}

.about-intro-visual {
    flex: 1.2;
}

.about-intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* NAVIGATION HIGHLIGHTS */
.nav-active {
    color: #fff !important;
    opacity: 1 !important;
}

.nav-inactive {
    color: rgba(255, 255, 255, 0.4) !important;
}


/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* PEOPLE SECTION - ABOUT PAGE */
.people-section {
    background-color: #0c0c0c;
    padding: 20px 0;
    box-sizing: border-box;
}

.people-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.people-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-weight: 300;
    text-align: left;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.people-col {
    border-top: .5px solid rgba(255, 255, 255, 0.09);
    padding-top: 50px;
    text-align: left;
}

.people-col .initial {
    display: block;
    font-size: 14px;
    color: #fff6;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.people-col .name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #fff;
    letter-spacing: -0.01em;
}

.people-col .role {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.people-col .bio {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* ABOUT CTA SECTION */
.about-cta-section {
    background-color: #0c0c0c;
    padding: 50px 0 60px;
    border-top: .5px solid rgba(255, 255, 255, 0.09);
    text-align: center;
    box-sizing: border-box;
}

.about-cta-container {
    /* Responsive width handled by Bootstrap .container */
    display: flex;
    justify-content: center;
}

.about-cta-btn {
    background-color: #fff;
    color: #0c0c0c;
    padding: 11px 45px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.about-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.about-cta-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover .arrow {
    transform: translateX(4px);
}

/* Responsive styles moved to mobile.css */

/* CONTACT PAGE INTRO SECTION */
.contact-intro-section {
    background-color: #0c0c0c;
    padding: 120px 0 50px;
    color: #fff;
    box-sizing: border-box;
    text-align: left;
    margin-top: 60px;
}

.contact-intro-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0px;
    font-weight: 500;
}

.contact-title {
    font-size: 52px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.03em;
    text-align: left;
}


.contact-description {
    color: rgba(255, 255, 255, 0.35);
    font-size: 15px;
    line-height: 1.6;
    max-width: 550px;
    font-weight: 400;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* CONTACT FORM & INFO SECTION */
.contact-form-section {
    background-color: #0c0c0c;
    padding: 20px 0 50px;
    box-sizing: border-box;
}

.contact-form-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 120px;
}

/* Form Styles */
.contact-form-col #contactForm {
    border: none;
    padding: 0;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 2px;
    padding: 18px 20px;
    color: #ffffffa6;
    font-size: 13px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.custom-select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    font-size: 12px;
}

.form-group.full-width {
    margin-bottom: 60px;
}

.contact-submit-btn {
    background-color: #fff;
    color: #0c0c0c;
    border: none;
    padding: 20px 45px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Info Column Styles */
.contact-info-col {
    display: flex;
    flex-direction: column;
}

.info-item {
    border-top: .5px solid rgba(255, 255, 255, 0.09);
    padding: 0px 0;
}

.location-name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffffa6;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    text-align: left;
    margin-top: 10px;
}

.location-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    text-align: left;
}

.info-quote {
    padding-top: 13px;
    text-align: left;
}

.info-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* PROJECTS PAGE HERO */
.projects-hero-section {
    background-color: #0c0c0c;
    padding: 120px 0 40px;
    box-sizing: border-box;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.projects-hero-container {
    /* Responsive width handled by Bootstrap .container */
    padding: 0;
}

.projects-hero-label {
    color: #57534e;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
}

.projects-hero-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 50px;
    font-weight: 400;
}

.projects-filter-bar {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    height: 44px;
    padding: 0 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #737373;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #f5f5f4;
}

.filter-btn.active {
    background: #fff;
    color: #0c0c0c;
    border-color: #fff;
}

/* Responsive styles moved to mobile.css */

/* Projects CTA Section */
.projects-cta {
    padding: 50px 0;
    text-align: center;
    position: relative;
    background-color: #0c0c0c;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* max-width handled by Bootstrap .container if nested */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.projects-cta-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.projects-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #0c0c0c;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.projects-cta-btn:hover {
    background-color: #f5f5f4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.projects-cta-btn svg {
    transition: transform 0.3s ease;
}

.projects-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive styles moved to mobile.css */

/* ==============================
   PROJECT LIGHTBOX
============================== */
.proj-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.proj-lightbox.show {
    opacity: 1;
}

/* Close button — fixed to TOP-RIGHT of the VIEWPORT */
.proj-close {
    position: fixed;
    top: 22px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.proj-close:hover {
    color: #fff;
}

/* Image wrapper — 75% viewport width, height = image height */
.proj-lightbox-inner {
    position: relative;
    display: block;
    width: 75vw;
    max-width: 1100px;
}

/* The image — fills full width of inner, height is natural */
.proj-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: cover;
}

/* Caption — fixed to bottom of the viewport (outside the image) */
.proj-caption {
    position: fixed;
    bottom: 24px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: none;
    pointer-events: none;
    z-index: 10001;
}

.proj-caption-name {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.proj-caption-meta {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Lightbox Navigation */
.proj-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 64px;
    font-weight: 200;
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.proj-prev {
    left: 20px;
}

.proj-next {
    right: 20px;
}

@media (max-width: 1024px) {
    .proj-nav {
        font-size: 48px;
        padding: 10px;
    }
    .proj-prev { left: 10px; }
    .proj-next { right: 10px; }
}

@media (max-width: 768px) {
    .proj-nav {
        display: none; /* Hide on small mobile to avoid overlap, use swipe/keyboard or just close */
    }
}

/* ABOUT PAGE HERO SECTION Styling */
.about-intro-section {
    background-color: #0c0c0c;
    padding: 120px 0 50px;
    color: #fff;
    box-sizing: border-box;
    text-align: left;
    margin-top: 60px;
}

.about-intro-container {
    /* Responsive width handled by Bootstrap .container */
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-hero-label {
    color: #ffffff40;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-intro-content {
    flex: 1.2;
}

.about-intro-visual {
    flex: 1;
}

.about-intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}