/* -----------------------------------
   Global Reset
----------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* Box-sizing */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Body */
body {
    padding-top: 3.5em;
    line-height: 1.75;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    background-color: #eaeaea;
    color: #646464;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    overflow-x: hidden;
}

body.is-preload {
    overflow: hidden;
}

body.is-preload #header {
    top: 3px; /* Account for loading bar */
}

body.is-preload #header,
body.is-preload #hero,
body.is-preload section {
    opacity: 0;
}

section {
    transition: opacity 1.2s ease 0.4s;
}

body:not(.is-preload) section {
    opacity: 1;
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 10001;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-out 0.3s;
}

.loading-bar.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-bar-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6e00 0%, #ff8c42 50%, #ff6e00 100%);
    background-size: 200% 100%;
    transition: width 0.3s ease-out;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 110, 0, 0.5);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* Links */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

a:hover {
    border-bottom-color: transparent;
    color: #ff6e00;
}

/* Blockquotes */
blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
}

figure {
    margin: 0;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    margin: 0;
}

address {
    font-style: normal;
}

[hidden] {
    display: none !important;
}

/* Typography */
input, button, h1, h2, h3, h4, h5, h6, p, blockquote, pre {
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #3c3b3b;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: bold;
}

p {
    margin: 0 0 1.5em 0;
    line-height: 1.75;
}

blockquote {
    font-style: normal;
    margin: 0 0 1.5em;
    padding: 0 1.5em;
    border-left: 4px solid #ff6e00;
    color: #646464;
}

address {
    font-style: normal;
    line-height: 1.5;
}

/* Shared Elements */

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3c3b3b;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.section-title span {
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #151515;
    margin: 15px auto;
}

.lead p ins {
    color: #ff6e00;
    font-weight: bold;
    text-decoration: none;
    text-shadow: none;
}

.lead.motto p {
    font-size: 1.2em;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 15px;
    color: #646464;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Text readability improvements */

#hero, #parallax-quote {
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#hero > * {
    position: relative;
    z-index: 2;
}

#about {
    color: #eee;
}

blockquote, .portfolio-overlay p {
    background: rgba(0, 0, 0, 0.55);
    padding: 1em 1.5em;
    color: white;
    font-style: normal;
    font-size: 1.15em;
    line-height: 1.6;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    max-width: 100%;
    margin: 0 auto 1.5em;
}

blockquote {
    border-left: 5px solid #ff6e00;
    margin-left: 0;
}

blockquote ins {
    color: #ff6e00;
    text-decoration: none;
}

#parallax-quote blockquote {
    font-size: 2em;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
    max-width: 90vw;
}

#parallax-quote .quote-author {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ff6e00;
    margin-top: 1em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Header */

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(160, 160, 160, 0.3);
    height: 3.5em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding: 0 1.5em;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

body:not(.is-preload) #header {
    opacity: 1;
}

#header h1 a {
    color: #3c3b3b;
    font-family: "Raleway", Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.7em;
    position: relative;
    transition: color 0.2s;
}

#header h1 a:hover {
    color: #ff6e00;
}

#header .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-family: "Raleway", Helvetica, sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

#header .links ul li {
    margin-left: 1em;
}

#header .links ul li a {
    color: #3c3b3b;
    text-decoration: none;
    font-size: 0.7em;
    transition: color 0.2s;
    position: relative;
}

#header .links ul li a:hover:before {
    opacity: 1;
    transform: translateX(0px);
}

#header .links ul li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 18px;
    height: 2px;
    opacity: 0;
    background-color: #ff6e00;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

#header .links ul li a:hover {
    color: #ff6e00;
}

/* Hamburger Button */

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
    display: none;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: background-color 0.5s ease;
    transform-origin: center;
}

.top-bar {
    top: 0;
}

.middle-bar {
    top: 45%;
    transform: translateY(-50%);
}

.bottom-bar {
    bottom: 0;
}

.hamburger:hover .bar {
    background-color: #ff6e00;
}

.hamburger.active .top-bar {
    transform: translateY(9px) rotate(45deg);
    background-color: #ff6e00;
}

.hamburger.active .middle-bar {
    opacity: 0;
}

.hamburger.active .bottom-bar {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #ff6e00;
}

@media screen and (max-width: 980px) {
    .hamburger {
        display: block;
    }
    #header .links {
        display: none;
    }
}

/* Menu Section */

.menu-container {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
}

.menu-container.active {
    pointer-events: auto;
}

.menu-container.hidden .menu-bg {
    visibility: hidden;
}

.menu-bg {
    position: fixed;
    display: block;
    width: 1px;
    height: 1px;
    background-color: white;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-45deg);
    visibility: hidden;
    z-index: 5;
    pointer-events: none;
    transition: width 0.6s ease-in-out, height 0.8s ease;
}

.menu-container.active .menu-bg {
    visibility: visible;
    width: 4000px;
    height: 4400px;
    transition: width 0.6s ease-in-out, height 0.8s ease 0.6s;
}

.menu-container.closing .menu-bg {
    height: 1px;
    width: 1px;
    visibility: visible;
    transition: height 0.6s ease-in-out, width 0.8s ease 0.6s;
}

.menu-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s, background-color 0.5s ease 0.6s;
}

.menu-container.active .menu-content {
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 1);
}

.menu-container.closing .menu-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.menu-links {
    display: block;
    padding: 20%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease 1.4s;
}

.menu-container.active .menu-links {
    opacity: 1;
    visibility: visible;
}

.menu-container.closing .menu-links {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.menu-links li {
    padding: 15px 0;
}

.menu-links a {
    text-decoration: none;
    color: #636363;
    position: relative;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.menu-links a:hover:before {
    opacity: 1;
    transform: translateX(0px);
}

.menu-links a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 18px;
    height: 2px;
    opacity: 0;
    background-color: #ff6e00;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

/* Hero Section */ 
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    background-image: url('../../images/Hero/Hero-BG.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    isolation: isolate; /* Creates new stacking context */
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#hero .hero-logo {
    position: relative;
    width: clamp(200px, 25vw, 400px);
    height: auto;
    margin-bottom: clamp(20px, 3vh, 40px);
    z-index: 2;
    transition: opacity 1.2s ease 0.3s;
    opacity: 0;
}

body:not(.is-preload) #hero .hero-logo {
    opacity: 1;
}

#hero .hero-title {
    position: relative;
    font-size: clamp(2em, 5vw, 2.5em);
    text-align: center;
    z-index: 2;
    color: white;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 1.2s ease 0.5s;
    opacity: 0;
}

body:not(.is-preload) #hero .hero-title {
    opacity: 1;
}

#hero .hero-title a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 0.2em 0;
}

