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

:root {
    --font-primary: "DM Sans", sans-serif;
    --sans: var(--font-primary);
    --bg-primary: #0e1011;
    --bg-inverse-muted: #181b1c;
    --bg-default: #ffffff;
    --bg-muted2: #ececec;
    --text-default: #0e1011;
    --text-inverse: #ffffff;
    --text-gray: #737373;
    --text-muted: rgba(14, 16, 17, 0.5);
    --text-inverse-muted: rgba(255, 255, 255, 0.6);
    --radius-card: 12px;
    --radius-btn: 6px;
    --gap: 12px;
    --font: "DM Sans", sans-serif;
    --social-default: #ffffff;
    --black: #0a0a0a;
    --white: #f5f3ef;
    --accent: #c8a96e;
    --gray: #8a8a8a;
    --light: #e8e4dc;
    --font: "DM Sans", sans-serif;
}

html,
body {
    background: var(--bg-primary);
    font-family: var(--font-primary);
    color: var(--text-inverse);
    height: 100%;
    overflow-x: hidden;
}
body.fadeOut{
  opacity:0;
}
h1, h2, h3, h4, h5, h6 {
		font-weight: 400;
		font-family: var(--font-primary);
		color:#000;
		margin-bottom:10px;
	}
	
	h1.big-title{
		font-size: 80px;
		font-style: normal;
		font-weight: 300;
		line-height: 110px;
		margin-left:-7px;
	}	
	
	h1{
		font-size:48px;
		line-height: 60px;
		margin-left:-3px;
	}
	
	h2{
		font-size: 30px;
		line-height: 48px;
		margin-left:-1px;
	}
	
	h3{
		font-size:25px;
		line-height: 36px;
		margin-left:-1px;
	}
	
	h4{
		font-size:20px;
		line-height: 30px;
		margin-left:-1px;	
	}
	
	h5{
		font-size:18px;
		line-height: 24px;
		margin-left:-1px;
	}
	
	h6{
		font-size:14px;
		line-height: 18px;
	}
	p {
		font-size:17px;
		margin-bottom:15px;
		line-height:28px;
	}
	
	p.no-margins {
		margin-bottom:0;
	}
/* ── PAGE TRANSITION ── */
/* Enable transitions */
@view-transition {
  navigation: auto;
}

/* Smooth transition timing */

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* OLD PAGE */

::view-transition-old(root) {
  animation:
    old-fade 0.8s forwards;
}

/* NEW PAGE */

::view-transition-new(root) {
  animation:
    new-fade 0.8s forwards;
}

/* Fade out */

@keyframes old-fade {
  to {
    opacity: 0;
    filter: blur(4px);
  }
}

/* Fade in */

@keyframes new-fade {
  from {
    opacity: 0;
    filter: blur(4px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}


/* =========================
   CUSTOM SCROLLBAR
   ========================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px; /* Scrollbar width */
}

/* Scrollbar BACKGROUND/TRACK */
::-webkit-scrollbar-track {
  background: #111; /* Dark background color */
}

/* Scrollbar MOVING HANDLE/THUMB */
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #00c6ff, /* Top scroll color */
    #0072ff  /* Bottom scroll color */
  );

  border-radius: 10px; /* Rounded scrollbar */

  border: 2px solid #111; 
  /* Border color around scrollbar thumb */
}

/* Scrollbar hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #00e1ff, /* Hover top color */
    #005eff  /* Hover bottom color */
  );
}

/* Firefox support */
* {
  scrollbar-width: thin;

  scrollbar-color:
    #181b1c /* Scrollbar thumb color */
    #111;   /* Scrollbar background color */
}

/* ── SCROLL PROGRESS ── */
.scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 8999;
    transform-origin: left;
    transform: scaleX(0);
    pointer-events: none;
    width: 100%;
}

/* ── PAGE SHELL ── */
.page {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding-left: var(--gap);
	padding-right: var(--gap);
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    overflow: visible;
}

.main-wrapper {
    max-width: 100%;
}

