body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
    margin: 0px;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: 0.6;
    z-index: 3;
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: 0.8;
    z-index: 3;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}

p {
    font-style: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 26px;
}

body {
    background: #111;
    font-family: sans-serif;
}

/* NAVBAR */
.climate-feature span {
    font-style: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: 0.4s;
    /* Horizontal padding removed to align with container */
}

nav.scrolled {
    background: #0c0c0c;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-container {
    /* Revert to standard - max-width and margin handled by .container */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;

}

/* Standardize content width to 1280px as per design requirements */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px !important;
    }
}

.logo {
    display: flex;
    gap: 6px;
    cursor: pointer;
    text-transform: uppercase;
    align-items: center;
}

.logo span {
    font-size: 20px;
    letter-spacing: 6px;
    font-weight: 300;
}

.kazu {
    color: #5a9a5a !important;
    opacity: 0.7 !important;
}

.plus {
    color: #737373 !important;
    margin-right: -4px;
    opacity: 1 !important;
}

.haus {
    color: #a4812a !important;
    opacity: 0.7 !important;
}

/* NAV MIDDLE DIVIDER */
.nav-divider {
    width: 1px;
    height: 20px;
    background-color: #737373;
    opacity: 0.45;
    flex-shrink: 0;
    align-self: center;
}

.video-box {
    position: relative;
    cursor: pointer;
}

.video-box img {
    width: 100%;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* PLAY ICON */
.play-btn::after {
    content: '';
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* WAVE EFFECT */
.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: wave 1.5s infinite;
    z-index: -1;
}

.play-btn span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: wave 1.5s infinite;
    animation-delay: 0.6s;
    z-index: -1;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

/* VIDEO */
.modal video {
    width: 80%;
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CLOSE BUTTON */
.close-btn1 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 15%;
    right: 20%;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Refining gap for medium desktops to prevent overcrowding as seen in 1500px images */
@media (max-width: 1550px) {
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 1300px) {
    .nav-links {
        gap: 10px;
    }
    .nav-links a {
        font-size: 11px !important;
    }
}

/* Wider screens: increase spacing between menu items to breathe on large viewports */
@media (min-width: 1551px) {
    .nav-links {
        gap: 36px;
    }
}

.nav-links a {
    text-decoration: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.3px !important;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a.nav-active {
    color: #fff;
    opacity: 1;
}

.nav-links a:hover {
    color: #fff;
    opacity: 1;
}

/* MOBILE MENU BUTTON */

.menu-btn {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0c0c0c;
    display: flex;
    z-index: 1001;
    /* Higher than navbar */
    flex-direction: column;
    align-items: flex-start;
    /* Alignment to Left */
    justify-content: flex-start;
    padding: 100px 40px;
    /* Space from Edge */
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu button {
    background: none;
    border: none;
    font-size: 16px;
    /* Slightly refined size */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    /* Alignment to Left */
}

.mobile-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: #fff;
    z-index: 10;
}

.mobile-menu button:hover {
    color: white;
}

/* RESPONSIVE */

/* Responsive styles moved to mobile.css */

section {
    padding: 80px 0 0;
    /* Horizontal padding removed to rely on Bootstrap .container */
    text-align: left;
    color: white;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    text-align: left;
    padding: 100px 0 0;
    /* Account for fixed navbar (100px height) */
}

/* BACKGROUND */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.6));
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width removed to let Bootstrap .container handle it */
    /* padding: 20px 40px; */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    padding-bottom: 20px;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.climate-image1 {
    display: none;
}

.climate-image2 {
    display: none;
}

.climate-feature-text {
    text-align: left !important;
}

.deer span {
    text-align: left !important;
}

/* Responsive styles moved to mobile.css */

/* HERO NEW TYPOGRAPHY & STATS */
.hero-stats-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
}

/* LABEL */
/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive styles moved to mobile.css */

.hero-label {
    color: #fff9;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: none;
    /* Removed as per mockup */
}

/* TITLE */