#hero .hero-title a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff6e00;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero .hero-title a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* HERO SECTION — wipe effect for DESIGN */
#hero .scroll-button {
    color: inherit;
    text-decoration: none;
}

#hero .design-text {
    position: relative;
    display: inline-block;
    color: white; /* Base white text always visible */
}

#hero .design-text::after {
    /* Removed wipe effect: pseudo-element hidden to disable color wipe on DESIGN. */
    display: none !important;
    content: none !important;
}

#hero .re-imagined {
    color: #ff6e00;
    display: inline-block;
    position: relative;
}

#hero .small-caps {
    text-transform: none;
    font-size: 1.1em;
    font-weight: 500;
}


/* Services Section */

.service-section {
    padding: 5em 2em;
    background-color: #f9f9f9;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#services-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 20px;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.service-column {
    padding: 0 15px;
    box-sizing: border-box;
    flex: 1 1 320px; /* prefer fixed minimum column basis to avoid reflow jumps */
    max-width: 360px; /* cap column width for visual balance */
    margin-bottom: 50px;
    display: flex; /* Ensure column uses flexbox */
}

.service-post {
    background: #ffffff; /* Unified white background for the entire card */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Subtle shadow even when not hovered */
    margin-bottom: 30px;
    padding: 1.5em 1.5em 1.5em 1.5em; /* Add padding to create unified card space */
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Stretch children to full width */
    position: relative;
    overflow: hidden; /* Changed back to hidden for cleaner edges */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border-radius: 8px;
    height: 100%;
}

.service-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); /* Slightly stronger shadow on hover, but unified */
}

.service-post h3 {
    margin-bottom: 1.5em; /* Consistent spacing with card padding */
    margin-top: 0; /* Remove top margin */
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5em; /* Consistent spacing with card padding */
    margin-left: -1.5em; /* Extend image to card edges */
    margin-right: -1.5em; /* Extend image to card edges */
    margin-top: -1.5em; /* Extend image to top card edge */
    display: block;
    width: calc(100% + 3em); /* Compensate for negative margins */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.service-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(1);
}

.service-image-wrap:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Orange rectangle lines */
.service-image-wrap::before,
.service-image-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6e00, transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: none; /* Removed shadow to prevent double shadow effect */
}

.service-image-wrap::before {
    top: 5%;
    height: 1px;
    visibility: visible;
}

.service-image-wrap::after {
    bottom: 5%;
}

.service-image-wrap .left-line,
.service-image-wrap .right-line {
    content: '';
    position: absolute;
    top: 50%;
    height: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #ff6e00, transparent);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: none; /* Removed shadow to prevent double shadow effect */
}

.service-image-wrap .left-line {
    left: 5%;
}

.service-image-wrap .right-line {
    right: 5%;
}

.service-image-wrap:hover::before,
.service-image-wrap:hover::after {
    width: 90%;
    left: 50%;
}

.service-image-wrap:hover .left-line,
.service-image-wrap:hover .right-line {
    height: 90%;
    top: 50%;
}

.service-post blockquote {
    position: relative;
    margin: 0; /* Remove margin since card now has padding */
    padding: 0 0 0 1.5em; /* Only left padding for border spacing, no other padding */
    border-left: 2px solid #ff6e00;
    background: transparent; /* Fully transparent to match card background */
    font-style: normal;
    color: #646464;
    font-size: 1.2em;
    border-radius: 0; /* No border-radius to blend seamlessly */
    border-top: none; /* No top border */
    border-right: none; /* No right border */
    border-bottom: none; /* No bottom border */
    text-shadow: none; /* No text shadow */
    flex: 1; /* Take remaining space */
    width: 100%;
    box-sizing: border-box;
    line-height: 1.6; /* Improve readability */
    overflow: visible; /* No scrollbar */
    box-shadow: none; /* Ensure no shadow separation */
}


/* Focus handling: only apply the same visible styles as hover on focus (no heavy outline)
   This preserves keyboard visibility without introducing a large visual outline that differs
   from hover. */
.service-post:hover .service-image-wrap img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Enforce consistent aspect ratio for service images (16:9) */
.service-image-wrap {
    aspect-ratio: 16 / 9;
}

/* Use aspect-ratio where supported; fallback to padding-top technique */
@supports not (aspect-ratio: 16/9) {
    .service-image-wrap {
        height: 0;
        padding-top: 56.25%; /* 16:9 fallback */
    }
    .service-image-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Make service titles and links keyboard-friendly */
.service-post h3 {
    transition: transform 0.3s ease;
}

.service-post:hover h3 {
    transform: translateY(-2px);
}

.service-post h3 a {
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    position: relative;
}

.service-post h3 a:hover {
    color: #ff6e00;
    transform: scale(1.02);
}

.service-post p {
    margin-top: 1.5em;
    text-align: justify;
    color: #646464;
    line-height: 1.75;
}

/* Service Detail Sections */
.service-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
}

/* Prevent body scroll when modal is open */
body.service-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.service-details-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    pointer-events: none;
}

.service-details-container.has-active .service-details-backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s linear 0s;
    pointer-events: auto;
}

.service-detail-section {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s ease, visibility 0s linear 0.5s, padding 0.5s ease;
    margin: 0;
    padding: 0;
    position: relative;
}

.service-detail-section.active {
    visibility: visible;
    opacity: 1;
    max-height: 5000px;
    padding: 3em 0;
    margin: 3em 0;
    transition: opacity 0.4s ease 0.1s, max-height 0.5s ease, visibility 0s linear 0s, padding 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2em;
}

.service-detail-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3em;
    position: relative;
    overflow: hidden;
    z-index: 10000;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.service-detail-section.active .service-detail-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s, opacity 0.5s ease 0.1s;
}