/* Sound Fix */
.sound-btn{
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Work Page Responsive Fixes */
.wk-page {
    max-width: 100vw;
    overflow: visible;
}

.wk-main {
    max-width: 100%;
    overflow: visible;
}

.wk-right {
    max-width: 100%;
    overflow: visible;
}

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 35px;
    padding: 6px 20px 14px;
    background: var(--bg-primary);
    border-radius: 0 0 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.logo-icon {
    width: 100px;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 85px;
    }
}
.logo-icon svg {
    display: block;
    width: 100%;
    height: auto;
}
.logo-name {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-inverse);
    line-height: 0.9;
    white-space: nowrap;
}
.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
}
.nav a {
    font-size: 14px;
    color: var(--text-inverse);
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.2s;
}
.nav a:hover {
    opacity: 0.6;
}

/* ── MAIN WRAPPER ── */
.main-wrapper {
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
}

/* ── LEFT — sticky hero image ── */
.left-col {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--gap) 0;
    display: flex;
}
/* ── RIGHT — scrollable content ── */
.right-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding: var(--gap) 0;
}
.right-col {
    max-width: 100%;
}

@media (max-width: 769px) {

    /* ── LEFT — sticky hero image ── */
    .left-col {
        flex: 1;
        min-width: 0;
        position: sticky;
        top: 0;
        height: 100vh;
        padding: var(--gap) 0;
        display: flex;
    }
	.left-col {
        position: relative;
        width: 100%;
        height: 60vw;
        min-height: 300px;
    }

    /* ── RIGHT — scrollable content ── */
    .right-col {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        padding: var(--gap) 0;
        max-width: 100%;
		min-height: 300px;
    }

}
.hero-image-wrapper {
    flex: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--bg-inverse-muted);
    position: relative;
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* corner label */
.corner-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-default);
    padding: 12px 16px 8px;
    border-radius: 20px 0 0 0;
    font-size: 15px;
    color: var(--text-default);
    white-space: nowrap;
}

/* slideshow nav buttons */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: #fff;
    transition: background 0.2s;
}
.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}
.slideshow-nav.prev {
    left: 40px;
}
.slideshow-nav.next {
    right: 40px;
}
.slideshow-nav svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

/* ── TOP ROW: bio card + socials ── */
.top-row {
    display: flex;
    gap: var(--gap);
}

.bio-card {
    flex: 1;
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 128px;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 24px;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-muted2);
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.profile-name {
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
}
.profile-role {
    font-size: 15px;
    color: var(--text-inverse-muted);
    line-height: 1;
}

.bio-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    max-width: 100%;
}

/* ── MENU CARDS COLUMN ── */
.menus-col {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.menu-card {
    flex: 1;
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.menu-card:hover {
    background: #22272a;
}
.menu-card.light {
    background: var(--bg-default);
}
.menu-card.light:hover {
    background: #f0f0f0;
}

.menu-label {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}
.menu-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--social-default); /* key fix */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Font Awesome icons */
.menu-icon i {
    font-size: 16px;
    color: inherit;
}

/* Optional: if any SVG still exists */
.menu-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
}
.menu-title {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}
.menu-year {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
}
.menu-client {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
}
.menu-services {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
}
.menu-location {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
}
/* Light card */
.menu-card.light {
    color: var(--text-default); /* ensures text + icon both gray */
}

.menu-card.light .menu-icon {
    color: var(--text-default); /* force icon to match */
}

/* Dark card */
.menu-card.dark {
    color: #fff;
}

.menu-card.dark .menu-label {
    color: #fff;
}

/* ── SOCIAL CARDS COLUMN ── */
.fa-brands {
    color: currentColor;
}
.socials-col {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.social-card {
    flex: 1;
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.social-card:hover {
    background: #22272a;
}
.social-card.light {
    background: var(--bg-default);
}
.social-card.light:hover {
    background: #f0f0f0;
}

.social-label {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}
/* Base icon */
.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--social-default); /* key fix */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Font Awesome icons */
.social-icon i {
    font-size: 16px;
    color: inherit;
}

/* Optional: if any SVG still exists */
.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
}

/* Light card */
.social-card.light {
    color: var(--text-default); /* ensures text + icon both gray */
}

.social-card.light .social-icon {
    color: var(--text-default); /* force icon to match */
}

/* Dark card */
.social-card.dark {
    color: #fff;
}

.social-card.dark .social-label {
    color: #fff;
}