.hero-title {
    font-size: clamp(56px, 6vw, 96px);
    margin-top: 0px !important;
    font-weight: 200;
    text-align: left;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* TEXT */

.hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-description {
    display: none;
    /* Merged into subtitle as per mockup */
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary {
    padding: 18px 36px;
    background: #fff;
    color: #0c0c0c;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #f5f5f4;
    border-color: #f5f5f4;
}

.btn-outline {
    padding: 18px 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


/* LOCATION */

.hero-location {
    color: #fff6;
    font-size: 14px;
    text-align: left;
}

/* BOTTOM TEXT */

.hero-bottom {
    position: absolute;
    bottom: 25px;
    left: 40px;
    right: 40px;
    /* Symmetrical */
    text-align: left;
}

.hero-bottom p {
    color: #ffffff4d;
    font-size: 14px;
    font-style: italic;
}

/* RESPONSIVE */

/* Responsive styles moved to mobile.css */

#intro {
    padding: 120px 0;
    background: #0c0c0c;
    color: #fff;
    padding-bottom: 50px;
}

.intro-container {
    /* Responsive width and centering handled by Bootstrap .container */
    width: 100%;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 89px;
}

.intro-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 40px;
}

.intro-heading {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 200;
    color: #fff;
    margin: 0;
    /* max-width: 90%; */
    letter-spacing: -0.015em;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-bottom: 30px;
}

.intro-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0 35px;
}

.intro-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 48px;
    margin-bottom: 35px;
}

.metric-item {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1.5px;
}

.section-title-large {
    font-size: 30px;
}

.intro-locations {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Responsive styles moved to mobile.css */


/* Responsive */

/* Responsive styles moved to mobile.css */

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all .8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateX(0);
}

.flower-section {
    padding: 120px 0;
    text-align: left;
    background: #000;
}

.flower-container {
    /* Responsive margin/padding handled by Bootstrap container in HTML */
    width: 100%;
}

.flower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.flower-image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.flower-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flower-tag {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.flower-title {
    font-size: 36px;
    line-height: 40px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

.flower-subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #a8a29e;
}

.flower-text {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    font-weight: 400;
    color: #a8a29e;
}

.flower-text strong {
    color: #d6d3d1;
    font-weight: 500;
}

.flower-list {
    margin-top: 35px;
}

.flower-list-title {
    color: #e7e5e4;
    font-size: 14px;
    margin-bottom: 15px;
}

.flower-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8a29e;
    margin-bottom: 12px;
    font-size: 14px;
}

.flower-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #78350f4d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b99;
    font-size: 12px;
}

.flower-footer-text {
    margin-top: 30px;
    font-style: italic;
    color: #78716c;
    font-size: 14px;
}

/* animation */

.flower-animate-left,
.flower-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .8s ease;
}

.flower-animate-left {
    transform: translateX(-40px);
}

.flower-show {
    opacity: 1;
    transform: translateX(0);
}

/* responsive */

@media(max-width:900px) {

    .flower-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flower-title {
        font-size: 32px;
    }

}

.lion {
    padding: 120px 40px;
    background: #0c0a09;
    text-align: left;
}

.elephant {
    max-width: 1600px;
    margin: 0;
}