.service-detail-section:not(.active) .service-detail-content {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-detail-close-btn {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 50%;
    color: #646464;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.service-detail-close-btn:hover,
.service-detail-close-btn:focus {
    background-color: #ff6e00;
    border-color: #ff6e00;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    outline: none;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3em;
    padding-bottom: 2em;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-header h2 {
    font-size: 2.5em;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 0.5em;
    line-height: 1.2;
}

.service-detail-tagline {
    font-size: 1.3em;
    color: #646464;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    font-style: italic;
}

.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    align-items: start;
}

.service-detail-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.service-detail-description {
    font-size: 1.1em;
    line-height: 1.9;
    color: #4a4a4a;
}

.service-detail-description p {
    margin: 0 0 1em;
}

.service-detail-features {
    background-color: #f9f9f9;
    padding: 2em;
    border-radius: 8px;
    border-left: 4px solid #ff6e00;
}

.service-detail-features h3 {
    font-size: 1.3em;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1em;
}

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

.service-detail-features li {
    padding: 0.75em 0;
    padding-left: 1.5em;
    position: relative;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1em;
}

.service-detail-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff6e00;
    font-size: 0.9em;
}

.service-detail-process {
    background-color: #fff;
    padding: 2em;
    border-radius: 8px;
    border-left: 4px solid #252525;
    margin-top: 1em;
}

.service-detail-process h3 {
    font-size: 1.3em;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1em;
}

.service-detail-process p {
    font-size: 1em;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0;
}

.service-detail-cta {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    margin-top: 1em;
}

.service-cta-button,
.service-cta-button-secondary {
    padding: 1em 2.5em;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 0.95em;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-cta-button {
    background-color: #ff6e00;
    color: #fff;
    border-color: #ff6e00;
}

.service-cta-button:hover,
.service-cta-button:focus {
    background-color: #e65a00;
    border-color: #e65a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.4);
    outline: none;
}

.service-cta-button-secondary {
    background-color: transparent;
    color: #ff6e00;
    border-color: #ff6e00;
}

.service-cta-button-secondary:hover,
.service-cta-button-secondary:focus {
    background-color: #ff6e00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.4);
    outline: none;
}

/* Service Link Styling */
.service-link {
    cursor: pointer;
}

/* Parallax Quote Section */

#parallax-quote {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: none;
    overflow: hidden;
    isolation: isolate; /* Creates a new stacking context */
}

#parallax-quote .parallax-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../../images/AI_Art/samurai_original.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: #000; /* fallback if image fails */
    opacity: 1;
}


#parallax-quote .parallax-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 1;
}

#parallax-quote .parallax-content {
    position: relative;
    z-index: 2;
    padding: 2em;
}

#parallax-quote blockquote {
    font-size: 1.88em;
    line-height: 2.5em;
    font-weight: 300; /* Lighter weight for elegance */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    background: transparent; /* Remove any background */
    border: none;
    padding: 0;
    box-shadow: none;
}

blockquote ins {
    color: #ff6e00;
    text-decoration: none;
}

.quote-author {
    font-size: 0.75em;
    margin-top: 20px;
    text-transform: uppercase;
}

/* About Section */

#about {
    padding: 2em;
    background-color: #151515;
    text-align: center;
    color: #eee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

.about-section,
.about-section h1, .about-section h2, .about-section h3,
.about-section h4, .about-section h5, .about-section h6,
.about-section p, .about-section span, .about-section a,
.about-section ins, .about-section blockquote, .about-section li,
.about-section .lead, .about-section .motto {
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

#about-header {
    padding-bottom: 20px;
    color: #fff;
}

#about-header .lead.motto {
    max-width: 800px;
    margin: 0 auto;
}

#about-header .section-title {
    color: #fff;
    margin-bottom: 20px;
}

#about-header .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #ff6e00;
    margin: 15px auto;
}

#about-header .lead.motto p {
    font-size: 0.95em;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 15px;
    text-align: left;
}

/* Portfolio Section */

#portfolio {
    padding: 5em 2em;
    background-color: #f4f4f4;
    text-align: center;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

#portfolio #portfolio-header {
    text-align: center;
    padding-bottom: 30px;
}

#portfolio #portfolio-header .section-title {
    font-size: 1.25em;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #151515;
}

#portfolio-header .section-title span {
    display: inline-block;
    position: relative;
    color: #151515;
}

#portfolio-header .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #151515;
    margin: 15px auto;
}

#portfolio-header .lead.motto p {
    font-size: 1.2em;
    color: #151515;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 15px;
}

.portfolio-filters {
    margin-bottom: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    align-items: center;
}

.portfolio-filters.active {
    display: flex;
}

.filter-toggle {
    display: none;
    background-color: #333;
    color: white;
    padding: 10px 25px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 6px;
    margin: 0 auto 20px;
    max-width: 320px;
    text-align: center;
    user-select: none;
}