/* ── ABOUT SECTION ── */
.white-card {
    background: var(--bg-default);
    border-radius: var(--radius-card);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.white-title {
    color: var(--text-inverse);
    line-height: 1.2;
}
.dark-title {
    color: var(--text-gray);
    line-height: 1.2;
}

.white-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}
.white-logo img {
    width: 250px;
    height: auto;
    object-fit: contain;
}
/* ── CONTACT SECTION ── */
.contact-card {
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 12px;
    gap: 12px;
}
/* ── ABOUT SECTION ── */
.ab-about-card {
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ab-section-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}

.ab-about-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

/* ── LATEST WORK BAR ── */
.work-bar {
    background: var(--bg-inverse-muted);
    border-radius: var(--radius-card);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #fff;
}
.work-bar-left svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.btn-text-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font: inherit;
    padding: 0;
    text-decoration: none;
}

.btn-text-link span {
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.btn-text-link::after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    width: 100%;

    /* hide line initially */
    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 0.4s ease;
}

/* hover animation */
.btn-text-link:hover::after {
    transform: scaleX(1);
}

/* active state */
.btn-text-link.active::after {
    transform: scaleX(1);
}

/* ── PROJECTS GRID ── */
.projects {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.projects-row {
    display: flex;
    gap: var(--gap);
}

.project-card {
    flex: 1;
    min-width: 0;
    height: 360px;
    background: var(--bg-primary);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.project-card:hover img {
    transform: scale(1.03);
}

.project-corner {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-primary);
    padding: 8px 16px 12px;
    border-radius: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #fff;
}
.project-corner svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.project-corner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--bg-primary);
    padding: 12px 16px 8px;
    border-radius: 0 20px 0 0;
    font-size: 16px;
    color: #fff;
    line-height: 0.9;
}

/* Scroll TABS for Client Name */

.project-all {
    background: var(--bg-default);
    color: var(--text-default);
    border-radius: var(--radius-btn);

    /* 🔥 responsive height */
    height: clamp(52px, 6vw, 70px);

    overflow: hidden;
    display: flex;
    align-items: center;

    /* responsive spacing */
    padding: 0 clamp(10px, 2vw, 14px);

    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

/* viewport */
.marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
/* moving track */
.marquee-track {
    display: inline-flex; /* 🔥 key fix */
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    align-items: center;
}
.marquee-track span {
    display: inline-block;
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1;
}

/* fade edges (responsive width) */
.project-all::before,
.project-all::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: clamp(30px, 8vw, 60px);
    z-index: 2;
    pointer-events: none;
}

.project-all::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-default), transparent);
}

.project-all::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-default), transparent);
}

/* ── ALL PROJECTS BUTTON ── */
.btn-all {
    background: var(--bg-default);
    color: var(--text-default);
    border: none;
    border-radius: var(--radius-btn);
    padding: 12px 14px;
    font: 14px/1 var(--font);
    cursor: pointer;
    width: 100%;
    height: 70px;
    transition: background 0.2s;
}
.btn-all:hover {
    background: #e8e8e8;
}

/* ── FOOTER ── */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.footer-socials-row {
    display: flex;
    gap: var(--gap);
}

