.elementor-7 .elementor-element.elementor-element-38cba7f{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-407c3ec{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-ff5e13f{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-b4bd37e{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&#038;family=EB+Garamond:ital,wght@0,400;0,500;1,400&#038;display=swap");

/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { overflow-x: hidden; scroll-behavior: smooth; }
        body {
            font-family: 'EB Garamond', 'Cormorant Garamond', 'Georgia', serif;
            font-size: 16px;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: #1a1a1a; text-decoration: none; transition: opacity 0.3s ease; }
        a:hover { opacity: 0.6; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }
        h1, h2, h3, h4, h5, h6 { font-weight: 400; }

        /* ===== HEADER ===== */
        #main-header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 1px 0 rgba(0,0,0,0.08);
            transition: background 0.5s ease, padding 0.4s ease;
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo_container a { display: block; }
        .logo_container img { height: 120px; width: auto; }

        /* ===== NAV ===== */
        .nav-right { display: flex; align-items: center; gap: 8px; }
        #top-menu-nav { display: flex; align-items: center; }
        #top-menu { display: flex; align-items: center; gap: 24px; }
        #top-menu > li { position: relative; }
        #top-menu > li > a {
            font-family: 'EB Garamond', serif;
            font-size: 15px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1a1a1a;
            padding: 8px 0;
            display: block;
        }
        #top-menu > li > a.active { opacity: 0.5; }
        .sub-menu {
            position: absolute;
            top: calc(100% + 5px);
            left: 50%;
            transform: translateX(-50%);
            background: #ffffff;
            min-width: 150px;
            padding: 14px 0 10px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 100;
            text-align: center;
        }
        #top-menu > li:hover .sub-menu { opacity: 1; visibility: visible; }
        .sub-menu li a {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #1a1a1a;
            padding: 4px 20px;
            display: block;
            white-space: nowrap;
        }
        .search-icon {
            margin-left: 20px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
        }
        .search-icon:hover { opacity: 1; }
        .mobile-toggle {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 5px;
            z-index: 1001;
        }
        .mobile-toggle .bar {
            width: 24px; height: 1px; background: #383839;
            transition: all 0.3s ease;
        }
        .mobile-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
        .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
        .mobile-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
        .mobile-toggle.active .bar { background: #383839 !important; }

        /* ===== PAGE HERO ===== */
        .page-hero {
            padding: 140px 40px 60px;
            text-align: center;
        }
        .page-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 10px;
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        .page-hero p {
            font-size: 17px;
            color: #707070;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== PROJECT GRID ===== */
        .projects-wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .project-grid {
            display: grid;
            gap: 22px;
        }
        .project-grid.g-3 { grid-template-columns: repeat(3, 1fr); }
        .project-grid.g-2 { grid-template-columns: repeat(2, 1fr); }
        .project-grid.g-1-2 { grid-template-columns: 1fr 2fr; }
        .project-grid.g-2-1 { grid-template-columns: 2fr 1fr; }
        .project-grid.g-full { grid-template-columns: 1fr; }

        .project-card { margin-bottom: 22px; }
        .project-card .image-wrapper {
            position: relative;
            overflow: hidden;
            margin-bottom: 14px;
        }
        .project-card .image-wrapper a {
            display: block;
            position: relative;
        }
        .project-card .image-wrapper img {
            width: 100%; height: auto; display: block;
            transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
        }
        .project-card .image-wrapper:hover img {
            transform: scale(1.03);
        }
        .project-card .image-wrapper .view-label {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #fff;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
            pointer-events: none;
            font-family: 'EB Garamond', serif;
        }
        .project-card .image-wrapper:hover .view-label { opacity: 1; }
        .project-card .image-wrapper::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0);
            transition: background 0.4s ease;
            pointer-events: none;
        }
        .project-card .image-wrapper:hover::after {
            background: rgba(0,0,0,0.12);
        }
        .project-card .title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #1a1a1a;
            margin-bottom: 7px;
        }
        .project-card .excerpt {
            font-size: 15px;
            line-height: 1.75;
            color: #707070;
            margin-bottom: 9px;
        }
        .project-card .tags {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .project-card .tags a { color: #1a1a1a; }
        .project-card .tags a:hover { color: #1a1a1a; opacity: 1; }
        .project-card .tags .sep { color: #bbb; }

        /* ===== FOOTER ===== */
        #main-footer {
            background: #ffffff;
            padding: 70px 40px 25px;
            border-top: 1px solid rgba(0,0,0,0.1);
            margin-top: 100px;
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .footer-col h4 {
            font-family: 'EB Garamond', serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
            margin-bottom: 14px;
            color: #1a1a1a;
        }
        .footer-col ul li { margin-bottom: 4px; }
        .footer-col ul li a {
            font-size: 14px; color: #999; letter-spacing: 0.5px;
        }
        .footer-col ul li a:hover { color: #1a1a1a; opacity: 1; }
        .footer-bottom {
            max-width: 1280px;
            margin: 45px auto 0;
            padding-top: 18px;
            border-top: 1px solid rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .copyright {
            font-size: 12px; color: #999;
            letter-spacing: 1px; text-transform: uppercase;
        }
        .footer-links { display: flex; gap: 18px; }
        .footer-links a {
            font-size: 12px; text-transform: uppercase;
            letter-spacing: 1.5px; color: #999;
        }
        .footer-links a:hover { color: #1a1a1a; opacity: 1; }

        /* ===== MOBILE MENU OVERLAY ===== */
        .mobile-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: #ffffff;
            z-index: 999;
            display: none;
            padding: 110px 40px 40px;
            overflow-y: auto;
        }
        .mobile-overlay.active { display: block; }
        .mobile-overlay > ul > li { margin-bottom: 18px; }
        .mobile-overlay > ul > li > a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 6px;
            color: #1a1a1a;
        }
        .mobile-overlay .sub-menu {
            position: static;
            transform: none;
            opacity: 1; visibility: visible;
            background: none;
            padding: 10px 0 0;
            text-align: left;
            min-width: auto;
        }
        .mobile-overlay .sub-menu li { margin-bottom: 6px; }
        .mobile-overlay .sub-menu li a {
            font-size: 12px; letter-spacing: 2px; color: #999;
            padding: 2px 0;
        }
        .mobile-small-menu {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        .mobile-small-menu ul { display: flex; gap: 22px; }
        .mobile-small-menu a {
            font-size: 10px; text-transform: uppercase;
            letter-spacing: 2px; color: #999;
        }

        /* ===== ANIMATIONS ===== */
        .anim {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .anim.show { opacity: 1; transform: translateY(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .project-grid.g-3 { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 980px) {
            .logo_container img { height: 36px; }
            .mobile-overlay { padding-top: 90px; }
            #top-menu-nav, .search-icon { display: none; }
            .mobile-toggle { display: flex; }
            .header-container { padding: 16px 24px; }
            .page-hero { padding: 110px 24px 40px; }
            .page-hero h1 { font-size: 22px; letter-spacing: 6px; }
            .logo_container img { height: 70px; }
            .mobile-overlay { padding-top: 130px; }
        }
        @media (max-width: 768px) {
            .project-grid.g-3,
            .project-grid.g-2,
            .project-grid.g-1-2,
            .project-grid.g-2-1 { grid-template-columns: 1fr; }
            .projects-wrap { padding: 0 18px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            #main-footer { padding: 40px 24px 20px; }
        }
        @media (max-width: 480px) {
            .page-hero h1 { font-size: 18px; letter-spacing: 4px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
        }/* End custom CSS */