/* Filter Button Styles */
.filter-btn {
    padding: 12px 28px;
    background-color: transparent;
    color: #151515;
    border: 2px solid #151515;
    cursor: pointer;
    font-weight: 700;
    border-radius: 30px;
    min-width: 120px;
    letter-spacing: 0.1em;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.filter-btn:hover::before,
.filter-btn:focus::before {
    width: 0;
    height: 0;
}

.filter-btn:hover,
.filter-btn:focus {
    color: #ff6e00;
    border-color: #ff6e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.3);
}

.filter-btn.active {
    background-color: #ff6e00;
    color: white;
    border-color: #ff6e00;
    outline: none;
    box-shadow: 0 4px 16px rgba(255, 110, 0, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    background: transparent;
    width: 0;
    height: 0;
}

.filter-btn:focus-visible {
    outline: 3px solid #ff6e00;
    outline-offset: 4px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2em;
    padding: 0 2em;
    max-width: 1200px;
    margin: 0 auto 4em;
    position: relative;
    min-height: 400px; /* Prevent layout shift during filtering */
    will-change: contents; /* Optimize for animations */
}

/* Prevent items from stretching when there are only 1-2 items */
.portfolio-item.visible {
    max-width: 100%;
}

/* When grid has 1-2 visible items, constrain their width */
.portfolio-grid[data-item-count="1"] .portfolio-item.visible,
.portfolio-grid[data-item-count="2"] .portfolio-item.visible {
    max-width: 400px;
    justify-self: start;
}

/* Portfolio Item Styles */
.portfolio-item {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-item img {
    width: 100%;
    height: 230px;
    aspect-ratio: 16 / 9; /* Prevent layout shift */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
    display: block; /* Ensure image is displayed */
    background-color: #f5f5f5; /* Placeholder background */
    /* Reserve space to prevent CLS */
    min-height: 230px;
}

/* Loading state for images */
.portfolio-item img.loading {
    opacity: 0.6;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.portfolio-item img.loaded {
    opacity: 1;
}

.portfolio-item img.error {
    opacity: 0.3;
    background-color: #ffebee;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Mobile-first: Portfolio grid images */
@media (max-width: 768px) {
    .portfolio-item img {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .portfolio-item img {
        height: 250px;
    }
}

.portfolio-item:hover img,
.portfolio-item:focus img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 1.2em 1em;
    transition: opacity 0.2s ease;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus .portfolio-overlay {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-overlay h3 {
    font-weight: 900;
    font-size: 1.6em;
    margin-bottom: 0.5em;
    letter-spacing: 0.05em;
}

.portfolio-overlay-description {
    display: none;
}

.view-details-btn {
    padding: 0.75em 2em;
    background-color: transparent;
    border: 2px solid #ff6e00;
    color: #ff6e00;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1em;
}

.view-details-btn:hover,
.view-details-btn:focus {
    background-color: #ff6e00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 110, 0, 0.4);
    outline: none;
}

/* Portfolio Detail Section */
.portfolio-detail-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 10002;
    padding: 0;
    overflow: hidden;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-detail-section.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-detail-close {
    position: fixed;
    top: 2em;
    right: 2em;
    width: 50px;
    height: 50px;
    background-color: #151515;
    border: 2px solid #ff6e00;
    border-radius: 50%;
    color: #ff6e00;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-detail-close:hover,
.portfolio-detail-close:focus {
    background-color: #ff6e00;
    color: #fff;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 20px rgba(255, 110, 0, 0.5);
    outline: none;
}

.portfolio-detail-container {
    max-width: 1600px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: block;
    position: relative;
    overflow: hidden;
}

.portfolio-detail-left {
    padding: 3em 4em 4em 5em;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    height: 100vh;
    max-height: 100vh;
    width: 50%;
    margin-right: 50%;
    box-sizing: border-box;
}

.portfolio-detail-right {
    background-color: #000;
    padding: 4em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    overflow: hidden;
    overflow-x: hidden;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    max-height: 100vh;
    box-sizing: border-box;
}

.detail-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
    height: 100%;
}

/* Thumbnail Gallery */
.detail-thumbnails {
    display: flex;
    gap: 1.25em;
    overflow-x: auto;
    padding: 1em 0.5em;
    scrollbar-width: thin;
    scrollbar-color: #ff6e00 rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

.detail-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.detail-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.detail-thumbnails::-webkit-scrollbar-thumb {
    background: #ff6e00;
    border-radius: 3px;
}

.detail-thumbnail-item {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.detail-thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 110, 0, 0.5);
}

.detail-thumbnail-item.active {
    border-color: #ff6e00;
    box-shadow: 0 6px 20px rgba(255, 110, 0, 0.4);
    transform: translateY(-2px);
}

.detail-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-image-main {
    width: 700px;
    height: 700px;
    max-width: 100%;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.detail-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.4s ease;
    object-fit: contain;
    object-position: center;
}

.detail-header {
    margin-bottom: 1.5em;
}

.detail-main-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 0.5em;
    line-height: 1.1;
    position: relative;
    padding-bottom: 0.5em;
}

.detail-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 3px;
    background-color: #252525;
}


.detail-subtitle {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0.5em 0 1em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.5em;
}

.detail-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 3px;
    background-color: #252525;
}


.portfolio-detail-social {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 2em;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #151515;
    border: 2px solid #ff6e00;
    border-radius: 50%;
    color: #ff6e00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover,
.social-link:focus {
    background-color: #ff6e00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 110, 0, 0.4);
}


.detail-section {
    margin-bottom: 3em;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1.75em;
    position: relative;
    padding-bottom: 0;
}

.detail-section-title::after {
    display: none;
}

.detail-description {
    margin-bottom: 2.5em;
    line-height: 1.9;
    color: #4a4a4a;
}

.detail-description p {
    margin-bottom: 1.5em;
    font-size: 1em;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

.detail-characteristics {
    margin-bottom: 2.5em;
    line-height: 1.9;
    color: #4a4a4a;
}

.detail-characteristics p {
    margin-bottom: 1.5em;
    font-size: 1em;
}

.detail-characteristics p:last-child {
    margin-bottom: 0;
}

/* Design Process Content */
.detail-process-content {
    margin-bottom: 2.5em;
    line-height: 1.9;
    color: #4a4a4a;
}

.detail-process-subsection {
    margin-bottom: 2.5em;
}

.detail-process-subsection:last-child {
    margin-bottom: 0;
}

.detail-process-subsection-title {
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1em;
    line-height: 1.4;
}

.detail-process-subsection-content {
    font-size: 1em;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5em;
}

.detail-process-subsection:last-child .detail-process-subsection-content {
    margin-bottom: 0;
}

/* Share Section */
.detail-share {
    margin: 2em 0 0 0;
    padding: 0;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0;
}

.share-label span {
    color: #252525;
}

.share-buttons {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

.share-btn {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    transition: color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    padding: 0.25em;
}

.share-btn:visited {
    color: #999999;
}

.share-btn:hover,
.share-btn:focus {
    color: #ff6e00;
    transform: none;
    box-shadow: none;
    outline: none;
}

.share-btn:active {
    color: #ff6e00;
}

.detail-skills {
    margin-bottom: 3em;
}

.skills-title {
    font-size: 1.1em;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #151515;
    margin: 0 0 1.5em;
}

.skill-item {
    margin-bottom: 2em;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
}

.skill-name {
    font-weight: 700;
    color: #151515;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95em;
}

.skill-percentage {
    font-weight: 800;
    color: #151515;
    background-color: #f4f4f4;
    padding: 0.3em 0.8em;
    border-radius: 4px;
    font-size: 0.9em;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background-color: #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6e00 0%, #ff8c42 100%);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 110, 0, 0.3);
}

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-top: 2em;
    padding: 0;
    border-top: none;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.meta-label {
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0;
}

.meta-value {
    font-size: 1em;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.meta-link {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-link:hover,
.meta-link:focus {
    color: #ff6e00;
    text-decoration: underline;
    outline: none;
}

/* Responsive Portfolio Detail */
@media (max-width: 1024px) {
    .portfolio-detail-container {
        display: block;
        height: auto;
    }
    
    .portfolio-detail-left {
        width: 100%;
        margin-right: 0;
        order: 2;
        height: auto;
        max-height: none;
        overflow-y: auto;
    }
    
    .portfolio-detail-right {
        position: relative;
        width: 100%;
        right: auto;
        order: 1;
        height: auto;
        max-height: none;
    }
    
    .portfolio-detail-close {
        top: 1em;
        right: 1em;
    }
}

@media (max-width: 768px) {
    .portfolio-detail-section {
        padding: 1em;
    }
    
    .portfolio-detail-info h2 {
        font-size: 1.8em;
    }
    
    .detail-section-title,
    .skills-title {
        font-size: 1em;
    }
    
    .detail-thumbnail-item {
        width: 80px;
        height: 80px;
    }
    
    .detail-main-title {
        font-size: 2em;
    }
    
    .portfolio-detail-left {
        padding: 2em 2em 2em 2em;
    }
    
    .portfolio-detail-right {
        padding: 2em;
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .detail-images-wrapper {
        position: relative;
        top: 0;
    }
    
    .detail-thumbnail-item {
        width: 100px;
        height: 100px;
    }
}

/* Project Details Modal */
.project-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10004;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-x: hidden;
}

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

.project-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.project-details-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
}

.project-details-close {
    position: fixed;
    top: 2em;
    right: 2em;
    width: 50px;
    height: 50px;
    background-color: rgba(21, 21, 21, 0.9);
    border: 2px solid #ff6e00;
    border-radius: 50%;
    color: #ff6e00;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10005;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-details-close:hover,
.project-details-close:focus {
    background-color: #ff6e00;
    color: #fff;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 20px rgba(255, 110, 0, 0.5);
    outline: none;
}

.project-details-content {
    width: 100%;
    max-width: 1400px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: relative;
}

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

.project-details-image-section {
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em;
    gap: 2em;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 90vh;
    max-height: 90vh;
}

.modal-project-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: calc(90vh - 6em);
    object-fit: contain;
    display: block;
    flex-shrink: 1;
}

.project-details-image-section.has-thumbnails .modal-project-image {
    max-height: calc(90vh - 6em - 140px);
}

.modal-wip-thumbnails {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1em 0;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    max-height: 120px;
}

/* BEFORE/AFTER Toggle Styles */
.ba-toggle {
    position: absolute;
    top: 1.5em;
    left: 1.5em;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(6px);
    padding: 0.5em 1em;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-toggle[aria-hidden="true"] {
    display: none !important;
}

.ba-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.25em 0.5em;
    transition: color 0.2s ease, opacity 0.2s ease;
    font-weight: 500;
}

.ba-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.ba-btn.active {
    color: #ff6e00;
    border-bottom: 1px solid #ff6e00;
    opacity: 1;
}

.ba-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

/* Corner Label */
.ba-label {
    position: absolute;
    bottom: 1.5em;
    right: 1.5em;
    z-index: 100;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(18, 18, 18, 0.5);
    padding: 0.5em 0.75em;
    border-radius: 4px;
    pointer-events: none;
}

.ba-label[aria-hidden="true"] {
    display: none !important;
}

/* Stacked Images Container */
.modal-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-stack .modal-project-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: calc(90vh - 6em);
    object-fit: contain;
}

.project-details-image-section.has-thumbnails .modal-image-stack .modal-project-image {
    max-height: calc(90vh - 6em - 140px);
}

.modal-wip-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-wip-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 110, 0, 0.5);
}

.modal-wip-thumbnail.active {
    border-color: #ff6e00;
    box-shadow: 0 6px 20px rgba(255, 110, 0, 0.4);
}

.modal-wip-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-details-text-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 90vh;
    max-height: 90vh;
}

.project-details-scrollable {
    padding: 3em 4em;
    padding-top: 3em;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    flex: 1;
    min-height: 0;
}

.project-details-scrollable::-webkit-scrollbar {
    width: 8px;
}

.project-details-scrollable::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.project-details-scrollable::-webkit-scrollbar-thumb {
    background: #ff6e00;
    border-radius: 4px;
}

.project-details-scrollable::-webkit-scrollbar-thumb:hover {
    background: #e65a00;
}

.modal-project-title {
    font-size: 2.5em;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1.5em;
    line-height: 1.2;
}

.modal-project-description {
    font-size: 1.1em;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 2.5em;
}

.modal-project-description p {
    margin-bottom: 1.5em;
}

.modal-project-description p:last-child {
    margin-bottom: 0;
}

.modal-project-section {
    margin-bottom: 2.5em;
}

.modal-section-title {
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1.5em;
}

.modal-section-content {
    font-size: 1em;
    line-height: 1.9;
    color: #4a4a4a;
}

.modal-process-subsection {
    margin-bottom: 2em;
}

.modal-process-subsection:last-child {
    margin-bottom: 0;
}

.modal-process-subsection-title {
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #252525;
    margin: 0 0 1em;
    line-height: 1.4;
}

.modal-process-subsection-content {
    font-size: 1em;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5em;
}

.modal-process-subsection:last-child .modal-process-subsection-content {
    margin-bottom: 0;
}

.modal-project-meta {
    margin-top: 2.5em;
    padding-top: 2em;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.modal-meta-item {
    display: flex;
    gap: 1em;
    align-items: baseline;
}

.modal-meta-label {
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #252525;
    min-width: 80px;
}

.modal-meta-value {
    font-size: 1em;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.8;
}

.modal-meta-link {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-meta-link:hover,
.modal-meta-link:focus {
    color: #ff6e00;
    text-decoration: underline;
    outline: none;
}

/* Responsive Modal - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .project-details-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        height: 90vh;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .project-details-image-section {
        padding: 2em;
        padding-top: 3.5em;
        overflow: hidden;
        overflow-x: hidden;
        height: 40vh;
        min-height: 40vh;
        max-height: 40vh;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .modal-project-image {
        max-width: 100%;
        max-height: calc(40vh - 6em);
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .project-details-image-section.has-thumbnails .modal-project-image {
        max-height: calc(40vh - 6em - 120px);
    }
    
    .project-details-text-section {
        max-height: 50vh;
        height: 50vh;
        flex: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .project-details-scrollable {
        padding: 2em;
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
        flex: 1;
        min-height: 0;
    }
    
    .modal-project-title {
        font-size: 2em;
    }
    
    .project-details-close {
        top: 1em;
        right: 1em;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.2em;
    }
    
    /* BEFORE/AFTER Toggle Mobile Adjustments */
    .ba-toggle {
        top: 1em;
        left: 1em;
        padding: 0.4em 0.8em;
    }
    
    .ba-label {
        bottom: 1em;
        right: 1em;
        font-size: 0.55rem;
        padding: 0.4em 0.6em;
    }
}

@media (max-width: 768px) {
    .project-details-container {
        padding: 0;
        align-items: stretch;
    }
    
    .project-details-content {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        overflow: hidden;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .project-details-image-section {
        padding: 1em;
        padding-top: 3.5em;
        overflow: hidden;
        overflow-x: hidden;
        height: 45vh;
        min-height: 45vh;
        max-height: 45vh;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .modal-project-image {
        max-width: 100%;
        max-height: calc(45vh - 8em);
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .project-details-image-section.has-thumbnails .modal-project-image {
        max-height: calc(45vh - 8em - 100px);
    }
    
    .project-details-image-section.has-thumbnails .modal-image-stack .modal-project-image {
        max-height: calc(45vh - 8em - 100px);
    }
    
    .modal-image-stack .modal-project-image {
        max-height: calc(45vh - 8em);
    }
    
    /* BEFORE/AFTER Toggle Mobile Adjustments */
    .ba-toggle {
        top: 1em;
        left: 1em;
        padding: 0.4em 0.8em;
        font-size: 0.65rem;
    }
    
    .ba-label {
        bottom: 1em;
        right: 1em;
        font-size: 0.55rem;
        padding: 0.4em 0.6em;
    }
    
    .modal-wip-thumbnails {
        max-height: 100px;
        padding: 0.5em 1em;
        padding-right: 1.5em;
        overflow-x: auto;
        overflow-y: hidden;
        flex-shrink: 0;
        width: 100%;
        display: flex;
        gap: 0.75em;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff6e00 rgba(255, 255, 255, 0.1);
    }
    
    .modal-wip-thumbnails::-webkit-scrollbar {
        height: 4px;
    }
    
    .modal-wip-thumbnails::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .modal-wip-thumbnails::-webkit-scrollbar-thumb {
        background: #ff6e00;
        border-radius: 2px;
    }
    
    .modal-wip-thumbnail {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        flex-shrink: 0;
    }
    
    .project-details-text-section {
        max-height: 55vh;
        height: 55vh;
        flex: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .project-details-scrollable {
        padding: 1.5em;
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
        flex: 1;
        min-height: 0;
    }
    
    .modal-project-title {
        font-size: 1.5em;
        margin-top: 0;
    }
    
    .project-details-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        top: 0.5em;
        right: 0.5em;
        font-size: 1.2em;
        z-index: 10006;
    }
}

/* Contact Section */

.contact-section {
    padding: 5em 2em;
    background-color: #f9f9f9;
    color: #151515;
}

.contact-form {
    max-width: 600px;
    margin: 2em auto;
}

.form-group {
    margin-bottom: 1em;
}

.contact-section label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3em;
    color: #151515;
    letter-spacing: 0.05em;
}

.contact-section .required {
    color: #ff6e00;
}

.contact-section input,
.contact-section textarea {
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    font-size: 1em;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 1em 1.2em;
    margin-bottom: 1.5em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    color: #151515;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-section input:hover,
.contact-section textarea:hover {
    border-color: #ff6e00;
    box-shadow: 0 2px 8px rgba(255, 110, 0, 0.1);
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #ff6e00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 110, 0, 0.1), 0 4px 12px rgba(255, 110, 0, 0.15);
    transform: translateY(-1px);
}

.contact-section .submit-button,
.contact-section button[type="submit"] {
    background-color: #ff6e00;
    color: #fff;
    padding: 1em 2.5em;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    letter-spacing: 0.15em;
    font-size: 1.1em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.3);
}

.contact-section .submit-button:hover,
.contact-section .submit-button:focus,
.contact-section button[type="submit"]:hover,
.contact-section button[type="submit"]:focus {
    background-color: #e65a00;
    outline: none;
    box-shadow: 0 6px 20px rgba(255, 110, 0, 0.4);
    transform: translateY(-2px);
}

.contact-section .form-message,
.contact-section #form-message {
    margin-top: 1em;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-section .form-message.error,
.contact-section #form-message.error {
    color: #d14343;
}

.contact-section .form-message.success,
.contact-section #form-message.success {
    color: #2ebaae;
}

/* Lightbox Modal Styling */

/* ============================================
   NEW DARK THEME LIGHTBOX
   ============================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    pointer-events: none;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

/* Header Bar */
.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #252525;
    border-bottom: 1px solid #333;
    z-index: 10001;
    overflow: visible;
    position: relative;
}

.lightbox-header-left {
    display: flex;
    align-items: center;
    gap: 1.5em;
    color: #aaa;
    font-size: 0.9em;
}

.lightbox-counter-header {
    font-weight: 600;
    color: #fff;
}

.lightbox-brand {
    color: #aaa;
    font-weight: 400;
}

.lightbox-header-right {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
}

/* Toggle Switch Buttons */
.lightbox-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75em;
    margin-right: 0.5em;
}

.toggle-label-text {
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    user-select: none;
    white-space: nowrap;
}

.lightbox-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px;
    height: 28px;
    background-color: #2a2a2a;
    border: 2px solid #444;
    border-radius: 14px;
    cursor: pointer;
    padding: 0 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.lightbox-toggle-btn:hover {
    border-color: #555;
    background-color: #333;
}

.lightbox-toggle-btn.active {
    background-color: #ff6e00;
    border-color: #ff6e00;
}

.lightbox-toggle-btn.active:hover {
    background-color: #e65a00;
    border-color: #e65a00;
}

.lightbox-toggle-btn .toggle-handle {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.lightbox-toggle-btn.active .toggle-handle {
    left: calc(100% - 25px);
}

.lightbox-icon-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
}

.lightbox-icon-btn:hover,
.lightbox-icon-btn:focus {
    background-color: #333;
    outline: none;
}

.lightbox-icon-btn:last-child:hover,
.lightbox-icon-btn:last-child:focus {
    background-color: #ff6e00;
}

.lightbox-icon-btn.active {
    background-color: #ff6e00;
    color: #fff;
}

/* Share Dropdown */
.lightbox-share-wrapper {
    position: relative;
}

.lightbox-share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5em;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    list-style: none;
    padding: 0.5em 0;
    min-width: 150px;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.lightbox-share-dropdown li {
    margin: 0;
}

.lightbox-share-link {
    display: flex;
    align-items: center;
    gap: 0.75em;
    padding: 0.75em 1em;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9em;
}

.lightbox-share-link:hover,
.lightbox-share-link:focus {
    background-color: #333;
    color: #fff;
    outline: none;
}

.lightbox-share-link i {
    width: 20px;
    text-align: center;
}

.lightbox-share-link span {
    flex: 1;
}

/* Main Wrapper */
.lightbox-main-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 0 1fr;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    background-color: #000;
    transition: grid-template-columns 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-main-wrapper.sidebar-visible {
    grid-template-columns: 300px 1fr;
}

/* Left Sidebar */
.lightbox-sidebar-left {
    background-color: rgba(18, 18, 18, 0.92);
    padding: 28px 24px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 100%;
    width: clamp(280px, 22vw, 320px);
    min-width: 280px;
    max-width: 320px;
    text-align: left;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    transform: translateX(0);
    opacity: 1;
}

@supports (backdrop-filter: blur(6px)) {
    .lightbox-sidebar-left {
        backdrop-filter: blur(6px);
    }
}

.lightbox-main-wrapper:not(.sidebar-visible) .lightbox-sidebar-left {
    transform: translateX(-8px);
    opacity: 0;
    pointer-events: none;
}

/* Lightbox Info Panel - Premium Museum Label Style */
.lightbox-info {
    display: flex;
    flex-direction: column;
}

.info-title,
#lightbox-title-sidebar {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 14px;
    text-transform: none;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.info-sub,
#lightbox-category-sidebar {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 8px;
    line-height: 1.4;
}

.info-role,
#lightbox-role-sidebar {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px;
    line-height: 1.4;
    font-style: italic;
}

.info-meta,
#lightbox-meta-sidebar {
    font-size: 1.0rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 14px;
    line-height: 1.4;
}