.footer-box {
    background: var(--bg-default);
    border-radius: var(--radius-card);
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-avatar {
    width: 100px;
    height: auto;
    border-radius: 50%;
}
.footer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.footer-profile-name {
    font-size: 18px;
    color: var(--text-default);
    line-height: 1.2;
}
.footer-profile-role {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1;
    margin-top: 8px;
}

.btn-dark {
    background: var(--text-default);
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: 12px 14px;
    font: 14px/1 var(--font);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.btn-dark:hover {
    opacity: 0.8;
}
.btn-white {
    background: #fff;
    color: #000;
    border: none;
    border-radius: var(--radius-btn);
    padding: 5px 5px;
    font: 14px/1 var(--font);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    width: 100%;
	height: 70px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.btn-white:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    gap: 64px;
}
.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-col-title {
    font-size: 16px;
    color: var(--text-default);
    line-height: 1.4;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: var(--text-default);
}

/* Responsive */
@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
    }

    /* When stacked (tablet/mobile), avoid double vertical spacing and
       prevent the left column from consuming full viewport height */
    .left-col {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        padding-bottom: 0;
    }
    .right-col {
        padding-top: 0;
    }
    .hero-image-wrapper {
        height: 400px;
    }
    
    .top-row {
        flex-direction: column;
        gap: var(--gap);
    }

    .bio-card {
        padding: 32px;
        gap: 40px;
    }
    .menus-col {
        width: 100%;
    }
    .socials-col {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .social-card {
        flex: 1;
        min-width: 140px;
    }

    /* Fix Projects Grid for Mobile */
    .projects-row {
        flex-direction: column;
    }
    .project-card {
        height: auto;
        aspect-ratio: 4/5;
    }

    /* Fix Footer for Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 32px;
    }
    .footer-socials-row {
        flex-direction: column;
    }
    .footer-box {
        padding: 32px;
        gap: 40px;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    /* Hero Image Adjustments */
    .hero-image-wrapper {
        height: 400px;
    }
}

/* Random Media Load Start */
/* ── Preloader ── */
#preloader {
    position: absolute;
    inset: 0;
    background: var(--bg-inverse-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: opacity 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
.spinner {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
.preloader-text {
    margin-top: 14px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: sans-serif;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Stage: two slots for crossfade ── */
#stage {
    inset: 0;
    width: 100%;
    height: 100%;
}

.slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.slot.active {
    opacity: 1;
}

.slot img,
.slot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* ── No media ── */
#nomedia {
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    gap: 10px;
    font-family: sans-serif;
}
#nomedia.show {
    display: flex;
}
#nomedia h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
}
#nomedia p {
    font-size: 12px;
    opacity: 0.5;
}

/* WORK START HERE */

/* ── DESIGN TOKENS (wk- scoped) ── */
.wk-root {
    --wk-bg: #0e1011;
    --wk-bg-muted: #181b1c;
    --wk-bg-muted2: #1f2122;
    --wk-bg-light: #ececec;
    --wk-bg-white: #ffffff;
    --wk-text-white: #ffffff;
    --wk-text-dark: #0e1011;
    --wk-text-muted: rgba(14, 16, 17, 0.5);
    --wk-text-dim: rgba(255, 255, 255, 0.5);
    --wk-radius: 12px;
    --wk-radius-sm: 6px;
    --wk-gap: 12px;
    --wk-font: "DM Sans", sans-serif;
}

body.wk-root {
    background: var(--wk-bg);
    font-family: var(--wk-font);
    color: var(--wk-text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── PAGE SHELL ── */
.wk-right {
    will-change: transform, opacity;
}
.wk-page {
    display: flex;
    flex-direction: column;
    gap: var(--wk-gap);
    padding: 0 var(--wk-gap) var(--wk-gap);
    position: relative;
}

/* ── HEADER ── */
.wk-header {
    position: sticky;
    top: 0;
    z-index: 20;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 35px;
    padding: 6px 20px 14px;
    background: var(--wk-bg);
    border-radius: 0 0 20px 0;
}

.wk-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.wk-logo-mark {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.wk-logo-mark span:nth-child(1) {
    background: #0e1011;
}
.wk-logo-mark span:nth-child(2) {
    background: #fff;
}
.wk-logo-mark span:nth-child(3) {
    background: #fff;
}
.wk-logo-mark span:nth-child(4) {
    background: #0e1011;
}

.wk-logo-name {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    line-height: 0.9;
    white-space: nowrap;
}

.wk-nav {
    display: flex;
    gap: 20px;
    list-style: none;
}
.wk-nav a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.wk-nav a:hover {
    opacity: 1;
}

.wk-header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ── MAIN WRAPPER ── */
.wk-main {
    display: flex;
    gap: var(--wk-gap);
    align-items: flex-start;
}

/* ── LEFT — sticky hero ── */
.wk-left {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--wk-gap) 0;
    display: flex;
    align-items: stretch;
}

.wk-hero-wrap {
    flex: 1;
    border-radius: var(--wk-radius);
    overflow: hidden;
    background: var(--bg-inverse-muted);
    position: relative;
}
.wk-hero-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wk-hero-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--wk-bg);
    color: var(--wk-text-white);
    font-size: 15px;
    line-height: 1;
    padding: 12px 16px 8px;
    border-radius: 20px 0 0 0;
    white-space: nowrap;
}

