        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');
		@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
        
        :root {
            --bg: #f8f4ed;
            --card: #f0e6d2;
            --accent-green: #5a8c5e;
            --accent-brown: #8c5f2e;
            --text: #3f2a1e;
            --text-muted: #6b5a4a;
        }

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

        html { scroll-behavior: smooth; }

        body {
            opacity: 0;
			transition: opacity 0.9s ease-in;
			font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.page-loaded {
            opacity: 1;
        }

        .heading-font {
            font-family: 'Space Grotesk', sans-serif;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ==================== Your Original Styles (unchanged) ==================== */
        nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(248, 244, 237, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(90, 140, 94, 0.15);
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 28px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text);
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 30% 20%, #f3e9d9, #b58a63 70%);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 6px 16px rgba(0, 0, 0, 0.22);
            font-size: 18px; /* controls icon size */
            color: #3f2a1e;
            position: relative;
            top: -0.5px;
                }

        .brand-mark .fa-gem {
            position: relative;
            top: 1.5px; /* adjust to taste */
        }

        /* Inner artisan ring stays the same */
        .brand-mark::before {
            content: "";
            position: absolute;
            width: 72%;
            height: 72%;
            border-radius: 50%;
            border: 1px solid rgba(80, 60, 40, 0.10);
        }

        /* Make the gem icon behave like a centered glyph */
        .brand-mark .fa-gem {
            font-size: 18px; /* match your previous letter size */
            line-height: 1;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            font-size: 14.5px;
            font-weight: 500;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: var(--accent-green);
            transition: width 0.4s ease;
        }

        .nav-link:hover:after,
        .nav-link.active:after { width: 100%; }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
            padding: 4px 8px;
            color: var(--text);
        }

        @media (max-width: 900px) {
        .hamburger {
            display: block;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--bg);
            flex-direction: column;
            gap: 20px;
            padding: 20px;
            width: 140px;
            display: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            border-radius: 0 0 0 12px;
        }

        .nav-links.open {
            display: flex;
        }
    }

        #hero {
            min-height: 82vh;
            display: flex;
            align-items: center;
            padding-top: 30px;
            padding-bottom: 40px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.60rem;
            line-height: 1.05;
            font-weight: 600;
            letter-spacing: -2px;
            margin-bottom: 20px;
            color: var(--text);
        }

        .hero-text p {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 460px;
            margin-bottom: 32px;
        }

        .btn {
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: var(--accent-green);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(90, 140, 94, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent-brown);
        }

        .btn-secondary:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
        }

        .hero-image {
            width: clamp(220px, 32vw, 340px);
            height: clamp(220px, 32vw, 340px);
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid #f0e6d2;
            box-shadow: 0 0 0 14px rgba(90, 140, 94, 0.12);
        }
		
        #hero,
        #about,
        #portfolio,
        #contact {
            scroll-margin-top: 80px;
        }

        /* SECTION BASE */
        section {
            padding: 20px 0;
        }

        .section-header {
            margin-bottom: 25px;
            margin-top: 0;
        }

        .section-header span {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-green);
            font-weight: 500;
            margin-bottom: 6px;
        }

        .section-header h2 {
            font-family: 'Great Vibes', cursive;
			font-size: 2.25rem;
            font-weight: 600;
            letter-spacing: -1px;
            margin-top: 0;
            color: var(--text);
        }

        /* ABOUT */
        #about {
            background: #ede6d8;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            width: clamp(220px, 32vw, 340px);
            height: clamp(220px, 32vw, 340px);
            border-radius: 50%;
            object-fit: cover;
            border-radius: 50%;
            border: 8px solid #f0e6d2;
            box-shadow: 0 10px 30px rgba(90, 140, 94, 0.15);
        }

        .about-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* FILTER BUTTONS */
        .filter-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            justify-content: center;
			max-width: 800px;
			margin-left: auto;
			margin-right: auto;
        }

        .filter-break {
            flex-basis: 100%;
            height: 0;
        }

        .filter-btn {
            padding: 7px 16px;
            background: var(--card);
            color: var(--text);
            border: 1px solid rgba(90, 140, 94, 0.2);
            border-radius: 9999px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--accent-green);
            color: white;
        }

        /* PORTFOLIO GRID */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
        }

        .portfolio-card {
            background: var(--card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(90, 140, 94, 0.15);
            transition: opacity 0.4s ease, transform 0.4s ease;
            cursor: pointer;
            opacity: 0;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(90, 140, 94, 0.12);
        }

        .card-image {
            height: 240px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-card:hover .card-image img {
            transform: scale(1.08);
        }

        .card-content {
            padding: 22px;
        }

        .card-content h3 {
            margin-bottom: 8px;
            font-size: 1.08rem;
            color: var(--text);
        }

        .card-content p {
            color: var(--text-muted);
            font-size: 0.89rem;
            line-height: 1.3;
        }

        /* CONTACT */
        #contact {
            background: #ede6d8;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .market-info,
        .contact-form {
            background: var(--card);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(90, 140, 94, 0.15);
        }

        #contact-form input, #contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            background: #f8f4ed;
            border: 1px solid rgba(90,140,94,0.25);
            border-radius: 12px;
            color: var(--text);
            font-size: 15px;
        }

        #contact-form input:focus,
        #contact-form textarea:focus {
            outline: none;
            border: 1px solid var(--accent-brown);
            box-shadow: 0 0 0 2px var(--accent-brown-transparent);
        }

        .contact-animated-btn {
            width: 100%;
            padding: 16px 32px;
            background: var(--accent-green);
            color: white;
            border: none;
            border-radius: 9999px;
            font-size: 15.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;

            position: relative;
            overflow: hidden;
            height: 52px;
        }

        .contact-animated-btn:active {
            transform: translateY(3px);
        }

        .contact-animated-btn span {
            position: absolute;
            width: 100%;
            left: 0;
            text-align: center;
            transition: top 0.45s ease;
        }

        .text-1 { top: 50%; transform: translateY(-50%); }
        .text-2 { top: 150%; transform: translateY(-50%); }
        .text-3 { top: 150%; transform: translateY(-50%); }

        .contact-animated-btn:hover .text-1 { top: -100%; }
        .contact-animated-btn:hover .text-2 { top: 50%; }

        .contact-animated-btn.pressed .text-1,
        .contact-animated-btn.pressed .text-2 {
            top: -100%;
        }

        .contact-animated-btn.pressed .text-3 {
            top: 50%;
        }

        /* Lightbox Styles */
        #lightbox {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        #lightbox.active { display: flex; }
        #lightbox img {
            max-width: 100%;
            max-height: 92vh;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
        }
        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 25px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* Firefox Scrollbar */
        html {
            scrollbar-width: auto; /* auto | thin | none */
            scrollbar-color: #f0e6d2 var(--bg); /* thumb track */
        }

        /* Custom Scrollbar (WebKit Browsers) */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg);
        }

        ::-webkit-scrollbar-thumb {
            background: #f0e6d2;
            border-radius: 10px;
            box-shadow: inset 0 0 0 2px var(--bg);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #e8dcc8; /* a smidge darker for hover */
        }

        /* RESPONSIVE Styles */
        @media (max-width: 1100px) {
        .container {
            padding: 0 24px;
        }

        nav .nav-content {
            padding: 18px 28px;
        }

        .nav-links {
            gap: 24px;
            font-size: 14px;
        }
    }

        @media (max-width: 900px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 32px;
        }

        /* Move hero image above text */
        .hero-grid > div:last-child {
            order: -1;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 2.6rem;
            letter-spacing: -1px;
        }

        .hero-text p {
            margin: 0 auto 24px auto;
            font-size: 1.15rem;
            max-width: 500px;
        }

        .hero-text div {
            justify-content: center;
        }
    }

        @media (max-width: 900px) {

        /* Collapse the about grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            text-align: center;
        }

        /* Scale the Great Vibes heading */
        .section-header h2 {
            font-size: 2.2rem;
        }

        /* Improve readability */
        .about-text {
            font-size: 1.1rem;
            padding: 0 10px;
        }

        /* Prevent smashing into the next section */
        #about {
            margin-bottom: 60px;
        }
    }

        @media (max-width: 800px) {
        .portfolio-grid {
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .filter-buttons {
            gap: 8px;
            flex-wrap: wrap;
			max-width: 600px;
			margin-left: auto;
			margin-right: auto;
        }

        .filter-btn {
            padding: 8px 18px;
            font-size: 13px;
        }
    }

        @media (max-width: 900px) {

        /* Collapse the contact grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        /* Market info spacing */
        .market-info {
            padding: 0 10px;
        }

        /* Contact form layout */
        .contact-form {
            padding: 24px;
            margin: 0 auto;
            max-width: 500px;
        }

        /* Prevent smashing into About section */
        #contact {
            padding-top: 40px;
        }
    }

        /* Your original rules — still needed */
        @media (max-width: 700px) {
        .contact-form {
            padding: 28px;
        }

        #contact-form button {
            padding: 14px 24px;
            font-size: 14.5px;
        }
    }

        .copyright {
            text-align: center;
            font-size: 0.98rem;
            color: var(--text);
            border: 0px solid black;
            padding: 15px;
        }