.info-desc,
#lightbox-desc-sidebar {
    font-size: 1.0rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 30ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Center Image Area */
.lightbox-center {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}


.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-loader.active {
    opacity: 1;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 110, 0, 0.2);
    border-top-color: #ff6e00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lightbox-image {
    max-width: 95vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: none;
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-modal.active .lightbox-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 110, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-modal.active .lightbox-nav {
    opacity: 1;
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.2s ease;
}

.lightbox-prev {
    left: 1.5em;
}

.lightbox-next {
    right: 1.5em;
}

.lightbox-nav:hover,
.lightbox-nav:focus {
    background: #ff6e00;
    transform: translateY(-50%) scale(1.08);
    outline: none;
    box-shadow: 0 4px 20px rgba(255, 110, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
}

.lightbox-nav:hover .nav-icon,
.lightbox-nav:focus .nav-icon {
    transform: scale(1.05);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(1.02);
}


/* Bottom Thumbnails */
.lightbox-thumbnails-bottom {
    background-color: #252525;
    padding: 1em 2em;
    border-top: 1px solid #333;
    overflow-x: auto;
}

.lightbox-thumbnails-container {
    display: flex;
    gap: 1em;
    justify-content: center;
    min-width: fit-content;
}

.lightbox-thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.lightbox-thumbnail:hover {
    opacity: 1;
    border-color: #ff6e00;
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #ff6e00;
    box-shadow: 0 0 15px rgba(255, 110, 0, 0.5);
}

.lightbox-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2em;
    z-index: 1;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-loader.active {
    opacity: 1;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 110, 0, 0.2);
    border-top-color: #ff6e00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 110, 0, 0.3);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.lightbox.active .lightbox-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 110, 0, 0.5);
    border-radius: 50%;
    color: #ff6e00;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
}