/* ── RIGHT — scrollable ── */
.wk-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--wk-gap);
    padding: var(--wk-gap) 0;
}

/* ── INTRO CARD ── */
.wk-intro-card {
    background: var(--wk-bg-muted);
    border-radius: var(--wk-radius);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 128px;
}

.wk-page-title {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.wk-intro-body {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    max-width: 500px;
}

/* ── PROJECTS LIST ── */
.wk-projects {
    display: flex;
    flex-direction: column;
    gap: var(--wk-gap);
}

/* 2-Column Image Grid for Single Page */
.wk-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wk-gap);
}

.wk-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--wk-radius);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.wk-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wk-grid-item:hover img {
    transform: scale(1.05);
}

.wk-grid-item .wk-grid-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 15px;
    font-size: 14px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .wk-projects-grid {
        grid-template-columns: 1fr;
    }
}

.wk-project-row {
    background: var(--wk-bg-muted);
    border-radius: var(--wk-radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.wk-project-row:hover {
    background: #202425;
}
.wk-project-row.wk-project-row--accent {
    background: var(--wk-bg-muted2);
}
.wk-project-row.wk-project-row--accent:hover {
    background: #272b2c;
}

.wk-project-name {
    font-size: 18px;
    color: #fff;
    line-height: 0.9;
    white-space: nowrap;
    font-weight: 400;
	padding-bottom: 5px;
}

.wk-project-meta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.wk-project-tag,
.wk-project-year {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    white-space: nowrap;
}
.wk-project-row--accent .wk-project-tag,
.wk-project-row--accent .wk-project-year {
    color: rgba(255, 255, 255, 0.75);
}

.wk-arrow-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}
.wk-arrow-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}
/* ── ANIMATIONS ── */
.wk-project-row {
    position: relative;
    overflow: hidden;
}
.wk-project-row::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
}
.wk-project-row:hover::after {
    transform: scaleY(1);
}

.wk-hero-wrap {
    overflow: hidden;
}

.wk-hero-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    will-change: transform, opacity;
}
/* ── FOOTER SECTION ── */
.wk-footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--wk-gap);
}

