:root {
    --bg-color: #c5b39d;
    --text-color: #111111;
    --text-muted: #444444;
    --accent: #b5a18a;
    --border-color: #a8947f;
    --font-primary: 'Outfit', sans-serif;
    --padding-section: 120px 5%;
    --navbar-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    overflow-x: clip;
    width: 100vw;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 12vw, 8rem);
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Utility Classes */
.orange-label {
    font-size: 0.85rem;
    color: var(--accent-orange, #A87A51);
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.italic-orange {
    font-style: italic;
    color: var(--accent-orange, #A87A51);
    font-family: serif;
}

/* Video Preloader */
#video-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    /* Match video background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#video-preloader video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.loading {
    overflow: hidden;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 5%;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease, transform 0.4s ease;
}

#navbar.hidden {
    transform: translateY(-100%);
}

#navbar.scrolled {
    background-color: rgba(197, 179, 157, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.3rem 5%;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    z-index: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: pointer;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.15;
}

.video-container.paused .video-btn {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 10vh;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
    max-width: 500px;
}

/* Scroll Sequence */
.scroll-sequence-section {
    position: relative;
    height: 1000vh;
    background-color: var(--bg-color);
}

.canvas-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
}

#scroll-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#scroll-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Portfolio Sections */
.portfolio-section {
    padding: var(--padding-section);
}

.section-header {
    margin-bottom: 6rem;
}

.category-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border-left: 1px solid var(--text-color);
    padding-left: 1rem;
}