.lightbox.active .lightbox-close {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close:hover,
.lightbox-close:focus {
    background-color: #ff6e00;
    color: #fff;
    border-color: #ff6e00;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 20px rgba(255, 110, 0, 0.5);
    outline: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 110, 0, 0.5);
    border-radius: 50%;
    color: #ff6e00;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.lightbox.active .lightbox-nav {
    opacity: 1;
}

.lightbox-prev {
    left: 1.5em;
}

.lightbox-next {
    right: 1.5em;
}

.lightbox-nav:hover,
.lightbox-nav:focus {
    background-color: #ff6e00;
    color: #fff;
    border-color: #ff6e00;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 110, 0, 0.5);
    outline: none;
}

.lightbox-content {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5em 2.5em;
    border-radius: 12px;
    max-width: 90vw;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 110, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    z-index: 2;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.lightbox-title {
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff6e00;
    margin: 0 0 0.5em;
}

.lightbox-description {
    font-size: 1em;
    line-height: 1.6;
    color: #eee;
    margin: 0 0 1em;
    max-width: 600px;
}

.lightbox-counter {
    font-size: 0.9em;
    color: #aaa;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.lightbox-counter span {
    color: #ff6e00;
}

/* Service Detail Responsive Styles */
@media (max-width: 1024px) {
    .service-detail-section.active {
        padding: 1.5em;
    }
    
    .service-detail-content {
        padding: 2.5em;
        max-height: 90vh;
    }
    
    .service-detail-body {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    
    .service-detail-header h2 {
        font-size: 2em;
    }
}

/* Mobile optimizations for lightbox */
@media (max-width: 1024px) {
    .lightbox-main-wrapper {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto 1fr auto;
    }
    
    .lightbox-main-wrapper.sidebar-visible {
        grid-template-columns: 1fr !important;
    }
    
    .lightbox-sidebar-left {
        order: 2;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 24px 20px;
        max-height: 200px;
        overflow-y: auto;
        transform: translateY(0);
        opacity: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: min(80vw, 320px);
        max-width: 320px;
        z-index: 10002;
        background-color: rgba(18, 18, 18, 0.92);
        margin: 0 auto;
    }
    
    @supports (backdrop-filter: blur(6px)) {
        .lightbox-sidebar-left {
            backdrop-filter: blur(6px);
        }
    }
    
    .lightbox-main-wrapper:not(.sidebar-visible) .lightbox-sidebar-left {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }
    
    .lightbox-center {
        order: 1;
        width: 100%;
        min-width: 0;
    }
    
    .lightbox-image {
        max-width: 98vw;
        max-height: 80vh;
        width: auto;
        height: auto;
    }
    
    .lightbox-center {
        overflow-x: hidden;
        overflow-y: hidden;
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5em;
    }
    
    .lightbox-main-wrapper {
        overflow-x: hidden;
    }
    
    .lightbox-thumbnails-bottom {
        padding: 0.75em;
        gap: 0.75em;
    }
    
    .lightbox-thumbnail-item {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .lightbox-nav {
        width: 48px;
        height: 48px;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: 1em;
    }
    
    .lightbox-next {
        right: 1em;
    }
}

@media (max-width: 768px) {
    .lightbox-header {
        padding: 0.75em 0.5em;
        overflow-x: visible;
        overflow-y: visible;
        position: relative;
        flex-wrap: nowrap;
    }
    
    .lightbox-header-left {
        font-size: 0.75em;
        gap: 0.5em;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .lightbox-brand {
        display: none;
    }
    
    .lightbox-header-right {
        flex-shrink: 0;
        gap: 0.2em;
        justify-content: flex-end;
        overflow: visible;
        position: relative;
        z-index: 10002;
        min-width: fit-content;
    }
    
    .lightbox-icon-btn {
        width: 44px;
        height: 44px;
        font-size: 1em;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
    }
    
    #lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 1.2em;
        flex-shrink: 0;
        background-color: rgba(0, 0, 0, 0.9) !important;
        border: 2px solid #ff6e00 !important;
        border-radius: 50%;
        margin-left: 0.25em;
        position: relative;
        z-index: 10003;
        min-width: 44px;
        min-height: 44px;
    }
    
    .lightbox-toggle-btn {
        width: 70px;
        height: 32px;
        min-height: 44px;
        padding: 6px 0;
    }
    
    .toggle-label-text {
        font-size: 0.7em;
    }
    
    .lightbox-toggle-wrapper {
        flex-shrink: 0;
        gap: 0.4em;
        align-items: center;
    }
    
    #lightbox-zoom-in,
    #lightbox-fullscreen {
        display: none;
    }
    
    .lightbox-title-sidebar {
        font-size: 1.5em;
    }
    
    .lightbox-category-sidebar {
        font-size: 0.8em;
    }
    
    .lightbox-thumbnail {
        width: 80px;
        height: 60px;
    }
}

/* Footer */
#footer {
    background-color: #151515;
    color: #eee;
    padding: 4em 2em 2em;
    margin-top: 4em;
    border-top: 3px solid #ff6e00;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3em;
    margin-bottom: 3em;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0.5em 0;
}

.footer-brand h3 {
    color: #ff6e00;
    font-size: 1.3em;
    margin-bottom: 0.5em;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.8em;
}

.footer-nav ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #ff6e00;
    transition: width 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ff6e00;
    padding-left: 15px;
}