/* Contact Me strip */
.wk-contact-strip {
    background: var(--wk-bg-white);
    border-radius: var(--wk-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.18s;
    text-decoration: none;
}
.wk-contact-strip:hover {
    background: #f2f2f2;
}

.wk-contact-label {
    font-size: 14px;
    color: var(--wk-text-dark);
    line-height: 1.2;
}

.wk-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.wk-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--wk-text-dark);
    fill: none;
    stroke-width: 1.3;
}
/* ── GALLERY BASE ── */
			.wc-gallery {
				display: flex;
				flex-direction: column;
				gap: 12px;
			}

			/* rows */
			.wc-gallery-row {
				display: grid;
				gap: 12px;
			}

			.wc-gallery-row--half {
				grid-template-columns: 1fr 1fr;
			}

			.wc-gallery-row--full {
				grid-template-columns: 1fr;
			}

			/* items */
			.wc-gallery-item {
				border-radius: 18px;
				overflow: hidden;
				position: relative;
				cursor: pointer;
			}

			/* image FULL COVER (IMPORTANT FIX) */
			.wc-gallery-item img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
				transform: scale(1.02);
				transition: transform .6s ease;
			}

			.wc-gallery-item:hover img {
				transform: scale(1.08);
			}

			/* heights */
			.wc-gallery-item--tall {
				height: 520px;
			}

			.wc-gallery-item--wide {
				height: 460px;
			}

			.wc-gallery-item--short {
				height: 360px;
			}

			/* ── NEXT PROJECT ── */
			.ws-next-section {
				display: flex;
				gap: 12px;
				align-items: stretch;
				width: 100%;
				animation: ws-fadein .45s ease .14s both;
			}

			/* ── LEFT CARD (50%) ── */
			.ws-next-card {
				width: 50%;
				background: #181b1c;
				border-radius: 12px;
				padding: 48px;
				display: flex;
				align-items: center;
			}
			/* content wrapper */
			.ws-next-content {
				max-width: 420px;
			}

			/* ── LABEL ── */
			.ws-next-label {
				font-size: 13px;
				color: var(--ws-text-dim);
				text-transform: uppercase;
				letter-spacing: .08em;
				margin-bottom: 12px;
			}

			/* ── TITLE ── */
			.ws-next-title {
				font-size: 28px;
				font-weight: 400;
				color: #fff;
				line-height: 1.2;
				margin-bottom: 80px;
			}

			/* ── DESCRIPTION ── */
			.ws-next-desc {
				font-size: 15px;
				color: var(--ws-text-dim);
				line-height: 1.6;
				margin-bottom: 28px;
			}

			/* ── BUTTON ── */
			.ws-btn-view {
				display: inline-flex;
				align-items: center;
				gap: 8px;
				background: #fff;
				color: #000;
				text-decoration: none;
				border-radius: 6px;
				padding: 12px 18px;
				font: 14px/1 var(--ws-font);
				transition: background .18s ease;
			}

			.ws-btn-view:hover {
				background: #e8e8e8;
			}

			.ws-btn-view svg {
				width: 14px;
				height: 14px;
				stroke: var(--ws-text-dark);
				fill: none;
				stroke-width: 1.5;
			}

			/* ── RIGHT IMAGE (50%) ── */
			.ws-next-thumb {
				width: 50%;
				height: auto;
				border-radius: 12px;
				overflow: hidden;
				background: #222;
				position: relative;
			}

			.ws-next-thumb img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: center top;
				transition: transform .5s ease;
			}

			.ws-next-thumb:hover img {
				transform: scale(1.05);
			}

			/* ── RESPONSIVE ── */
			@media (max-width: 768px) {
				.ws-next-section {
					flex-direction: column;
				}

				.ws-next-card,
				.ws-next-thumb {
					width: 100%;
				}

				.ws-next-card {
					padding: 32px;
				}

				.ws-next-thumb {
					height: 260px;
				}
			}

			/* ── LIGHTBOX OVERLAY ── */
			.wc-lightbox-overlay {
				position: fixed;
				inset: 0;
				background: rgba(0, 0, 0, 0.92);
				display: flex;
				align-items: center;
				justify-content: center;
				opacity: 0;
				pointer-events: none;
				transition: 0.3s ease;
				z-index: 9999;
			}

			/* active state */
			.wc-lightbox-overlay.active {
				opacity: 1;
				pointer-events: auto;
			}

			/* image */
			.wc-lightbox-overlay img {
				max-width: 90%;
				max-height: 90%;
				object-fit: contain;
				transform: scale(0.95);
				transition: 0.3s ease;
			}

			.wc-lightbox-overlay.active img {
				transform: scale(1);
			}

			/* close button */
			.wc-lightbox-close {
				position: absolute;
				top: 20px;
				right: 30px;
				font-size: 40px;
				color: #fff;
				cursor: pointer;
				font-weight: 300;
				user-select: none;
			}

			/* ── LIGHTBOX ARROWS ── */
			.wc-lightbox-prev,
			.wc-lightbox-next {
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				font-size: 26px;
				color: #fff;
				cursor: pointer;
				opacity: 0.7;
				transition: 0.2s ease;
				user-select: none;
			}

			.wc-lightbox-prev:hover,
			.wc-lightbox-next:hover {
				opacity: 1;
			}

			.wc-lightbox-prev {
				left: 30px;
			}

			.wc-lightbox-next {
				right: 30px;
			}

			/* ── NEXT PROJECT 2-GRID SYSTEM ── */
			.wc-next-wrapper {
				display: grid;
				grid-template-columns: 1fr 1.2fr;
				gap: 18px;
				margin-top: 30px;
				align-items: stretch;
			}

			/* LEFT IMAGE */
			.wc-next-thumb {
				border-radius: 18px;
				overflow: hidden;
				height: 320px;
			}

			.wc-next-thumb img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform .6s ease;
			}

			.wc-next-thumb:hover img {
				transform: scale(1.05);
			}

			/* RIGHT CARD */
			.wc-next-card {
				background: #111;
				border-radius: 18px;
				padding: 40px;
				display: flex;
				align-items: center;
			}

			/* MOBILE FIX */
			@media(max-width:768px) {
				.wc-next-wrapper {
					grid-template-columns: 1fr;
				}

				.wc-next-thumb {
					height: 240px;
				}
			}