.tiger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sparrow {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.eagle {
    font-size: 36px;
    line-height: 40px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

.parrot {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #a8a29e;
    margin-bottom: 10px;
}

.rabbit {
    color: #a8a29e;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 15px;
}

.fox {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #a8a29e;
    margin-bottom: 10px;
}

.herd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.deer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panda {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(120, 53, 15, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panda svg {
    width: 18px;
    height: 18px;
    stroke: #f59e0b99;
}

.deer span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400 !important;
    color: #a8a29e;
}

.whale {
    color: #d6d3d1;
    font-size: 16px;
    font-weight: 400;
    margin-top: 40px;
}

.giraffe {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.giraffe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* animation */

.wolf {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.leopard {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

/* responsive */

/* Responsive styles moved to mobile.css */

.ant {
    padding: 120px 40px;
    text-align: left;
}

.beetle {
    max-width: 1600px;
    margin: 0;
}

.butterfly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.caterpillar {
    position: sticky;
    top: 120px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.caterpillar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dragonfly {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.firefly {
    font-size: 36px;
    line-height: 40px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

.grasshopper {
    color: #a8a29e;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.grasshopper strong {
    color: #d6d3d1;
    font-weight: 500;
}

.grasshopper p {
    text-align: left;
}

.hive {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ladybug {
    display: flex;
    gap: 20px;
}

.mantis {
    width: 48px;
    height: 48px;
    background: #292524;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mantis i {
    color: rgba(245, 158, 11, 0.7);
    font-size: 18px;
}

.ladybug h3 {
    margin: 0;
    font-size: 16px;
    color: #e7e5e4;
    margin-bottom: 5px;
}

.ladybug p {
    margin: 0;
    font-size: 14px;
    color: #a8a29e;
    line-height: 1.6;
}

.mosquito {
    color: #78716c;
    font-size: 14px;
    margin-top: 40px;
    font-style: italic;
}

.termite {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s;
}

.wasp {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s;
}

.crawl {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive styles moved to mobile.css */

.project-modal {
    display: none;
    position: fixed;
    z-index: 2100;
    /* Higher than contact modal just in case */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    max-height: 100vh;
    /* Prevent overlay from scrolling */
    background-color: rgba(0, 0, 0, 0.9);
    /* Darker overlay */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}


.project-modal .modal-content {
    background-color: #121212;
    /* Dark card background */
    margin: auto;
    width: 100%;
    max-width: 870px;

    /* Consistent minimum height */
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: visible;
    /* Allow close button outside */
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-modal.show .modal-content {
    transform: scale(1);
}

.site-footer {
    margin-bottom: -2px;
}

.modal-image-container {
    width: 100%;
    height: auto;
    max-height: 65vh;
    /* Limit height to allow title area visibility */
    overflow-y: auto;
    /* Enable internal scrolling for tall images */
    display: flex;
    /* Support centering */
    justify-content: center;
    /* Center horizontally */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    /* CRITICAL: anchor for buttons */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.modal-image-container {
    position: relative;
    width: 100%;
    /* Ensure sizing */
}

.modal-image-container img {
    width: auto;
    /* Allow natural width */
    max-width: 100%;
    /* Don't overflow container */
    height: auto;
    /* Allow image to grow to its natural proportions */
    display: block;
    object-fit: contain;
    /* Ensure full image is visible */
    padding: 15px;
    border-radius: 25px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.modal-details {
    padding: 15px;
    color: #fff;
    display: none;
    background: #121212;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700 !important;
    margin-bottom: 15px;
    color: #fff;
}

.modal-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

/* Close Button Centered Outside Top */
.project-modal .close-btn2 {
    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);
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
    /* Slightly or more visible */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 105;
    /* Above image */
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    /* Premium feel */
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.modal-prev-btn {
    left: 22px;
}

.modal-next-btn {
    right: 22px;
}

.modal-nav-btn svg {
    color: #000;
    opacity: 0.4;
}

.modal-nav-btn:hover svg {
    opacity: 1;
}

/* Hide navigation buttons on small screens */
/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

.about-section {
    padding: 140px 0;
    text-align: left;
    background: #0c0a09;
}

.about-section1 {
    padding: 140px 0 20px !important;
    text-align: left;
    background: #1c1917;
}

.about-container {
    /* Responsive width handled by Bootstrap .container */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* SCROLL ANIMATION */

.about-container21.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-container21 {
    /* Responsive width handled by Bootstrap .container */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* SCROLL ANIMATION */

.about-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-container1 {
    /* Responsive width handled by Bootstrap .container */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* SCROLL ANIMATION */

.about-container1.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LABEL */

.about-label {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* TITLE */

.about-title {
    font-size: 36px;
    line-height: 40px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* TEXT */

.about-text {
    color: #a8a29e;
    font-size: 16px;
    line-height: 1.7;
}

.about-text strong {
    color: #e5e5e5;
    font-weight: 500;
}

/* HARMONY BOX */

.harmony-box {
    margin-top: 60px;
    padding: 40px;
    background: #1c1917;
    border: 1px solid #1c1917;
}

.harmony-title {
    color: #e7e5e4;
    font-size: 16px;
    margin-bottom: 5px;
}

.harmony-meaning {
    color: #f59e0bb3;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 25px;
}

.harmony-between {
    color: #a8a29e;
    margin-bottom: 15px;
}

/* LIST */

.harmony-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.harmony-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a8a29e;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9770666;
}

/* END TEXT */

.about-end {
    margin-top: 40px;
    color: #a8a29e;
    font-size: 16px;
    line-height: 1.7;
}

/* RESPONSIVE */

/* Responsive styles moved to mobile.css */

.tokyo {
    padding: 120px 0;
    text-align: left;
    background: #1c1917;
}

/* container */
.kyoto {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
    display: block;
}

.kyoto21 {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
    display: block;
}

/* small title */
.osaka {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* main title */
.nara {
    font-size: 36px;
    line-height: 40px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* description */
.nagoya {
    color: #a8a29e;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    max-width: 800px;
    margin-bottom: 80px;
}

/* team wrapper - styles defined on children */

/* team item */
.hiroshima {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* avatar */
.fukuoka {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #292524;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.fukuoka i {
    color: #78716c;
    font-size: 32px;
}

/* name */
.kobe {
    color: #f5f5f4;
    font-size: 18px;
    margin-bottom: 5px;
}

/* role */
.yokohama {
    color: #f59e0bb3;
    font-size: 16px;
}

/* bio */
.sendai p {
    color: #a8a29e;
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Responsive styles moved to mobile.css */

.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

.element-section {
    padding: 120px 0;
    background: #0c0a09;
}

.element-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.element-head {
    text-align: left;
    margin-bottom: 80px;
}

.element-small-title {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.element-main-title {
    font-size: 36px;
    line-height: 46px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

.element-description {
    color: #a8a29e;
    font-size: 16px;
    text-align: justify !important;
    line-height: 1.8;
    max-width: 650px;
    margin: 0;
}

.element-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.element-step {
    position: relative;
}

.element-step-number {
    font-size: 56px;
    font-weight: 200;
    color: #292524;
    margin-bottom: 20px;
}

.element-icon-box {
    width: 48px;
    height: 48px;
    background: #1c1917;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.element-icon-box i {
    color: rgba(245, 158, 11, 0.7);
    font-size: 18px;
}

.element-step h3 {
    color: #f5f5f4;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
}

.element-steps {
    text-align: left;
}

.element-step p {
    color: #a8a29e;
    font-size: 16px;
    text-align: left;
    line-height: 1.7;
}

.element-note {
    color: #78716c;
    text-align: left;
    margin-top: 70px;
    font-size: 14px;
    font-style: italic;
}

.element-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.element-show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

.intro-content {
    text-align: left;
}

/* ================================================
   REDESIGNED CONTACT SECTION — kh-contact-section
   ================================================ */

.kh-contact-section {
    background: #0c0c0c;
    padding: 110px 0;
    color: #e7e5e4;
    text-align: left;
    box-sizing: border-box;
}

.kh-contact-container {
    /* Responsive width handled by Bootstrap .container */
    box-sizing: border-box;
    width: 100%;
}

.kh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ---- LEFT COLUMN ---- */

.kh-contact-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 22px 0;
    font-weight: 500;
}

.kh-contact-title {
    font-size: 46px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 28px 0;
}

.kh-contact-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 44px 0;
    max-width: 400px;
}

/* Location rows with top borders */
.kh-contact-locations {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.kh-contact-loc-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kh-loc-name {
    font-size: 13px;
    font-weight: 500;
    color: #ffffffb3;
    margin-bottom: 5px;
}

.kh-loc-sub {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff59;
}

.kh-contact-tagline {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* ---- RIGHT FORM ---- */

.kh-contact-right form {
    background: transparent;
    border: none;
    padding: 0;
}

.kh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.kh-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.kh-field-full {
    margin-bottom: 16px;
}

.kh-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 8px 0 !important;
    margin-top: 0 !important;
    font-weight: 500;
    display: block;
}

.kh-contact-right input,
.kh-contact-right textarea {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #e7e5e4;
    font-size: 13px;
    padding: 13px 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.kh-contact-right input::placeholder,
.kh-contact-right textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.kh-contact-right input:focus,
.kh-contact-right textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
}

.kh-contact-right textarea {
    resize: none;
}

/* Custom select inside new form */
.kh-contact-right .select-box {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    padding: 13px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.2s ease;
}

.kh-contact-right .select-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.kh-contact-right .select-box svg {
    opacity: 0.4;
    flex-shrink: 0;
}

/* Submit button */
.kh-submit-btn {
    width: 100%;
    height: 52px;
    background: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    transition: background 0.25s ease, color 0.25s ease;
    margin-top: 4px;
}

.kh-submit-btn span {
    font-size: 16px;
}

.kh-submit-btn:hover {
    background: #f5f5f5;
}

.malarkodi {
    margin-bottom: 60px;
}

/* Responsive */
/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* ================================================ */

.book-section {
    padding: 130px 0;
    background: #1c1917;
    text-align: left;
    color: #e7e5e4;
}

.book-container {
    /* Responsive width handled by Bootstrap .container */
    width: 100%;
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.book-small-title {
    color: #f59e0bb3;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.book-title {
    font-size: 36px;
    line-height: 46px;
    margin-top: 10px !important;
    font-weight: 300;
    color: #f5f5f4;
    line-height: 1.2;
    margin-bottom: 40px;
}

.book-desc {
    color: #a8a29e;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: left;
}

.book-location {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.book-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #78350f33;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.book-loc-title {
    color: #e7e5e4;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.book-loc-sub {
    color: #a8a29e;
    font-size: 16px;
    line-height: 26px;
}

.book-footer-note {
    margin-top: 70px;
    font-size: 14px;
    color: #a8a29e;
    font-style: italic;
}

form {
    background: #0c0a09;
    padding: 40px;
    border: 1px solid #292524;
}

.book-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

label {
    font-size: 12px;
    margin-top: 30px;
    color: #a8a29e;
    display: block;
    margin-bottom: 6px;
}

input,
select,
option {
    padding: 12px;
    width: 100%;
    background: #1c1917;
    border: 1px solid #292524;
    color: #e7e5e4;
    outline: none;
}

input,
select,
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 12px;
    border: 1px solid #292524;
    border-radius: 6px;
    outline: none;
}

select {
    padding: 12px;
    width: 100%;
    background: #1c1917;
    border: 1px solid #292524;
    color: #e7e5e4;
    outline: none;
}

/* Options default */
select option {
    background-color: #fff;
    border-radius: 6px;
    color: #000;
}

/* Hover effect (works in some browsers only) */
select option:hover {
    background-color: #e7e5e4;
    /* your hover bg */
    color: #fff;
    /* your hover text */
}

/* Remove default select styling (important) */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #78716c;
    font-size: 16px;
    background-color: #1c1917;
}

option:hover {
    background: #1c1917;
}

option:checked {
    background: #fff;
}

textarea {
    width: 100%;
    padding: 12px;
    background: #1c1917;
    border: 1px solid #292524;
    color: #e7e5e4;
    outline: none;
}

textarea {
    resize: none;
}

.custom-select label {
    display: block;
    margin-bottom: 5px;
}

.select-box {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 12px;
    border: 1px solid #292524;
    border-radius: 6px;
    outline: none;
    background: #1c1917;
    border: 1px solid #292524;
    color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    font-size: 12px;
}

.dropdown {
    position: absolute;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    background: #fff;
    color: #000;
    display: none;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.dropdown li {
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown li:hover {
    background: #e6e6e6;
}

.dropdown li.active {
    background: #e6e6e6;
}

/* ✔ Tick mark */
.dropdown li.active::after {
    content: "✔";
    color: #0c0a09;
}

.sand {
    width: 100%;
    height: 48px;
    border: none;
    margin-top: 10px;
    background: #e7e5e4;
    color: #1c1917;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sand:hover {
    background: #d6d3d1;
}

/* Animation */

.book-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.book-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles moved to mobile.css */

.footer {
    background: #0c0a09;
    color: #a8a29e;
}

.footer-container {
    /* Responsive width handled by Bootstrap .container */
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

/* Responsive styles moved to mobile.css */



.footer p {
    line-height: 1.6;
    color: #57534e;
    font-size: 14px;
}

.small-text {
    font-size: 16px;
    color: #78716c;
}

.italic {
    font-style: italic;
    margin-top: 10px;
    color: #57534e;
    font-size: 14px;
}

.footer-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #a8a29e;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links button {
    background: none;
    padding-left: 0px;
    border: none;
    color: #78716c;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: 0.3s;
    text-transform: capitalize;
}

.footer-links button:hover {
    color: #d6d3d1;
}

.footer-bottom {
    border-top: 1px solid #292524;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #57534e;
}

/* Responsive styles moved to mobile.css */

.location {
    letter-spacing: 2px;
    color: #44403c !important;
}

.solarsystem {
    position: relative;
    padding: 150px 0;
    background: #111;
    overflow: hidden;
    text-align: left;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.galaxy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cosmic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 23, 0.75);
}

.universe {
    position: relative;
    z-index: 10;
    /* Responsive width handled by Bootstrap .container */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.universe.orbit {
    opacity: 1;
    transform: translateY(0);
}

/* Text */

.planet-subtitle {
    text-align: left;
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.star-title {
    font-size: 48px;
    line-height: 1.2;
    margin-top: 0 !important;
    font-weight: 200;
    color: #f5f5f4;
    margin-bottom: 40px;
    text-align: left;
}

.comet-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
    max-width: 680px;
}

.nebula-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nebula-footer p {
    color: #ffffff80;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

/* Responsive styles moved to mobile.css */

.climate-section {
    padding: 50px 0;
    background: #000;
    text-align: left;
    color: #e7e5e4;
}

/* Products section — rows flow continuously, standard bottom padding and margin restored */
.products-section {
    padding-bottom: 30px;
}

.products-section .section-header {
    margin-bottom: 0;
    padding-bottom: 60px;
}

/* Each product row separated by a hairline border - Moved to below climate-grid-redesign for specificity */

.climate-container {
    /* Responsive width handled by Bootstrap .container */
}

/* GRID */

.climate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* TEXT */

.climate-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.climate-title {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

.climate-text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #a8a29e;
    text-align: left;
}

.climate-highlight {
    color: #d6d3d1;
    font-weight: 500;
}

/* FEATURES */

.climate-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.climate-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.climate-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(120, 53, 15, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 158, 11, 0.7);
    flex-shrink: 0;
}

.climate-icon img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 158, 11, 0.7);
    flex-shrink: 0;
}

.climate-feature-text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400 !important;
    color: #a8a29e;
}

/* NOTE */

.climate-note {
    margin-top: 35px;
    font-size: 14px;
    color: #78716c;
    font-style: italic;
}

/* IMAGE */

.climate-image-box {
    position: relative;
}

.climate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.climate-image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.climate-card {
    position: absolute;
    bottom: -25px;
    left: 0;
    transform: translateX(-25px);
    background: #1c1917;
    padding: 20px;
    border: 1px solid #292524;
    max-width: 240px;
    display: none;
}

.climate-card-title {
    font-size: 14px;
    margin-bottom: 6px;
}

.climate-card-text {
    font-size: 14px;
    line-height: 24px;
    color: #a8a29e;
}

/* ANIMATION */

.climate-left,
.climate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all .8s ease;
}

.climate-left {
    transform: translateX(-40px);
}

/* Content columns fade up */
.climate-content-right,
.climate-content-left {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.climate-show {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* RESPONSIVE */

/* Responsive styles moved to mobile.css */

/* Responsive styles moved to mobile.css */

/* SECTION HEADER (Image 1 Style) */
.section-header {
    margin-bottom: 80px;
    /* max-width handled by Bootstrap .container */
}

.section-subtitle-top {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 25px;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.section-title-large {
    font-size: 30px;
    font-weight: 200;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

/* 2-COLUMN GRID REFINEMENT */
.climate-grid-redesign {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    min-height: 480px;
    width: 100%;
}

/* Specific product row style - moved here to win over generic redesign height */
.product-row {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    min-height: 380px;
}



/* IMAGE columns — matching content height with no hardcoded min-heights */
.climate-left,
.climate-right,
.climate-content-left,
.climate-content-right {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.climate-left,
.climate-right {
    position: relative;
    display: flex;
}

.climate-left .climate-image,
.climate-right .climate-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block !important;
}

/* CONTENT columns — padded interior */
.climate-content-right {
    padding: 40px 40px 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.climate-content-left {
    padding: 40px 100px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* Subtitle style - border removed - now using row separator */
.climate-content-right,
.climate-content-left {
    text-align: left !important;
}

.climate-content-right *,
.climate-content-left * {
    text-align: left !important;
}

.badge-container {
    display: flex;
    gap: 15px;
    margin: 25px 0 35px;
}

.badge {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 500;
}

.dashed-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.dashed-list-item {
    font-size: 12px;
    color: #a8a29e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashed-list-item::before {
    content: "—";
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive styles moved to mobile.css */

/* LEARN MORE LINK STYLES */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    color: #fff;
}

.btn-learn-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover svg {
    transform: translateX(5px);
}

/* ========================================= */
/* SELECTED WORK SECTION & MODAL             */
/* ========================================= */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 50px;
}

.selected-work-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.selected-work-grid.reversed {
    grid-template-columns: 1fr 2fr;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #050505;
}

.project-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.03);
}

.large-card {
    grid-row: span 2;
    height: 615px;
    /* Locked height */
}

.small-card {
    height: 300px;
    /* Locked height (300 + 15 gap + 300 = 615px) */
}

.full-card {
    grid-column: span 2;
    height: 400px;
    /* Locked height so it doesn't take over vertically */
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 30px;
    /* background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);*/
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
    /* Fade in clean text overlay only when interacting */
}

.project-title {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 5px;
}

.project-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* PROJECT MODAL BASE CLASS (Fixed functional restoration) */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.project-modal.show {
    display: flex;
    opacity: 1;
}

#projectModal.project-modal {
    background-color: rgba(8, 8, 8, 0.98);
}

#projectModal .modal-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 90%;
    max-height: 85vh;

    /* FIX: Force container to strictly wrap exactly to the image's dimensions */
    width: auto;
    display: inline-block;
}

#projectModal img#modalImage {
    max-height: 80vh;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
    /* Center perfectly inside auto wrapper */
    display: block;
}

#projectModal .close-btn2 {
    top: 30px;
    right: 40px;
    left: auto;
    position: absolute;
    transform: none;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 22px;
    /* Reduced from 30px as requested */
    width: auto;
    height: auto;
}

#projectModal .modal-caption-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

#projectModal .modal-title {
    font-size: 16px !important;
    font-weight: 500 !important;
    margin: 0;
    color: #fff;
}

#projectModal .modal-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive grid */
/* Responsive styles moved to mobile.css */

/* ========================================= */
/* HEALTH & PERFORMANCE SECTION              */
/* ========================================= */
.perf-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.perf-title-large {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 300;
    color: #fff;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.perf-text-col {
    padding-top: 50px;
}

.perf-text-col p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 25px;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-card {
    padding: 35px 30px 30px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* .perf-card:not(:first-child) {
    padding-left: 30px;
} */

.perf-card:last-child {
    border-right: none;
    padding-right: 0;
}

.perf-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.perf-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

/* Perf Section Responsive */
/* Responsive styles moved to mobile.css */

/* ========================================= */
/* ABOUT SECTION & HARMONY SPLIT             */
/* ========================================= */
.about-grid-split {
    display: grid;
    grid-template-columns: 10fr 9fr;
    gap: 70px;

}

.about-split-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.about-split-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 25px;
}

.text-highlight {
    color: #fff;
    font-weight: 400;
}

.harmony-border-list {
    list-style: none;
    padding: 0;
    margin-top: 35px;
    margin-bottom: 40px;
}

.harmony-border-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
}

.harmony-border-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint bottom border per mockup */
}

/* Elegant dash marker */
.harmony-border-list li::before {
    content: '—';
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.harmony-italic-quote {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    max-width: 90%;
}

/* Responsive Grid */
/* Responsive styles moved to mobile.css */

/* ========================================= */
/* PEOPLE SECTION                            */
/* ========================================= */
.people-top {
    margin-bottom: 70px;
}

.people-title-large {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.people-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
}

.people-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
    position: relative;
    background: #1a1a1a;
    flex-shrink: 0;
}

.people-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.people-card:hover .people-photo img {
    transform: scale(1.05);
}

.people-initial-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0;
}

.people-name {
    font-size: 14px;
    font-weight: 600;
    color: #fffc;
    margin-bottom: 0px;
}

.people-role {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.people-bio p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive Handling */
/* Responsive styles moved to mobile.css */

/* ========================================= */
/* PROCESS SECTION                           */
/* ========================================= */
.process-header {
    margin-bottom: 60px;
}

.process-title-large {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

/* Stats Block */
.process-stats-grid {
    display: flex;
    gap: 25px;
    /* Spreads out the boxes tightly */
    margin-bottom: 65px;
    flex-wrap: wrap;
}

.process-stat-box {
    border: 1px solid #2c2d30;
    /* Faint bordered metric cards */
    padding: 15px 15px;
    min-width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.stat-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    /* Crucial gap so the top-border is visibly broken! */
}

.process-step-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.step-num {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    /* Faint 01, 02 */
    margin-bottom: 25px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffffbf;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff59;
}

.desk-v {
    display: block;
}

.mob-v {
    display: none;
}

@media (min-width: 991px) {

    /* FINAL ALIGNMENT FIX FOR CLIMATE SECTION */
    .climate-grid-redesign {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
    }

    .climate-left,
    .climate-right,
    .climate-content-left,
    .climate-content-right {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        overflow: hidden !important;
    }

    .climate-content-right,
    .climate-content-left {
        text-align: left !important;
        padding: 40px 60px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .climate-content-right *,
    .climate-content-left * {
        text-align: left !important;
    }

    .climate-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Responsive Grid Adjustments */
/* Responsive styles moved to mobile.css */