.footer-nav ul li a:hover::before {
    width: 10px;
}

.footer-contact p {
    margin-bottom: 1.5em;
}

.footer-cta {
    display: inline-block;
    padding: 0.75em 2em;
    background-color: #ff6e00;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
    background-color: #e65a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2em;
    text-align: center;
}

.footer-bottom .copyright {
    color: #888;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive Queries */

@media (max-width: 1024px) {
    .services-row {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .service-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 40px;
        display: flex; /* Maintain flex for uniformity */
    }
    .service-post {
        margin-bottom: 30px;
        padding: 20px;
        min-height: 400px; /* Slightly reduced for mobile */
        width: 100%; /* Full width on mobile */
    }
    .service-image-wrap {
        margin-bottom: 20px;
    }
    .service-post blockquote {
        overflow: visible; /* No scrollbar on mobile */
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5em;
        padding: 0 1em;
    }
    .services-row {
        flex-direction: column;
        padding: 0 10px;
    }
    .service-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    .service-post {
        padding: 15px;
        margin-bottom: 20px;
        min-height: 380px; /* Slightly reduced for smaller mobile */
        width: 100%; /* Full width on mobile */
    }
    .service-image-wrap {
        margin-bottom: 15px;
    }
    .service-post blockquote {
        overflow: visible; /* No scrollbar on mobile */
        font-size: 1.1em; /* Slightly smaller font for mobile */
    }
    #about-header .section-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    #about-header .lead {
        font-size: 1em;
        margin-top: 15px;
    }
    .contact-section {
        margin: 0 1em 4em;
    }
}