/* Footer white box */
.wk-footer-box {
    background: var(--wk-bg-white);
    border-radius: var(--wk-radius);
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.wk-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wk-footer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wk-footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--wk-bg-light);
    flex-shrink: 0;
}
.wk-footer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.wk-footer-name {
    font-size: 18px;
    color: var(--wk-text-dark);
    line-height: 1.2;
}
.wk-footer-role {
    font-size: 15px;
    color: var(--wk-text-muted);
    line-height: 1;
    margin-top: 8px;
}

.wk-btn-dark {
    background: var(--wk-text-dark);
    color: #fff;
    border: none;
    border-radius: var(--wk-radius-sm);
    padding: 12px 14px;
    font: 14px/1 var(--wk-font);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.wk-btn-dark:hover {
    opacity: 0.78;
}

.wk-footer-bottom {
    display: flex;
    gap: 64px;
}

.wk-footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wk-footer-col-title {
    font-size: 16px;
    color: var(--wk-text-dark);
    line-height: 1.4;
    font-weight: 400;
}

.wk-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wk-footer-nav a {
    font-size: 14px;
    color: var(--wk-text-muted);
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.18s;
}
.wk-footer-nav a:hover {
    color: var(--wk-text-dark);
}

/* Fade-in on load */
@keyframes wk-fadein {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.wk-intro-card {
    animation: wk-fadein 0.5s ease both;
}
.wk-projects {
    animation: wk-fadein 0.5s ease 0.1s both;
}
.wk-footer-section {
    animation: wk-fadein 0.5s ease 0.2s both;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .wk-main {
        flex-direction: column;
    }
    .wk-left {
        position: relative;
        height: 55vw;
        min-height: 260px;
    }
    .wk-intro-card {
        gap: 48px;
        padding: 32px;
    }
    .wk-footer-box {
        padding: 32px;
        gap: 40px;
    }
    .wk-footer-bottom {
        gap: 32px;
        flex-wrap: wrap;
    }
}

/* ── EXHIBITIONS ── */
    .ab-section-card {
      background: var(--bg-inverse-muted);
      border-radius: var(--radius-card);
      padding: 48px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ab-section-intro {
      font-size: 15px;
      color: var(--text-default);
      line-height: 1.55;
      max-width: 540px;
      margin-bottom: 24px;
    }

    .ab-list-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      cursor: pointer;
      text-decoration: none;
      transition: padding-left .2s;
    }
    .ab-list-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
    .ab-list-row:hover { padding-left: 8px; }

    .ab-list-name {
      font-size: 18px;
      font-weight: 400;
      color: #fff;
      line-height: 1;
    }
    .ab-list-meta {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .ab-list-year {
      font-size: 14px;
      color: var(--text-inverse);
      line-height: 1;
    }
    .ab-list-arrow {
      width: 16px; height: 16px; opacity: .5;
    }
    .ab-list-arrow svg {
      width: 16px; height: 16px;
      stroke: #fff; fill: none; stroke-width: 1.5;
    }
    .ab-list-row:hover .ab-list-arrow { opacity: 1; }

	/* --- New Utility Classes for Optimization --- */
	.text-justify {
		text-align: justify;
	}
	.relative-card {
		position: relative;
	}
	.object-top {
		object-position: center top;
	}

 /* FAQS Code  */
 
 .faq-card {
    padding: 50px;
    border-radius: 12px;
    background: var(--bg-inverse-muted);
}

.faq-heading {
    margin-bottom: 50px;
}

.faq-heading span {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-heading h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    max-width: 700px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #171717;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.18);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 28px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question span {
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-question span::before,
.faq-question span::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: 0.3s ease;
}

.faq-question span::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-question span::after {
    width: 2px;
    height: 18px;
    top: 0;
    left: 8px;
}

.faq-item.active .faq-question span::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-size: 15px;
    max-width: 900px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media(max-width:768px){

    .faq-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px;
    }

    .faq-answer p {
        padding: 0 22px 22px;
    }

}



.contact-services {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.contact-services h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.6;
}

/* Dot before text */
.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}