.projects-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.project {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.project:nth-child(even) {
    grid-template-columns: 2fr 1fr;
    direction: rtl;
}

.project:nth-child(even) .project-info {
    direction: ltr;
}

.project-info {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

.project-gallery {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.gallery-track img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    scroll-snap-align: center;
    flex: 0 0 100%;
    border-radius: 2px;
    filter: grayscale(40%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.gallery-track img:hover {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    padding: var(--padding-section);
    background-color: var(--accent);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.philosophy-text {
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 580px;
}

.philosophy-signoff {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
}

.social-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: fit-content;
}

.social-links a:hover {
    transform: translateX(15px);
}

.minimal-form .form-group {
    margin-bottom: 2.5rem;
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    color: #111111;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    transition: border-color 0.4s ease;
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
    color: #111111;
    opacity: 1;
    font-weight: 400;
}

.minimal-form input::-webkit-input-placeholder,
.minimal-form textarea::-webkit-input-placeholder {
    color: #111111;
    opacity: 1;
    font-weight: 400;
}

.minimal-form input::-moz-placeholder,
.minimal-form textarea::-moz-placeholder {
    color: #111111;
    opacity: 1;
    font-weight: 400;
}

.minimal-form input:-ms-input-placeholder,
.minimal-form textarea:-ms-input-placeholder {
    color: #111111;
    opacity: 1;
    font-weight: 400;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    outline: none;
    border-bottom-color: #111111;
}

.minimal-form textarea {
    resize: vertical;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-developer {
    display: flex;
    align-items: center;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.developer-link:hover {
    color: var(--text-color);
}

.developer-link svg {
    color: currentColor;
    transition: transform 0.3s ease;
}

.developer-link:hover svg {
    transform: scale(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-bottom {
    transform: translateY(80px);
}

.fade-left {
    transform: translateX(-80px);
}

.fade-right {
    transform: translateX(80px);
}

/* Responsive */
@media (max-width: 900px) {
    :root {
        --padding-section: 60px 5%;
    }

    .logo img {
        height: 40px;
        max-width: 75vw;
        object-fit: contain;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        z-index: 101;
        color: var(--text-color);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 6rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 2rem;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero-section {
        height: 100vh;
        height: 100dvh;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .project {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .project-info {
        position: static;
        transform: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }



    .gallery-track img {
        height: 50vh;
    }
}

/* About Page Styles */
.about-page #navbar {
    background-color: transparent;
    border-bottom: none;
}

.about-page .logo a,
.about-page .nav-links a {
    color: #f5f2eb;
}

@media (max-width: 900px) {
    .about-page .mobile-menu-btn {
        color: #f5f2eb;
    }

    .about-page .nav-links {
        background-color: #1a1816;
    }
}

.about-page .nav-links a::after {
    background-color: #f5f2eb;
}

.about-page .nav-links a.active {
    color: #F0AA25;
    border-bottom: 1px solid #F0AA25;
}

.about-page .btn-outline {
    border-color: #f5f2eb;
    color: #f5f2eb;
}

.about-page .btn-outline:hover {
    background-color: #f5f2eb;
    color: #1a1816;
}

.about-page #navbar.scrolled {
    background-color: rgba(26, 24, 22, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero,
.about-who {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
}


@media (max-width: 900px) {
    .dark-panel {
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.7) 100%) !important;
        padding: 25% 5% 10% 5% !important;
    }
}

.dark-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 30%, transparent 55%);
    color: #f5f2eb;
    padding: 18vh 5% 10% 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.projects-dark-panel {
    padding-top: 28vh;
}

.about-hero-image,
.about-who-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image img,
.about-who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.orange-label {
    color: #F0AA25;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    text-transform: none;
    font-weight: 300;
}

.italic-orange {
    font-style: italic;
    color: #F0AA25;
    font-family: serif;
}

.dark-panel p {
    color: #b5a18a;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.about-link {
    color: #F0AA25;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #F0AA25;
    width: fit-content;
    padding-bottom: 0.3rem;
    transition: opacity 0.3s ease;
}

.about-link:hover {
    opacity: 0.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(to bottom, #eae4dd, #dfd6cb);
    padding: 5rem 5%;
    gap: 2rem;
    text-align: center;
}

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

@media (max-width: 500px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 2rem;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.stat-icon {
    color: #b5a18a;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
    stroke: #b5a18a;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: #1a1816;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.stat-item p {
    font-size: 0.85rem;
    color: #1a1816;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Page (Light Theme) */
.contact-page {
    --bg-color: #1a1816;
    --text-color: #f5f2eb;
    --text-muted: #b5a18a;
    --border-color: rgba(176, 127, 80, 0.3);
    --card-bg: rgba(255, 255, 255, 0.05);
    background-color: var(--bg-color);
    color: var(--text-color);
}

.contact-page #navbar {
    background-color: transparent;
    border-bottom: none;
}

.contact-page .logo a,
.contact-page .nav-links a {
    color: #f5f2eb;
}

.contact-page .nav-links a::after {
    background-color: #f5f2eb;
}

.contact-page .nav-links a.active {
    color: #F0AA25;
    border-bottom: 1px solid #F0AA25;
}

.contact-page .btn-outline {
    border-color: #f5f2eb;
    color: #f5f2eb;
}

.contact-page .btn-outline:hover {
    background-color: #f5f2eb;
    color: #1a1816;
}

.contact-page #navbar.scrolled {
    background-color: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 150px;
    padding-bottom: 5rem;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 30%, transparent 60%), linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, transparent 20%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5%;
    width: 100%;
    color: #f5f2eb;
}

.contact-hero-content .about-title {
    color: #f5f2eb;
}

.contact-hero-content p {
    color: #e0d8c3;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.contact-features {
    display: flex;
    gap: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #f5f2eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f2eb;
}

.feature-item p {
    font-size: 0.85rem;
    color: #e0d8c3;
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.contact-form-section {
    padding: 3.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-full-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    background: var(--card-bg, transparent);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-row select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23f5f2eb" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-row select option {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    background-color: var(--accent-orange, #b07f50);
    color: #fff;
    border: 1px solid var(--accent-orange, #b07f50);
    padding: 1.2rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--accent-orange, #b07f50);
}

.secure-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s, border-color 0.3s;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-orange, #b07f50);
}

.contact-btn-icon {
    color: var(--accent-orange, #b07f50);
}

.contact-btn-text h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.contact-btn-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.handwritten-note {
    text-align: right;
    margin-top: 1rem;
    color: var(--accent-orange, #b07f50);
}

.contact-footer {
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-col {
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
    border-right: none;
}

.footer-col h5 {
    font-size: 0.85rem;
    color: var(--accent-orange, #b07f50);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-col p.mt {
    margin-top: 1.5rem;
}

.footer-icon {
    margin-bottom: 1rem;
    color: var(--accent-orange, #b07f50);
}

.view-map {
    display: inline-block;
    color: var(--accent-orange, #b07f50);
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 1rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
}

.view-map:hover {
    border-bottom: 1px solid var(--accent-orange, #b07f50);
}

/* Map Modal Styles */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.map-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.map-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 70vh;
    max-height: 600px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.map-modal.active .map-modal-content {
    transform: scale(1) translateY(0);
}

.map-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(17, 17, 17, 0.85);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    outline: none;
}

.map-modal-close:hover {
    background-color: var(--accent-orange, #b07f50);
    transform: scale(1.1) rotate(90deg);
}

.map-iframe-container {
    width: 100%;
    height: 100%;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

body.modal-open {
    overflow: hidden;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-bottom-left {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.social-circles a {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-right: 1rem;
}

.social-circles a:hover .social-icon {
    border-color: var(--text-color);
    color: var(--bg-color);
    background-color: var(--text-color);
}

.footer-cta {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(176, 127, 80, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-talk {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-talk:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logo img {
    height: 40px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

@media (max-width: 900px) {

    .contact-split {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

    .contact-form-section,
    .info-card {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-grid {
        flex-direction: column;
    }

    .footer-col {
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 2rem !important;
        margin-bottom: 2rem;
    }

    .footer-col:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0;
    }

    .footer-cta {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .contact-hero {
        min-height: 100vh;
        align-items: flex-end;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .contact-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .contact-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .contact-hero-overlay {
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.7) 30%, rgba(20, 20, 20, 0.95) 60%, rgba(20, 20, 20, 1) 100%);
    }

    .contact-hero-content {
        padding-top: 0;
        padding-bottom: 0;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Projects Page Styles */
.projects-page {
    background-color: var(--bg-color);
}

.projects-hero {
    position: relative;
    min-height: 80vh;
}

.projects-hero-image {
    width: 65%;
    left: 35%;
}

.projects-dark-panel {
    width: 50%;
    padding: 15vh 5% 10% 5%;
    background: linear-gradient(to right, rgba(26, 24, 22, 1) 0%, rgba(26, 24, 22, 0.95) 80%, transparent 100%);
    clip-path: none;
}

.projects-dark-panel p {
    font-size: 1rem;
    color: #b5a18a;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .projects-hero-image {
        width: 100%;
        left: 0;
    }

    .projects-dark-panel {
        width: 100%;
        padding: 25% 5% 10% 5% !important;
        background: linear-gradient(to bottom, rgba(26, 24, 22, 0.9) 0%, rgba(26, 24, 22, 0.7) 100%) !important;
    }
}

.projects-subnav-container {
    background-color: #e5dfd5 !important;
    border-bottom: 1px solid rgba(26, 24, 22, 0.12);
    position: sticky;
    top: var(--navbar-height, 90px);
    z-index: 90;
    transition: top 0.3s ease;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.projects-subnav-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 900px) {
    .projects-subnav-container {
        top: var(--navbar-height, 56px);
    }
}

body.nav-hidden .projects-subnav-container {
    top: 0 !important;
}

.projects-subnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    min-width: max-content;
}

.subnav-tabs {
    display: flex;
    gap: 2.5rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #4a443a;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s, font-weight 0.3s, opacity 0.3s;
    white-space: nowrap;
    opacity: 0.8;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F0AA25;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: #1a1816;
    opacity: 1;
}

.tab-btn.active {
    color: #1a1816;
    font-weight: 700;
    opacity: 1;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .projects-subnav {
        padding: 0 4%;
    }
    .subnav-tabs {
        gap: 1.25rem;
    }
    .tab-btn {
        padding: 1rem 0;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 480px) {
    .subnav-tabs {
        gap: 0.85rem;
    }
    .tab-btn {
        font-size: 0.74rem;
        letter-spacing: 0.05em;
    }
}

.subnav-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1a1816;
    cursor: pointer;
}

.projects-content-area {
    padding: 3rem 5% 8rem 5%;
    background-color: #e5dfd5;
    position: relative;
    z-index: 1;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-view {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
}

.project-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-list-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    background-color: #1a1816;
}

.project-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-list-item .item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(26, 24, 22, 0.95) 0%, transparent 100%);
    color: #f5f2eb;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.project-list-item:hover .item-overlay {
    transform: translateY(0);
}

.project-list-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
    color: #f5f2eb;
}

.project-list-item p {
    font-size: 0.85rem;
    color: #b5a18a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-list-item .view-text {
    font-size: 0.8rem;
    color: #F0AA25;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-list-item:hover .view-text {
    opacity: 1;
}

@media (max-width: 900px) {
    .project-view {
        grid-template-columns: 1fr;
    }

    .project-list-grid {
        grid-template-columns: 1fr;
    }
}

.back-link {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--text-color);
}

.project-name {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.project-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.project-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

.project-specs {
    margin-bottom: 3rem;
    border-top: 1px solid #d0c8b8;
    padding-top: 1.5rem;
}

.spec-row {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.spec-label {
    width: 40%;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.spec-value {
    width: 60%;
    color: var(--text-color);
}

.btn-next-project {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-next-project:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 1.25rem;
    height: 100%;
    min-height: 520px;
}

.grid-main {
    grid-column: 1 / 2;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.grid-side {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.grid-side img {
    flex: 1;
    min-height: 0;
    border-radius: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.025);
    filter: brightness(1.04);
}

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

    .grid-main,
    .grid-side {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .grid-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

/* 5-Photo Compact Gallery Grid for Bake & Bite (Single Screen View) */
.gallery-grid-5 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-height: 520px;
}

.gallery-grid-5 .frame-row-3 {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 0.75rem;
    height: 250px;
}

.gallery-grid-5 .frame-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    height: 250px;
}

.gallery-grid-5 .photo-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background-color: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-5 .photo-frame:hover {
    transform: scale(1.02);
}

.gallery-grid-5 .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .gallery-grid-5 {
        max-height: none;
    }
    
    .gallery-grid-5 .frame-row-3 {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-grid-5 .frame-row-2 {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-grid-5 .photo-frame {
        height: auto;
        aspect-ratio: 4/3;
    }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1a1816;
    overflow: hidden;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 24, 22, 0.98) 0%, rgba(26, 24, 22, 0.9) 30%, rgba(26, 24, 22, 0.5) 60%, transparent 100%),
        linear-gradient(to top, rgba(26, 24, 22, 0.98) 0%, transparent 20%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 15vh 5% 5% 8%;
    width: 100%;
    color: #f5f2eb;
}

.services-hero-content p {
    color: #b5a18a;
    font-size: 1.15rem;
    max-width: 550px;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* What We Do Section */
.what-we-do-section {
    padding: 120px 5%;
    background-color: #f5f2eb;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-do-header h2 {
    max-width: 850px;
    margin: 0 auto;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.2;
    color: #1a1816;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

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

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-icon {
    color: #F0AA25;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1816;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #F0AA25;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

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

/* Our Process Section */
.our-process-section {
    padding: 120px 5%;
    background-color: #1a1816;
    color: #f5f2eb;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.our-process-header {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-process-header h2 {
    max-width: 600px;
    margin: 0 auto;
    color: #f5f2eb;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 1px;
    background-color: rgba(181, 161, 138, 0.25);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(181, 161, 138, 0.3);
    background-color: #1a1816;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0AA25;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-step:hover .step-icon-wrapper {
    border-color: #F0AA25;
    background-color: rgba(240, 170, 37, 0.08);
    transform: scale(1.05);
}

.step-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.step-num {
    font-size: 0.75rem;
    font-weight: 600;
    color: #b5a18a;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    display: block;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f5f2eb;
    margin-bottom: 0.8rem;
}

.step-desc {
    font-size: 0.9rem;
    color: #b5a18a;
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

.let-create-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 120px 5%;
    background-color: #141312;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.let-create-content {
    color: #f5f2eb;
}

.let-create-content h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.let-create-content p {
    color: #b5a18a;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 500px;
}

.btn-light-outline {
    border: 1px solid #f5f2eb;
    color: #f5f2eb;
}

.btn-light-outline:hover {
    background-color: #f5f2eb;
    color: #141312;
}

.let-create-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
}

.let-create-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Services Page Media Queries (Responsive)
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .services-hero-content {
        padding: 20vh 5% 5% 5%;
    }

    .what-we-do-section,
    .our-process-section,
    .let-create-section {
        padding: 80px 5%;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 1px;
        height: 100%;
        display: block;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 0;
        gap: 1.5rem;
    }

    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-step-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0.5rem;
    }

    .step-desc {
        margin: 0;
        max-width: 100%;
    }

    .let-create-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .let-create-image {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-hero-content {
        padding-top: 15vh;
    }
}

/* ==========================================================================
   About Page – Tagline Banner
   ========================================================================== */

/* ---------- Hero & Who-We-Are (overlay layout) ---------- */
.about-hero,
.about-who {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.about-hero-content,
.about-who-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 8% 80px;
    color: #fff;
    width: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.75) 40%, rgba(20, 20, 20, 0.3) 70%, transparent 100%);
}

.about-hero-content p,
.about-who-content p {
    color: #b5a18a;
    max-width: 550px;
}

.about-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-hero-image,
.about-who-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image img,
.about-who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Tagline Banner ---------- */
.about-tagline-banner {
    padding: 10px 5%;
    background: #ffffff;
}

.tagline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stat cards on either side */
.tagline-stat {
    flex: 0 0 180px;
    text-align: center;
    padding: 24px 16px;
}

.tagline-stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: var(--text-muted);
    opacity: 0.6;
}

.tagline-stat-icon svg {
    width: 100%;
    height: 100%;
}

.tagline-stat h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    margin-bottom: 4px;
    color: var(--text-color);
}

.tagline-stat p {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    max-width: none;
}

.tagline-stat-reach {
    flex: 0 1 300px;
}

.stat-heading-reach {
    font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    margin-bottom: 6px !important;
}

.stat-subtext-reach {
    font-size: 0.68rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* Center tagline block */
.tagline-center {
    flex: 1;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dots .... Brand Name .... Dots */
.tagline-dots-line {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
}

.tagline-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right,
            var(--text-muted) 0px,
            var(--text-muted) 3px,
            transparent 3px,
            transparent 10px);
    opacity: 0.45;
}

.tagline-brand {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Main heading */
.tagline-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-color);
    margin: 0;
}

/* ---------- About Page Responsive ---------- */
@media (max-width: 900px) {

    .about-hero,
    .about-who {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .about-hero-content,
    .about-who-content {
        padding: 120px 6% 60px;
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.7) 60%, rgba(20, 20, 20, 0.4) 100%);
    }

    .tagline-row {
        flex-direction: column;
        gap: 32px;
    }

    .tagline-stat {
        flex: none;
    }

    .tagline-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 32px 0;
    }

    .about-tagline-banner {
        padding: 40px 5%;
    }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 16px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    max-width: 400px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--bg-color);
    opacity: 0.9;
}

.toast-close {
    background: none;
    border: none;
    color: var(--bg-color);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

.toast.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* ===================== SUCCESS TOAST NOTIFICATION ===================== */
.success-toast {
    position: fixed;
    bottom: 2rem;
    right: -500px;
    z-index: 10000;
    min-width: 380px;
    max-width: 480px;
    background: #1a1714;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 149, 108, 0.15);
    overflow: hidden;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-toast.show {
    right: 2rem;
}

.success-toast.hiding {
    right: -500px;
    transition: right 0.4s cubic-bezier(0.5, 0, 0.75, 0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.25rem 1.5rem;
}

.toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(200, 149, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.toast-text {
    flex: 1;
}

.toast-text h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #e8d5c0;
    margin: 0 0 6px 0;
}

.toast-text p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: #b5a18a;
    margin: 0;
    line-height: 1.5;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #b5a18a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.toast-close:hover {
    color: #e8d5c0;
    transform: scale(1.15);
}

.toast-progress {
    height: 3px;
    background: linear-gradient(90deg, #c8956c, #e0b98a);
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
}

.success-toast.show .toast-progress {
    animation: toastProgress 2s linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 520px) {
    .success-toast {
        min-width: auto;
        width: calc(100vw - 2rem);
        left: auto;
        right: -100vw;
    }

    .success-toast.show {
        right: 1rem;
    }

    .success-toast.hiding {
        right: -100vw;
    }
}

/* ==========================================================================
   Interactive Lightbox / Image Viewer System
   ========================================================================== */

.gallery-grid img,
.gallery-grid-5 img,
.photo-frame img,
.project-gallery img,
.grid-main img,
.grid-side img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover,
.gallery-grid-5 img:hover,
.photo-frame img:hover,
.project-gallery img:hover {
    filter: brightness(1.08);
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
    user-select: none;
}

.lightbox-image.zoomed {
    transform: scale(1.6);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10010;
    line-height: 1;
}

.lightbox-close:hover {
    background: #c8956c;
    border-color: #c8956c;
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10010;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav-btn:hover {
    background: #c8956c;
    border-color: #c8956c;
    transform: translateY(-50%) scale(1.08);
}

.lightbox-caption {
    margin-top: 1.2rem;
    color: #e5dfd5;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-counter {
    font-size: 0.8rem;
    color: #c8956c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 2x2 Custom Gallery Grid for Landscaping / Villa 39C */
.gallery-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
}

.gallery-grid-2x2 .frame-landscape {
    aspect-ratio: 1448 / 1086;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-grid-2x2 .frame-portrait {
    aspect-ratio: 1086 / 1448;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-grid-2x2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.gallery-grid-2x2 img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .gallery-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Screen-reader only utility for SEO headings */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-main-heading {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
    text-transform: none;
}