/* Hero Section Media Queries - Fluid Responsive Design */
@media (min-width: 1201px) {
    #hero .hero-logo {
        transform: translateY(-100px);
    }
}

@media (max-width: 1200px) {
    #hero .hero-logo {
        width: clamp(180px, 30vw, 350px);
        transform: translateY(-80px);
    }
}

@media (max-width: 900px) {
    #hero .hero-logo {
        width: clamp(160px, 35vw, 300px);
        transform: translateY(-70px);
    }
    
    #hero .hero-title {
        transform: translateY(-60px);
    }
}

@media (max-width: 600px) {
    #hero .hero-logo {
        width: clamp(150px, 45vw, 250px);
        transform: translateY(-50px);
    }
    
    #hero .hero-title {
        font-size: clamp(1.8em, 4vw, 2.2em);
        transform: translateY(-40px);
        padding: 0 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.4em;
        padding: 0 1em;
    }
    
    .filter-btn {
        min-width: auto;
        width: 90%;
        max-width: 320px;
    }
    
    .contact-section input,
    .contact-section textarea {
        padding: 0.9em 1em;
        font-size: 1em;
    }
    
    .contact-section button {
        font-size: 1em;
        padding: 1em 1.5em;
    }
    
    .services-row {
        padding: 0 10px;
    }
    
    .service-column {
        padding: 0 5px;
        margin-bottom: 20px;
    }
    
    .service-post {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .service-post p {
        font-size: 0.95em;
        line-height: 1.5;
    }
    
    .service-section {
        padding: 3em 1em;
    }
    
    /* Service Detail Responsive */
    .service-details-container {
        padding: 0 1em;
    }
    
    .service-detail-content {
        padding: 2em 1.5em;
    }
    
    .service-detail-header h2 {
        font-size: 1.8em;
    }
    
    .service-detail-tagline {
        font-size: 1.1em;
    }
    
    .service-detail-section.active {
        padding: 1em;
    }
    
    .service-detail-content {
        max-height: 95vh;
        padding: 2em 1.5em;
    }
    
    .service-detail-body {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    
    .service-detail-close-btn {
        top: 1em;
        right: 1em;
        width: 36px;
        height: 36px;
        font-size: 1em;
    }
    
    .service-detail-features {
        padding: 1.5em;
    }
    
    .service-detail-cta {
        flex-direction: column;
    }
    
    .service-cta-button,
    .service-cta-button-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2em;
        text-align: center;
    }
    
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5em;
    }
    
    .footer-nav ul li {
        margin-bottom: 0;
    }
    
    #footer {
        padding: 3em 1.5em 1.5em;
    }
}

/* =====================================================
   Featured Work Section
   Single case-study callout between Services and Parallax
   ===================================================== */
#featured-work {
    background-color: #0d0d0d;
    padding: 0 2em;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

#featured-work,
#featured-work h1, #featured-work h2, #featured-work h3,
#featured-work h4, #featured-work h5, #featured-work h6,
#featured-work p, #featured-work span, #featured-work a {
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
}

.featured-work-card {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background-color: #151515;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 3em;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3em;
}

.featured-work-thumbnail {
    position: relative;
    display: block;
    flex: 0 0 45%;
    max-width: 45%;
    background-color: #000;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.featured-work-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    overflow: hidden;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.featured-work-thumbnail:hover img,
.featured-work-thumbnail:focus img {
    transform: scale(1.03);
    opacity: 0.85;
}

.featured-work-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84px;
    height: 84px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.featured-work-play-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
}

.featured-work-thumbnail:hover .featured-work-play-icon,
.featured-work-thumbnail:focus .featured-work-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
}

.featured-work-thumbnail:focus {
    outline: 2px solid #ff6e00;
    outline-offset: 4px;
}

.featured-work-content {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    flex: 1;
    min-width: 0;
}

.featured-work-label {
    color: #ff6e00;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.featured-work-title {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.8em;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.featured-work-subtitle {
    color: #b8b8b8;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
}

.featured-work-description {
    color: #cfcfcf;
    font-size: 1em;
    line-height: 1.7;
    margin: 0.5em 0;
}

.featured-work-cta {
    align-self: flex-start;
    margin-top: 0.5em;
}

.featured-work-credits {
    color: #7a7a7a;
    font-size: 0.78em;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 1.5em 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5em;
}

@media (max-width: 768px) {
    #featured-work {
        padding: 4em 1.25em;
        min-height: auto;
    }
    .featured-work-card {
        padding: 2.5em 1.5em;
        flex-direction: column;
        gap: 1.75em;
    }
    .featured-work-thumbnail {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .featured-work-thumbnail img {
        max-height: none;
    }
    .featured-work-play-icon {
        width: 64px;
        height: 64px;
    }
    .featured-work-title {
        font-size: 1.65em;
    }
}
