

@media only screen and (max-width: 600px) {

   

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }

  

 
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .banner-location {
        text-align: left;
    }

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }

  
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .banner-location
    {
        text-align:left;
    }
    .hero-video-wrap {
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }
    .hero-video-wrap {
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }

    .hero-video {
        object-fit: cover;
        object-position: center;
    }
    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }

  
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .banner-location {
        text-align: left;
    }

    .mobile-hide {
        display: block;
    }

    .desktop-hide {
        display: none;
    }

   
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  
}






/* Hero video – desktop & mobile */

.hero-video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    min-height: 400px;
    max-height: 85vh;
}

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


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root{
    --nav-text: #1c1c1c;
    --nav-bg: rgba(255,255,255,0.95);
    --nav-border: rgba(0,0,0,0.10);
  }

body {
    font-family: 'Clash Display';
    color: var(--unnamed-color-1c1c1c);
    background-color: var(--unnamed-color-ffffff);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Ensure all text elements use Clash Display */
p, h1, h2, h3, h4, h5, h6, span, a, li, td, th, label, div {
    font-family: 'Clash Display';
}

/* Allow form elements and buttons to inherit */
button, input, textarea, select {
    font-family: inherit;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main), var(--unnamed-color-d2fc59));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(199, 144, 255, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 156px;
    height: 23px;
    transition: transform 0.3s ease;
    left: 0;
}

.logo:hover {
    transform: scale(1.05);
}

/* .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
} */

/* menu */
.nav-menu{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding-top: 8px; /* Add padding to push menu down */
  }
  
.nav-link{
text-decoration: none;
color: var(--nav-text);
font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
font-weight: 600; /* Medium */
font-size: 14px;
letter-spacing: 0;
text-transform: uppercase;
display: inline-block;
padding: 6px 2px;
}

/* Flip hover (Adobe XD style) */
.flip{
display: inline-block;
height: 16px;           /* must match line-height below */
overflow: hidden;
vertical-align: middle;
}

.flip-inner{
display: inline-block;
transform: translateY(0);
transition: transform 320ms ease;
}

.flip-front,
.flip-back{
display: block;
line-height: 16px;      /* must match .flip height */
white-space: nowrap;
}

/* on hover slide up to reveal the second copy */
.nav-link:hover .flip-inner {
    transform: translateY(-16px);
}

/* Button flip animations - adjust height based on font size */
button .flip {
    overflow: hidden;
    vertical-align: middle;
}

button .flip-front,
button .flip-back {
    display: block;
    white-space: nowrap;
}

/* Specific adjustments for different button sizes */
.learn-more-btn .flip {
    height: 16px;
}

.learn-more-btn .flip-front,
.learn-more-btn .flip-back {
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.learn-more-btn:hover .flip-inner {
    transform: translateY(-16px);
}

.explore-all-btn .flip,
.gallery-cta .flip {
    height: 20px;
}

.explore-all-btn .flip-front,
.explore-all-btn .flip-back,
.gallery-cta .flip-front,
.gallery-cta .flip-back {
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explore-all-btn:hover .flip-inner,
.gallery-cta:hover .flip-inner {
    transform: translateY(-20px);
}

.register-btn .flip {
    height: 22px;
}

.register-btn .flip-front,
.register-btn .flip-back {
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-btn:hover .flip-inner {
    transform: translateY(-22px);
}

.register-now-btn .flip {
    height: 16px;
}

.register-now-btn .flip-front,
.register-now-btn .flip-back {
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-now-btn:hover .flip-inner {
    transform: translateY(-16px);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.guc-logo {
    display: flex;
    align-items: center;
}

.guc-text {
    font-family: 'Clash Display';
    font-size: 14px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    letter-spacing: 0.5px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--unnamed-color-1c1c1c);
    font-family: 'Clash Display';
    font-weight: 500; /* Medium */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main);
    transition: width 0.3s ease;
}

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

.register-link {
    color: var(--main) !important;
    font-weight: 600;
}

.register-link:hover {
    color: #b570ff !important;
}

.register-link::after {
    background: var(--main);
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  background: #ffffff;
  /* position: relative;
  padding-bottom: 90px; Add this to prevent content from touching the bottom of the section */
}

/* Centered fixed-width container matching XD artboard */
.hero-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Carousel image sizing */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
}

.carousel-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* HERO TEXT OVER IMAGE – always visible */
.hero-content,
.hero-text {
  opacity: 1 !important;
}
.hero-text {
  position: absolute;
  left: 60px;
  bottom: 90px;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 700px;
}

.hero-text h1 {
  font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-subtexts {
  display: flex;
  gap: 60px;
}

.hero-subtexts p {
  font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 60px;
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  cursor: pointer;
}

.carousel-indicator.active {
  background: #ffffff;
}

/* WEB VIEW: single purple bar (hero-bar-desktop). MOBILE: hero-bar-mobile hidden by default */
.hero-bar-mobile {
    display: none;
}
.hero-bar-desktop.hero-banner-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: #C790FF;
}
.hero-bar-desktop.hero-banner-wrap .hero-banner {
    position: static !important;
    flex: 1;
    background: transparent !important;
}
.hero-bar-desktop .banner-content,
.hero-bar-desktop .banner-join-content {
    max-width: 100%;
    margin: 0;
    padding: 18px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Desktop banner layout like PNG: left = JOIN CONNECTS! + address; center = JULY 2026 / 4TH EDITION; right = button */
.hero-bar-desktop .banner-desktop-layout {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.hero-bar-desktop .banner-desktop-layout .banner-left {
    text-align: left;
}
.hero-bar-desktop .banner-desktop-layout .banner-left h2 {
    font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-bar-desktop .banner-desktop-layout .banner-left .banner-location {
    font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}
.hero-bar-desktop .banner-desktop-layout .banner-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}
.hero-bar-desktop .banner-desktop-layout .banner-date-line,
.hero-bar-desktop .banner-desktop-layout .banner-edition {
    font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-bar-desktop .banner-desktop-layout .banner-right {
    flex-shrink: 0;
}
.hero-bar-desktop .banner-desktop-layout .register-btn {
    background: #ffffff;
    color: #1c1c1c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Web view: Join Connects banner text always visible */
.hero-bar-desktop,
.hero-bar-desktop .banner-left,
.hero-bar-desktop .banner-center,
.hero-bar-desktop .banner-right,
.hero-bar-desktop .banner-desktop-layout,
.hero-bar-desktop h2,
.hero-bar-desktop p,
.hero-bar-desktop .banner-location,
.hero-bar-desktop .banner-date-line,
.hero-bar-desktop .banner-edition {
    opacity: 1 !important;
    visibility: visible !important;
}
/* MOBILE VIEW: hide desktop Connects + desktop hero bar; show mobile blocks in @media (max-width: 768px) */
.connects-section-mobile {
    display: none;
}

/* Desktop: one bar only in hero-bar-desktop; register bar hidden there */
.hero-bar-desktop .hero-register-bar {
    display: none;
}

/* Web view only: ensure Join Connects banner is visible and row layout */
@media (min-width: 769px) {
    .hero-bar-desktop.hero-banner-wrap {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #C790FF;
    }
    .hero-bar-desktop .banner-content,
    .hero-bar-desktop .banner-join-content {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.hero-banner {
    background: #C790FF !important;
}

.banner-join-content,
.banner-register-content {
    max-width: 100%;
    margin: 0;
    padding: 18px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content {
  max-width: 100%;
  margin: 0;
  padding: 18px 100px;
  display: flex;
  justify-content: space-between;
  align-items: left;
}

.banner-left h2 {
  font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 0.5;
  margin-top: 2%;
}

.banner-center h2 {
    font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 0.5;
    margin-top: 6%;
  }

.banner-left p,
.banner-center p,
.banner-date {
  font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.banner-center {
  text-align: left;
}

.register-btn {
  background: #ffffff;
  border: none;
  padding: 10px 20px;
  font-family: 'Clash Display', var(--unnamed-font-family-clash-display) ;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: black;
  height: 58px;
  width: 180px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 65vh;
    min-height: 65vh;
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Shadow layer above the image */
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: 
        linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.05) 2px,
            rgba(0, 0, 0, 0.05) 4px
        );
    background-size: 100% 100%, 20px 100%;
    pointer-events: none;
}

.arrow_coloring{
    color: var(--main)
}

.video-gif-label {
    font-family: 'Clash Display';
    font-size: 24px;
    font-weight: 600;
    color: var(--unnamed-color-ffffff);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Statistics Section */
.stats-section {
    padding: 4rem 2rem;
    background: var(--unnamed-color-ffffff);
    justify-content: space-evenly;
}

.stats-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    line-height: 0;
}

.about-stats-section {
    margin-top: 7vh;
    margin-bottom: 7vh;
}

.stat-item {
    text-align: center;
    width: 300px; /* Fixed width - no animation changes */
    flex-shrink: 0;
    min-width: 300px; /* Prevent width changes */
    max-width: 300px; /* Prevent width changes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Clash Display';
    font-size: 90px;
    font-weight: 600; /* Semibold */
    color: #1C1C1C;
    line-height: 98px; /* Exact line-height from PNG */
    letter-spacing: 0px;
    margin-bottom: 5px; /* Only 5px distance to text below */
    text-align: center;
    display: block;
    white-space: nowrap; /* Prevent text wrapping */
    margin: 0 auto;
}

.stat-label {
    font-family: 'Clash Display';
    font-size: 17px;
    color: #1C1C1C;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 58px; /* Exact height from requirements */
    background: #e0e0e0;
    border: none;
    flex-shrink: 0;
    margin: 0 1rem;
}

/* Connects Section */
.connects-section {
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Ripple effect for card clicks */
.card-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    animation: rippleExpand 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

.connects-grid {
    width: 100%;
    margin: 0;
    display: flex;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.connect-card {
    height: 160px;
    flex: 1 1 33.333%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: flex-grow 1.6s cubic-bezier(0.4, 0, 0.2, 1),
                flex-shrink 1.6s cubic-bezier(0.4, 0, 0.2, 1),
                flex-basis 1.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: flex-grow, flex-shrink, flex-basis, box-shadow;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.white-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 4%;
    height: 75%;
    background-color: white;
}

.green-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 4%;
    height: 74%;
    background-color: var(--unnamed-color-d2fc59);
}

.connect-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    width: 100%;
    height: 100%;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.connect-card:hover:not(.active) {
    z-index: 1;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.connect-card.active {
    flex-grow: 2 !important;
    flex-shrink: 1 !important;
    flex-basis: auto !important;
    z-index: 1;
}

/* When one card is active, others get smaller flex */
.connects-grid.has-active .connect-card:not(.active) {
    flex-grow: 0.5 !important;
    flex-shrink: 1 !important;
    flex-basis: auto !important;
}

/* Ensure smooth transition for flex changes */
.connects-grid.has-active .connect-card {
    transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                flex-shrink 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                flex-basis 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ai-connects {
    background: var(--unnamed-color-d2fc59);
}

.design-connects {
    background: var(--unnamed-color-ffffff);
    border-left: none;
    border-right: none;
}

.design-connects:hover {
    background: var(--unnamed-color-ffffff);
    border-left: none;
    border-right: none;
}

.music-connects {
    background: var(--unnamed-color-ade1e9);
}

.connect-logo {
    flex-shrink: 0;
    white-space: nowrap;
}

.connect-logo {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    flex-shrink: 0;
}

.connect-main {
    font-family: 'Clash Display';
    font-size: 90px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    display: inline-block;
    line-height: 0.9;
    vertical-align: baseline;
}

.connect-superscript {
    font-family: 'Clash Display';
    font-size: 16px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
    vertical-align: super;
    margin-left: 8px;
    line-height: 1;
}

.connect-sub {
    font-family: 'Clash Display';
    font-size: 32px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    display: block;
    margin-top: 8px;
    line-height: 1.2;
}

.connect-description {
    font-family: 'Clash Display';
    font-size: 16px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
    line-height: 24px;
    position: relative;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    padding: 0;
    transition: none;
    flex-shrink: 0;
    display: block;
}

.connect-card.active .connect-description {
    opacity: 1 !important;
    max-width: 450px !important;
    white-space: normal !important;
    margin-left: 3rem !important;
    overflow: visible !important;
    padding: 0;
    transition: none !important;
}


/* ===== CLEAN GALLERY CAROUSEL ===== */

.gallery-section {
    background: #ffffff;
    text-align: center;
    padding: 80px 2rem 60px;
  }
  
  .gallery-section .section-title {
    font-family: 'Clash Display';
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1C1C1C;
    margin-bottom: 45px;
  }
  
  /* Visible viewport - fixed dimensions, centered like testimonials */
  .gallery-viewport {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 500px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Track that stays centered - doesn't move */
  .gallery-track {
    display: flex;
    align-items: center;
    gap: 24px; /* Gap between images */
    justify-content: center;
    height: 500px; /* Match viewport height */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Each slide - base styles */
  .gallery-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;        /* smaller width for inactive */
    height: 330px;
    opacity: 0.75;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Active slide - larger */
  .gallery-slide.active {
    width: 720px;        /* larger width for active */
    height: 500px;
    opacity: 1;
  }
  
  /* Image box */
  .gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Enhanced shadow for active image */
  .gallery-slide.active .gallery-image {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Placeholder */
  .gallery-placeholder {
    font-family: 'Clash Display';
    font-size: 14px;
    color: #666;
  }
  
  /* Real image */
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Controls */
  .gallery-controls {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 2%;
    margin-bottom: 3%;
  }
  
  .gallery-nav-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .gallery-nav-btn img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: transform 0.25s ease;
  }
  
  /* Hover animation */
  .gallery-nav-btn img:hover {
    transform: translateY(-2px);
  }
  
  .gallery-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
  }
  .gallery-nav-btn:disabled img:hover {
    transform: none;
  }
  
  /* CTA */
  .gallery-cta {
    background: #C790FF;
    color: #ffffff;
    border: none;
    font-family: 'Clash Display';
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 12px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    height: 58px;
    width: 190px;
    margin-bottom: 7%;
  }

  .gallery-cta img {
    filter: brightness(0) invert(1);
    opacity: 1;
  }

/* ===== GALLERY PAGE (standalone) ===== */
.nav-link--active {
    font-weight: 700;
    color: var(--unnamed-color-1c1c1c);
}

/* Mobile nav: hamburger hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nav-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero overlay mobile: hidden on desktop */
.hero-overlay-mobile {
    display: none;
}

/* Footer mobile bars: hidden on desktop */
.footer-color-bar-mobile {
    display: none;
}

/* Stats mobile bars: hidden on desktop */
.stats-bars-mobile {
    display: none;
}

.gallery-page-hero {
    position: relative;
    margin-top: 80px;
    padding: 0 0 2rem;
    background: var(--unnamed-color-ffffff);
    overflow: hidden;
}

.gallery-page-banner-left,
.gallery-page-banner-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--unnamed-color-ade1e9);
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    gap: 1rem;
}

.gallery-page-banner-left {
    left: 0;
}

.gallery-page-banner-right {
    right: 0;
    width: 40px;
}

.gallery-page-banner-text,
.gallery-page-banner-connects {
    font-family: 'Clash Display';
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
}

.gallery-page-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-page-title {
    font-family: 'Clash Display';
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--unnamed-color-1c1c1c);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-page-hero-image-wrap {
    width: 100vw;
    max-height: 70vh;
    overflow: hidden;
    position: relative;
    margin-left: calc(-50vw + 50%);
}

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

.gallery-edition-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.gallery-edition-link {
    font-family: 'Clash Display';
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

.gallery-edition-link.is-active,
.gallery-edition-link:hover {
    color: var(--unnamed-color-1c1c1c);
    font-weight: 600;
}

/* Gallery categories grid (3x2, 5 buttons + 1 empty) */
.gallery-categories-section {
    padding: 0 2rem 4rem;
    background: var(--unnamed-color-ffffff);
}

.gallery-categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.gallery-category-card {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.gallery-category-image {
    position: absolute;
    inset: 0;
}

.gallery-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-category-card:hover .gallery-category-image img {
    transform: scale(1.05);
}

.gallery-category-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-category-card:hover .gallery-category-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-category-label {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.gallery-category-bar {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--unnamed-color-ade1e9);
    border-radius: 2px;
}

.gallery-category-empty {
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

/* Gallery "Filter by" label (visible on mobile) */
.gallery-filter-wrap {
    padding-bottom: 2rem;
}
.gallery-filter-label {
    display: none;
    font-family: 'Clash Display';
    font-size: 16px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    margin-bottom: 0.75rem;
    text-align: left;
}

/* ===== GALLERY ALBUM DETAILS PAGE ===== */
.gallery-album-header {
    margin-top: 80px;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: var(--unnamed-color-ffffff);
}

.gallery-album-title {
    font-family: 'Clash Display';
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--unnamed-color-1c1c1c);
    margin: 0;
}

.gallery-album-section {
    padding: 0 2rem 4rem;
    background: var(--unnamed-color-ffffff);
}

.gallery-album-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-album-item {
    aspect-ratio: 1;
    overflow: hidden;
}

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

/* Album footer color bars (orange, light blue, purple) */
.gallery-album-footer .footer-color-bar--album {
    display: flex;
    height: 60px;
    margin-top: 2rem;
}

.gallery-album-footer .color-bar-orange {
    flex: 0.15;
    background: var(--unnamed-color-ff6830);
}

.gallery-album-footer .color-bar-light-blue {
    flex: 1;
    background: var(--unnamed-color-ade1e9);
}

.gallery-album-footer .color-bar-purple-alt {
    flex: 0.2;
    background: var(--main);
}

  

/* Workshops Section */
.workshops-section {
    padding: 6rem 2rem;
    background: var(--unnamed-color-ffffff);
    text-align: center;
}

.workshops-section .section-title {
    font-family: 'Clash Display';
    font-size: 36px;
    line-height: 34px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.workshops-grid {
    max-width: 950px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 5px; */
}

.workshop-card {
    background: var(--unnamed-color-ffffff);
    border-radius: none;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    height: auto;
    padding-bottom: 80px;
}

.workshop-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(28, 28, 28, 0.9);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Clash Display';
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.workshop-badge::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1.5px solid #FFFFFF;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.workshop-badge::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 11px;
    height: 1.5px;
    background: #FFFFFF;
    border-radius: 1px;
}

.workshop-block-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #313131;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    height: 7%;
}

.workshop-block-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.workshop-block-icon-text {
    font-family: 'Clash Grotesk';
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.workshop-image-placeholder {
    width: 100%;
    height: 240px; 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.workshop-image-placeholder2 {
    width: 100%;
    height: 240px;
    background-size: 100% auto;
    /*background-image: url('../images/workshops/AI/AIinMarketingandDesign/1.png');*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    background-repeat: no-repeat;
}

.workshop-image-placeholder3 {
    width: 100%;
    height: 240px;
    background-size: 100% auto;

    /*background-image: url('../images/workshops/Design/NarrativeJewellery/1.png');*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    background-repeat: no-repeat;
}

.workshop-image-placeholder4 {
    width: 100%;
    height: 240px;
    background-size: 100% auto;    
    /*background-image: url('../images/workshops/AI/TheInterdisciplinaryMedicalAILab/1.png');*/ 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    background-repeat: no-repeat;
}

.workshop-title {
    font-family: 'Clash Grotesk', var(--unnamed-font-family-clash-grotesk) ;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500; /* Medium */
    color: #1C1C1C;
    padding: 24px 24px 12px 24px;
    text-align: left;
    letter-spacing: 0px;
    margin: 0;
    max-width: 253px; /* Exact width from PNG */
    min-height: 67px; /* Exact height from PNG */
}

.workshop-authors {
    font-family: 'Clash Grotesk', var(--unnamed-font-family-clash-grotesk) ;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #1C1C1C;
    padding: 0 24px 16px 24px;
    text-align: left;
    margin: 0;
    opacity: 0.35;
    width: 65%;
}

.learn-more-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: auto;
    background: #C790FF;
    color: #FFFFFF;
    border: none;
    padding: 12px 18px;
    font-family: 'Clash Display';
    font-size: 10px;
    line-height: 16px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 5;
    white-space: nowrap;
}

.learn-more-btn img {
    width: 7px;
    height: 6.5px;
}

.learn-more-btn:hover {
    background: #b570ff;
}

.explore-all-btn {
    background: #C790FF;
    color: #FFFFFF;
    border: none;
    padding: 22px 24px;
    font-family: 'Clash Display';
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.explore-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 144, 255, 0.4);
}

.explore-all-btn img {
    width: 11px;
    height: 11px;
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Experience Section */
.experience-section {
    padding: 94.21px 0;
    background: var(--unnamed-color-d2fc59);
    width: 100%;
}

.experience-section .section-title {
    font-family: 'Clash Display';
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
    margin-top: 0;
    padding-top: 0;
    font-weight: 600;
}

.experience-grid {
    max-width: 1176px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 598px 289px ;    
    grid-template-rows: 261px 261px;
    gap: 1.5%;
    row-gap: 2.5vh;
    width: fit-content;
    justify-content: center;
}

.experience-card {
    background: var(--unnamed-color-ffffff);
    border-radius: 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: none;
    height: 261px;
    display: flex;
    flex-direction: column;
    border: none;
    margin-top: auto;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.experience-card:nth-child(1) {
    width: 598px;
    grid-column: 1;
    grid-row: 1;
}

.experience-card:nth-child(2) {
    width: 289px;
    grid-column: 2;
    grid-row: 1;
}

.experience-card:nth-child(3) {
    width: 289px;
    grid-column: 3;
    grid-row: 1;
}

.experience-card:nth-child(4) {
    width: 598px;
    grid-column: 1;
    grid-row: 2;
}

.experience-card:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: none;
    cursor: pointer;
}

.card-number {
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: 'Clash Display';
    font-size: 21px;
    font-weight: 600;
    color: var(--unnamed-color-ffffff);
    background: var(--main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    z-index: 1;
}

.card-arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
    font-weight: 600;
    color: var(--unnamed-color-ffffff);
    background: var(--main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    z-index: 1;
}

.card-arrow img {
    filter: brightness(0) invert(1) drop-shadow(0 0 0.5px rgba(255, 255, 255, 1)) drop-shadow(0 0 0.5px rgba(255, 255, 255, 1));
    opacity: 1;
    width: 16px;
    height: 16px;
}

.experience-card h3 {
    font-family: 'Clash Display';
    font-size: 32px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    margin: 40px 0 14px 0 ;
    padding: 64px 24px 8px 24px;
    letter-spacing: 0;
    line-height: 24px;
    text-align: left;
    align-items: center;
    vertical-align: middle;

}
    
.experience-card p {
    font-family: 'Clash Grotesk';
    font-size: 16px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
    line-height: 1;
    opacity: 0.7;
    margin: 0;
    padding: 0 24px 16px 24px;
    flex-grow: 1;
    letter-spacing: 0;
    overflow: visible;
    text-align: left;
    max-width: 420px;
    
}

/* Testimonials Section - same layout as gallery: centered, same padding */
.testimonials-section {
    padding: 80px 2rem 60px;
    background: transparent;
    text-align: center;
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.testimonials-header {
    text-align: center;
}

.testimonials-subtitle {
    font-family: 'Clash Display';
    font-size: 17px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    padding-bottom: 2rem;
}

/* Testimonials Carousel - centered like gallery viewport */
.testimonials-viewport {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-track {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start; /* Web: left-aligned so JS can center the active card exactly */
    height: 100%;
    width: max-content; /* Web: shrink to content so transform centers middle card */
    min-width: 100%;
}

.testimonials-container {
    max-width: max-content;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    position: relative;
    padding: 32px 40px;
    background: transparent;
    border-radius: 8px;
    flex-shrink: 0;
    width: 580px; /* Exact width from PNG */
    height: 275px; /* Exact height from PNG */
    display: flex;
    flex-direction: column;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.2;
    overflow: hidden;
}

.testimonial-card.active {
    opacity: 1;
}

.quote-mark {
    font-family: 'Clash Display';
    font-size: 100px;
    font-weight: 600;
    color: #000; 
    line-height: 0.5;
    position: absolute;
    top: 110px; /* Align with testimonial-text */
    left: 40px;
    z-index: 1;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-source {
    font-family: 'Clash Display';
    font-size: 12px;
    font-weight: 500;
    color: #DBB8FF; /* Light purple/lavender */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* margin-bottom: 8px; */
}

.testimonial-title {
    font-family: 'Clash Display';
    font-size: 20px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0 0 20px 0;
    line-height: 1.2;
    /* margin-bottom: 16px; */
}

.testimonial-text {
    font-family: 'Clash Display';
    font-size: 15px;
    color: var(--unnamed-color-1c1c1c);
    line-height: 1.8;
    margin: 0;
    padding-left: 60px; /* Space for quote mark */
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-nav-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

/* Hover animation */
.testimonial-nav-btn img:hover {
    transform: translateY(-2px);
}

.testimonial-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
.testimonial-nav-btn:disabled img:hover {
    transform: none;
}

/* Footer */
.footer {
    background: var(--unnamed-color-ffffff);
    margin-bottom: 50px;

}

.footer-color-bar {
    display: flex;
    height: 60px;
}

.color-bar-blue {
    flex: 1;
    background: var(--unnamed-color-ade1e9);
}

.color-bar-green {
    flex: 1;
    background: var(--unnamed-color-d2fc59);
}

.color-bar-purple {
    flex: 0.3;
    background: var(--main);
}

.footer-content {
    max-width: 100%;
    margin: 0;
    padding: 0 100px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    padding-top: 8rem;
}
.footer-logo img {
    max-height: 52px;
    width: auto;
}

.footer-center {
    padding-top: 2rem;
    text-align: center;
}

.footer-question {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
}

.footer-email {
    font-family: 'Clash Display';
    font-size: 28px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--main);
}

.footer-copyright {
    font-family: 'Clash Display';
    font-size: 12px;
    color: #000;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    width: 50%;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    padding-top: 8rem;
}
.footer-logos img {
    max-height: 42px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Clash Display';
    font-size: 17px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
}

/* Separator Styles - Full Width */
.separator-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

.separator-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
}

/* Enhanced Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-up.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text reveal animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        clip-path: inset(0 0 100% 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
}

.slide-in-left.animate-in {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
}

.slide-in-right.animate-in {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-up {
    opacity: 0;
    transform: translateY(60px);
}

.slide-in-up.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .connects-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .connect-card {
        width: 100% !important;
        height: 160px;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .connect-card:last-child {
        border-bottom: none;
    }

    .connect-card.active {
        width: 100% !important;
        min-height: auto;
    }

    .connects-grid.has-active .connect-card:not(.active) {
        width: 100% !important;
    }

    .connect-content {
        flex-direction: row;
        gap: 2rem;
    }

    .connect-card.active .connect-description {
        margin-left: 2rem;
        max-width: 60%;
    }

    .workshops-grid,
    .experience-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
        /* justify-content: space-between; */
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-family: 'Clash Display';
        font-size: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 100px;
        padding-bottom: 4rem;
    }

    .footer-logos {
        align-items: center;
    }
}

/* Workshops page: single scrollbar – only body scrolls, html does not */
html.page-workshops-html {
    overflow: hidden !important;
    height: 100% !important;
}
html.page-workshops-html body.page-workshops {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: 100vh !important;
    min-height: 0 !important;
    max-height: 100vh !important;
}

/* Workshops Page Header Section - same bar + bar-bottom layout for Design, AI, Music */
.workshops-header-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    height: 140px;
    overflow: visible;
    margin-bottom: 0;
    background: var(--unnamed-color-ffffff);
}

/* Bar (top): same for all Connects sections - 38% height, full width */
.workshops-header-bar {
    width: 100%;
    height: 38%;
    min-height: 52px;
    background: var(--unnamed-color-ade1e9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Bar bottom: vertical strip (same structure for all Connects) */
.workshops-header-bar-bottom-design-connects {
    width: 20%;
    height: 85%;
    top: 0;
    background: var(--main);
    position: absolute;
    right: 0;
    z-index: 1;
}

.workshops-header-bar-bottom-ai-connects {
    width: 20%;
    height: 85%;
    top: 0;
    background: var(--unnamed-color-d2fc59);
    position: absolute;
    left: 0;
    z-index: 1;
}

.workshops-header-bar-bottom-music-connects {
    width: 20%;
    height: 85%;
    top: 0;
    background: var(--unnamed-color-ade1e9);
    position: absolute;
    right: 0;
    z-index: 1;
}

/* AI Connects - bar and bar-bottom colors only (same layout as Design) */
.workshops-header-section.ai-connects .workshops-header-bar {
    background: var(--unnamed-color-d2fc59);
}

/* Music Connects - bar and bar-bottom colors only (same layout as Design) */
.workshops-header-section.music-connects .workshops-header-bar {
    background: var(--unnamed-color-ade1e9);
}

/* Design Connects - bar color only (same layout as others) */
.workshops-header-section.design-connects .workshops-header-bar {
    background: var(--main);
}

/* Design Connects: logo spans both zones, positioned top-right via padding */
.workshops-header-section.design-connects .workshops-header-logo {
    background: transparent;
    top: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.8% 4% 1.8% 0;
    vertical-align: middle;
}

.workshops-header-section.design-connects .workshops-header-logo img {
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: right top;
}

/* AI Connects: same logo treatment (left-aligned) */
.workshops-header-section.ai-connects .workshops-header-logo {
    left: 0;
    right: auto;
    top: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.8% 0 1.8% 4%;
}
.workshops-header-section.ai-connects .workshops-header-logo img {
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: left top;
}

/* Music Connects: same logo treatment (right-aligned) */
.workshops-header-section.music-connects .workshops-header-logo {
    top: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.8% 4% 1.8% 0;
}
.workshops-header-section.music-connects .workshops-header-logo img {
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: right top;
}

.workshops-header-logo {
    position: absolute;
    top: 25%;
    right: 0;
    z-index: 2;
    height: 75%;
    display: flex;
    align-items: center;
    padding: 0 3%;   
}

/* Logo transparent on all Connects so SVG spans bar + white */
.workshops-header-section.design-connects .workshops-header-logo,
.workshops-header-section.ai-connects .workshops-header-logo,
.workshops-header-section.music-connects .workshops-header-logo {
    background: transparent;
}

.workshops-header-logo img {
    height: 85%;
    width: auto;
    /* max-height: 100px; */
    object-fit: contain;    
}

/* Workshops mobile category tabs (visible only on mobile) */
.workshops-mobile-tabs {
    display: none;
}

.workshops-tab {
    background: #4a4a4a;
    border: none;
    padding: 12px 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshops-tab img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Color each tab by category */
.workshops-tab[data-workshops-tab="design"] {
    background: var(--main);
}
.workshops-tab[data-workshops-tab="ai"] {
    background: var(--unnamed-color-d2fc59);
}
.workshops-tab[data-workshops-tab="music"] {
    background: var(--unnamed-color-ade1e9);
}

.workshops-tab--active {
    opacity: 1;
}
.workshops-tab:not(.workshops-tab--active) {
    opacity: 0.7;
}

/* Workshops Page Section */
.workshops-page-section {
    padding: 6rem 2rem;
    background: var(--unnamed-color-ffffff);
    text-align: center;
}

.workshops-page-grid {
    max-width: 950px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    row-gap: 2%;
}

@media (max-width: 1024px) {
    .workshops-page-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .workshops-header-logo {
        right: 30px;
        height: 80px;
    }
    
    .workshops-header-logo img {
        max-height: 80px;
    }
}

@media (max-width: 768px) {
    .workshops-page-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
        row-gap: 1.5rem;
    }
    
    .workshops-header-section {
        height: 80px;
    }
    
    .workshops-header-section.design-connects,
    .workshops-header-section.ai-connects,
    .workshops-header-section.music-connects {
        height: 100px;
    }
    
    .workshops-header-section.design-connects .workshops-header-bar,
    .workshops-header-section.ai-connects .workshops-header-bar,
    .workshops-header-section.music-connects .workshops-header-bar {
        min-height: 38px;
    }
    
    .workshops-header-bar {
        height: 50px;
    }
    
    .workshops-header-logo {
        right: 20px;
        top: -15px;
        height: 70px;
        padding: 0 15px;
    }
    
    .workshops-header-section.design-connects .workshops-header-logo,
    .workshops-header-section.music-connects .workshops-header-logo {
        top: 0;
        padding: 10px 1.25rem 10px 0;
    }
    
    .workshops-header-section.ai-connects .workshops-header-logo {
        top: 0;
        padding: 10px 0 10px 1.25rem;
    }
    
    .workshops-header-section.design-connects .workshops-header-logo img,
    .workshops-header-section.ai-connects .workshops-header-logo img,
    .workshops-header-section.music-connects .workshops-header-logo img {
        max-height: 64px;
    }
    
    .workshops-header-logo img {
        max-height: 70px;
    }
    
    .workshops-page-section {
        padding: 3rem 1.5rem 4rem;
    }
    
    /* Workshops mobile: show category tabs, hide header sections, show one part at a time */
    .workshops-mobile-tabs {
        display: flex;
        gap: 0;
        padding: 0;
        margin: 0;
        margin-top: 80px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--unnamed-color-ffffff);
        border-bottom: 1px solid rgba(0,0,0,0.08);
        position: sticky;
        top: 80px;
        z-index: 10;
    }
    .workshops-mobile-tabs .workshops-tab {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
    }
    .workshops-mobile-tabs .workshops-tab img {
        height: 28px;
        width: auto;
        max-width: 90%;
    }
    [data-workshops-header] {
        display: none;
    }
    .workshops-page-section:not(.workshops-part-active) {
        display: none !important;
    }
    .workshops-page-section.workshops-part-active {
        display: block;
    }
    
    .nav-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 100px;
    }

    .logo-section {
        justify-content: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .nav-right {
        display: none;
    }

    .hero-bar-mobile .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 18px 100px;
    }

    .hero-title {
        font-size: 17px;
    }

    .section-title {
        font-family: 'Clash Display';
        font-size: 30px;
    }

    .testimonials-section {
        padding: 4rem 1.5rem 3rem;
    }

    .testimonial-card {
        width: min(580px, calc(100vw - 3rem));
        max-width: 100%;
    }

    .connects-section {
        padding: 0;
    }

    .connects-grid {
        flex-direction: column;
    }

    .connect-card {
        width: 100% !important;
        min-width: 100% !important;
        height: 160px;
        padding: 0;
    }

    .connect-card.active {
        width: 100% !important;
        min-width: 100% !important;
    }

    .connects-grid.has-active .connect-card:not(.active) {
        width: 100% !important;
        min-width: 100% !important;
    }

    .connect-content {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .connect-main {
        font-size: 50px;
    }

    .connect-sub {
        font-size: 20px;
    }

    .connect-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .stat-number {
        font-size: 60px;
    }
}

/* ===== WORKSHOP DETAIL PAGE ===== */

/* Workshop Detail Hero Section */
.workshop-detail-hero {
    position: relative;
    width: 100%;
    margin-top: 80px;
    padding: 4rem 2rem 6rem;
    background: var(--unnamed-color-ffffff);
    overflow: hidden;
    min-height: 300px;
}

.workshop-hero-decorative-left {
    position: absolute;
    left: 0;
    top: 25%;
    width: 2.5%;
    height: 50%;
    background: var(--unnamed-color-ff6830);
    z-index: 1;
}

.workshop-hero-decorative-right {
    position: absolute;
    right: 0;
    top: 5%;
    width: 20%;
    height: 10%;
    background: var(--main);
    z-index: 1;
}

.workshop-hero-decorative-bottom-right {
    position: absolute;
    right: 0;
    top: 5%;
    width: 10%;
    height: 20%;
    background: var(--main);
    z-index: 1;
}

.workshop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 6%;
    padding-right: 280px;
}

.workshop-detail-title {
    font-family: 'Clash Display';
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1C1C1C;
    text-transform: uppercase;
    margin-bottom: 2rem;
    max-width: 1000px;
}

.workshop-breadcrumbs {
    font-family: 'Clash Display';
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.workshop-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.workshop-breadcrumbs a:hover {
    color: var(--main);
}

.breadcrumb-separator {
    color: #666;
}

.breadcrumb-current {
    color: #1C1C1C;
    font-weight: 500;
}

/* Workshop Detail Content Section */
.workshop-detail-content {
    padding: 0 2rem 6rem;
    background: var(--unnamed-color-ffffff);
    margin-left: 7.5%;
}

.workshop-content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    align-items: start;
}

.workshop-content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workshop-feature-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    background: #e0e0e0;
}

.workshop-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-quick-facts {
    display: flex;
    gap: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 1rem 0;
}

.quick-fact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-fact-item-right {
    margin-left: auto;
}

.quick-fact-label {
    font-family: 'Clash Display';
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.quick-fact-value {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
}

.workshop-description-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workshop-description-heading {
    font-family: 'Clash Display';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #1C1C1C;
}

.workshop-description-text {
    font-family: 'Clash Grotesk';
    font-size: 16px;
    line-height: 1.8;
    color: #1C1C1C;
}

.workshop-description-text p {
    margin-bottom: 1.5rem;
}

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

/* Right Column - Supervisor and Key Learnings */
.workshop-content-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.workshop-supervisor-card {
    background: var(--unnamed-color-ffffff);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 70%;
}

.supervisor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #e0e0e0;
}

.supervisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supervisor-name {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
    text-transform: uppercase;
    margin: 0;
}

.supervisor-title {
    font-family: 'Clash Grotesk';
    font-size: 14px;
    color: #666;
    margin: 0;
    text-align: center;
}

.workshop-key-learnings {
    background: var(--unnamed-color-ffffff);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
}

/* Back to top button - fixed bottom right on scroll */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #4a4a4a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.back-to-top:hover {
    background: #d8d8d8;
    color: #1c1c1c;
}
.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* Mobile-only supervisors row (hidden on desktop) */
.workshop-supervisors-mobile {
    display: none;
}

.key-learnings-heading {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.key-learnings-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-learnings-list li {
    font-family: 'Clash Grotesk';
    font-size: 12px;
    color: #1C1C1C;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.key-learnings-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1C1C1C;
    font-weight: bold;
}

/* Explore Other Workshops Section */
.explore-other-workshops {
    background: var(--unnamed-color-ade1e9);
    padding: 5rem 2rem;
    text-align: center;
}

.explore-other-workshops .section-title {
    font-family: 'Clash Display';
    font-size: 36px;
    font-weight: 600;
    color: #1C1C1C;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.other-workshops-grid {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.other-workshops-grid .workshop-card {
    margin: 0 auto;
}

/* Save Your Spot Section */
.save-spot-section {
    padding: 5rem 2rem;
    background: var(--unnamed-color-ffffff);
    text-align: center;
}

.save-spot-heading {
    font-family: 'Clash Display';
    font-size: 36px;
    font-weight: 600;
    color: #1C1C1C;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.save-spot-description {
    font-family: 'Clash Grotesk';
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.register-now-btn {
    background: #C790FF;
    color: #FFFFFF;
    border: none;
    padding: 18px 32px;
    font-family: 'Clash Display';
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.register-now-btn:hover {
    background: #b570ff;
}

.register-now-btn img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Decorative Bars */
.decorative-bars-container {
    width: 100%;
    height: 60px;
    position: relative;
    background: var(--unnamed-color-ffffff);
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.decorative-bar-orange {
    width: 50%;
    height: 8px;
    background: var(--unnamed-color-ff6830);
}

.decorative-bar-purple {
    width: 20%;
    height: 8px;
    background: var(--main);
    margin-left: auto;
}

/* Workshop Contact Section */
.workshop-contact-section {
    padding: 3rem 2rem;
    background: var(--unnamed-color-ffffff);
    text-align: center;
}

.contact-question {
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 500;
    color: #1C1C1C;
    margin-bottom: 1rem;
}

.contact-email {
    font-family: 'Clash Display';
    font-size: 28px;
    font-weight: 500;
    color: #1C1C1C;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--main);
}

/* Responsive Design for Workshop Detail */
@media (max-width: 1024px) {
    .workshop-content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .workshop-hero-decorative-right {
        right: 20px;
        width: 150px;
        height: 100px;
    }

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

@media (max-width: 768px) {
    .workshop-detail-title {
        font-size: 32px;
    }

    .workshop-hero-decorative-left {
        width: 3%;
    }

    .workshop-hero-decorative-right {
        right: 10px;
        width: 100px;
        height: 80px;
    }

    .workshop-feature-image {
        height: 300px;
    }

    .other-workshops-grid {
        grid-template-columns: 1fr;
    }

    .decorative-bar-orange {
        width: 60%;
    }

    .decorative-bar-purple {
        width: 20%;
    }

    /* Workshop detail mobile: hero, content order, supervisors row, footer */
    .workshop-detail-hero {
        margin-top: 70px;
        padding: 2rem 1rem 3rem;
    }
    .workshop-hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .workshop-hero-decorative-left {
        width: 4%;
        top: 0;
        height: 100%;
        background: var(--unnamed-color-ff6830);
    }
    .workshop-hero-decorative-right {
        width: 25%;
        height: 12%;
        top: 0;
        right: 0;
        background: var(--main);
    }
    .workshop-breadcrumbs {
        display: none;
    }
    .workshop-detail-content {
        margin-left: 0;
        padding: 0 1rem 3rem;
    }
    .workshop-content-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .workshop-supervisors-mobile {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        order: 1;
        background: #f0f0f0;
        border-radius: 12px;
        padding: 1.25rem;
        margin-bottom: 0;
    }
    .workshop-supervisor-card--mobile {
        flex: 1;
        min-width: 0;
        box-shadow: none;
        padding: 0.75rem 0.5rem;
        margin-bottom: 0;
        width: auto;
    }
    .workshop-supervisor-card--mobile .supervisor-image {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }
    .workshop-supervisor-card--mobile .supervisor-name {
        font-size: 11px;
        margin-top: 0.5rem;
    }
    .workshop-supervisor-card--mobile .supervisor-title {
        font-size: 10px;
        line-height: 1.3;
    }
    .workshop-content-left {
        order: 2;
    }
    .workshop-content-right {
        order: 3;
    }
    .workshop-content-right .workshop-supervisor-card:not(.workshop-supervisor-card--mobile) {
        display: none;
    }
    .workshop-key-learnings {
        width: 100%;
        padding: 1.5rem 1rem;
    }
    .key-learnings-heading {
        font-size: 16px;
    }
    .key-learnings-list li {
        font-size: 13px;
    }
    .explore-other-workshops {
        padding: 3rem 1rem;
    }
    .explore-other-workshops .section-title {
        font-size: 1.35rem;
    }
    .save-spot-section {
        padding: 3rem 1rem;
    }
    .save-spot-heading {
        font-size: 1.5rem;
    }
    .save-spot-description {
        font-size: 14px;
    }
}

/* ===== ABOUT PAGE ===== */

/* About Page Hero Section */
.about-page-hero {
    margin-top: 80px;
    width: 100%;
    min-height: 600px;
    position: relative;
    background: var(--unnamed-color-ffffff);
}

/* Web view: single hero image (About_us.jpg) */
.about-hero-desktop {
    display: flex;
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.about-hero-split .about-hero-left {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.about-hero-split .about-hero-left-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-hero-split .about-hero-right {
    flex-shrink: 0;
    width: 42%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.about-hero-split .about-hero-right-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile: two-container layout (hidden on desktop) */
.about-hero-mobile {
    display: none;
}

.about-hero-container {
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.about-hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About mobile hero: orange band, title, lavender band (hidden on desktop) */
.about-hero-mobile-header {
    display: none;
}
.about-hero-orange-band {
    width: 100%;
    height: 48px;
    background: var(--unnamed-color-ff6830);
    position: relative;
}
.about-hero-orange-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--unnamed-color-ade1e9);
}
.about-page-mobile-title {
    font-family: 'Clash Display';
    font-size: 28px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 1.25rem 1rem;
    line-height: 1.25;
}
.about-word-underline {
    display: inline-block;
    border-bottom: 3px solid var(--unnamed-color-1c1c1c);
    padding-bottom: 2px;
}
.about-letter-strike {
    text-decoration: line-through;
}
.about-hero-lavender-band {
    width: 100%;
    height: 12px;
    background: #DBB8FF;
}

.about-hero-orange-block {
    background: #FF6600;
    flex: 1;
    position: relative;
    min-height: 200px;
    margin-bottom: 0;
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 0 100%);
}

.about-hero-blue-block {
    background: #ADD8E6;
    width: 60%;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.about-hero-text-block {
    background: var(--unnamed-color-ffffff);
    padding: 3rem 4rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.about-hero-title {
    font-family: 'Clash Display';
    font-size: 64px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.about-title-line {
    position: relative;
    display: inline-block;
}

.about-title-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--unnamed-color-1c1c1c);
    transform: translateY(-50%);
}

.about-hero-purple-block {
    background: #D8BFD8;
    flex: 1;
    min-height: 200px;
    margin-top: 0;
    clip-path: polygon(0 5%, 5% 0, 100% 0, 100% 100%, 0 100%, 0 95%);
}

/* Connects Overview Section */
.connects-overview-section {
    padding: 6rem 5rem;
    background: var(--unnamed-color-ffffff);
    width: 100%;
}

.connects-overview-container {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.connects-overview-title {
    font-family: 'Clash Display';
    font-size: 28px;
    font-weight: 300;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    line-height: 1.2;
    text-align: right;
}

.connects-overview-title h2 {
    margin: 0;
    padding: 0;
}

.connects-overview-description {
    font-family: 'Clash Grotesk';
    font-size: 20px;
    font-weight: 500;
    color: var(--unnamed-color-1c1c1c);
    line-height: 1.6;
    text-align: left;
    width: 70%;
}

.connects-overview-description p {
    margin: 0;
}

.connects-overview-blocks {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.connects-overview-block {
    flex: 1;
    padding: 3rem 2rem;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.connects-overview-block.ai-block {
    background: #99FF00;
}

.connects-overview-block.design-block {
    background: var(--unnamed-color-ffffff);
}

.connects-overview-block.music-block {
    background: #AEEEEE;
}

.connects-overview-block-content {
    font-family: 'Clash Display';
}

.connects-overview-block-content h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.connects-superscript {
    font-size: 14px;
    font-weight: 400;
    vertical-align: super;
    margin-left: 0.5rem;
    line-height: 1.2;
    display: inline-block;
}

/* Experience Insight Section */
.experience-insight-section {
    padding: 0;
    min-width: 100%;
}

.experience-insight-container {
    display: flex;
    min-width: 100%;
    min-height: 25vh;
    gap: auto;
}

.experience-insight-left {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.experience-insight-purple-top {
    background: #DBB8FF;
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--unnamed-color-ffffff);
    min-height: 250px;
}

.experience-insight-purple-top h2 {
    font-family: 'Clash Grotesk';
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    color: var(--unnamed-color-ffffff);
    text-align: left;
}

.experience-insight-orange-bottom {
    background: #FF5B22;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    color: var(--unnamed-color-ffffff);
    min-height: 100px;
}

.experience-insight-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--unnamed-color-ffffff);
    border: none;
    border-radius: 0;
    font-family: 'Clash Grotesk';
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.experience-insight-btn:hover {
    opacity: 0.8;
}

.experience-insight-purple-right {
    background: var(--main);
    width: 70%;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    color: var(--unnamed-color-1c1c1c);
    position: relative;
}

.experience-insight-purple-right p {
    font-family: 'Clash Grotesk';
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    color: var(--unnamed-color-ffffff);
    text-align: left;
    margin-top: 10%;
}

.experience-insight-cta {
    padding: 6rem 5rem;
    background: var(--unnamed-color-ffffff);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.light-purple-block {
    background: #DBB8FF;
    width: 2%;
    height: 23%;
    position: absolute;
    top: 0;
    left: 0;
}

.purple-block-bottom-right-section {
    padding-bottom: 3%;
}

.purple-block-bottom-right {
    background: var(--main);
    width: 20%;
    height: 5%;
    position: absolute;
    right: 0;
}

.experience-insight-cta h2 {
    font-family: 'Clash Display';
    font-size: 48px;
    font-weight: 600;
    color: var(--unnamed-color-1c1c1c);
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
}

.experience-insight-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--unnamed-color-1c1c1c);
    margin: 0 0 2.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-insight-register-btn {
    padding: 16px 32px;
    background: #D8BFD8;
    color: var(--unnamed-color-ffffff);
    border: none;
    border-radius: 4px;
    font-family: 'Clash Display';
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.experience-insight-register-btn:hover {
    background: #C790FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for About Page */
@media (max-width: 1024px) {
    .about-hero-container {
        flex-direction: column;
    }

    .about-hero-image,
    .about-hero-content {
        width: 100%;
    }

    .about-hero-image {
        height: 400px;
    }

    .connects-overview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .connects-overview-blocks {
        flex-direction: column;
    }

    .experience-insight-section {
        padding: 0;
    }

    .experience-insight-container {
        flex-direction: column;
    }

    .experience-insight-left,
    .experience-insight-purple-right {
        width: 100%;
    }

    .experience-insight-purple-right {
        margin-left: 0;
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .about-page-hero {
        margin-top: 70px;
        min-height: 0;
    }

    .about-hero-desktop {
        display: none;
    }

    .about-hero-mobile {
        display: block;
    }

    .about-hero-mobile-header {
        display: block;
    }

    .about-hero-container {
        min-height: 320px;
    }

    .connects-overview-section {
        padding: 3rem 1rem 4rem;
    }

    .connects-overview-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .connects-overview-title {
        font-size: 22px;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        gap: 0 0.25em;
    }

    .connects-overview-title h2 {
        display: inline;
    }

    .connects-overview-description {
        width: 100%;
        font-size: 16px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .experience-insight-section {
        padding: 0;
    }

    .experience-insight-container {
        flex-direction: column;
        min-height: 0;
    }

    .experience-insight-left {
        width: 100%;
    }

    .experience-insight-purple-top {
        padding: 2rem 1.5rem;
        min-height: 0;
    }

    .experience-insight-purple-top h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .experience-insight-orange-bottom {
        padding: 1.5rem 1rem;
        min-height: 0;
        justify-content: center;
    }

    .experience-insight-btn {
        font-size: 16px;
    }

    .experience-insight-purple-right {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .experience-insight-purple-right p {
        font-size: 15px;
        margin-top: 0;
    }

    .experience-insight-cta {
        padding: 4rem 2rem;
    }

    .experience-insight-cta h2 {
        font-size: 36px;
    }
}

/* ========== INDEX PAGE: MOBILE & TABLET (match provided PNGs) ========== */

/* Tablet: 769px–1024px */
@media (max-width: 1024px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 1.5rem;
    }
    .nav-toggle {
        display: flex;
        order: 3;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--unnamed-color-ffffff);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-menu.is-open {
        display: flex;
    }
    .nav-right {
        display: none;
    }
    .hero-overlay-mobile {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        padding: 0 1.5rem;
        text-align: center;
        pointer-events: none;
    }
    .hero-overlay-title {
        font-family: 'Clash Display', sans-serif;
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    .hero-overlay-strike {
        text-decoration: line-through;
    }
    .hero-overlay-sub {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        color: #fff;
        margin-bottom: 0.25rem;
    }
    .hero-overlay-age {
        font-size: clamp(0.65rem, 2vw, 0.8rem);
        color: #fff;
    }
    /* Hide web-view blocks; show mobile-only blocks */
    .hero-bar-desktop {
        display: none !important;
    }
    .connects-section-desktop {
        display: none !important;
    }
    .hero-bar-mobile {
        display: block;
        position: relative;
        background: transparent;
    }
    .connects-section-mobile {
        display: block !important;
    }
    /* Mobile hero bars: first in flow, second fixed at bottom */
    .hero-bar-mobile .hero-banner {
        flex: none;
    }
    .hero-bar-mobile .hero-register-bar {
        display: block;
    }
    .hero-bar-mobile .hero-join-bar {
        position: relative !important;
        background: var(--main) !important;
    }
    .hero-bar-mobile .hero-join-bar .banner-join-content {
        min-height: 90px;
        /* padding: 0 1.5rem; */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
    }
    /* Sticky bar: light purple, left = JULY 2026 / 4TH EDITION (2 lines), right = white REGISTER NOW button */
    .hero-bar-mobile .hero-register-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background: #B89AE8 !important;
    }
    .hero-bar-mobile .hero-register-bar .banner-register-content {
        padding: 12px 1rem;
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    .hero-bar-mobile .hero-register-bar .banner-sticky-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .hero-bar-mobile .hero-register-bar .banner-date-sticky {
        font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
        font-weight: 500;
        color: #ffffff;
        margin: 0;
        line-height: 1.35;
        text-transform: uppercase;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .hero-bar-mobile .hero-register-bar .banner-date-sticky .date-line-1 {
        font-size: 1rem;
    }
    .hero-bar-mobile .hero-register-bar .banner-date-sticky .date-line-2 {
        font-size: 0.85rem;
    }
    .hero-bar-mobile .hero-register-bar .register-btn-sticky {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        background: #ffffff !important;
        color: #1c1c1c !important;
        font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 16px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        white-space: nowrap;
        width: auto;
        max-width: none;
        margin: 0;
    }
    .hero-bar-mobile .hero-register-bar .register-btn-sticky img {
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
    .hero-bar-mobile .hero-join-bar .banner-join-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    .hero-bar-mobile .banner-join-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }
    .hero-bar-mobile .hero-join-bar .banner-date,
    .hero-bar-mobile .hero-join-bar .banner-left h2,
    .hero-bar-mobile .hero-join-bar .banner-left p,
    .hero-bar-mobile .hero-join-bar .banner-location {
        font-size: 12px;
        color: #ffffff;
    }
    .footer-separator-desktop {
        display: none;
    }
    /* Mobile footer: one row of colored bars (orange | light blue | purple) */
    .footer-color-bar-mobile {
        display: flex;
        flex-direction: row;
        height: 12px;
        gap: 0;
    }
    .color-bar-orange-mob {
        order: 1;
        flex: 0.2;
        height: 12px;
        width: auto;
        margin-left: 0;
        background: var(--unnamed-color-ff6830);
    }
    .color-bar-blue-mob {
        order: 2;
        flex: 1;
        height: 12px;
        width: auto;
        background: var(--unnamed-color-ade1e9);
    }
    .color-bar-purple-mob {
        order: 3;
        flex: 0.25;
        height: 12px;
        width: auto;
        margin-left: 0;
        background: var(--main);
    }
    /* Mobile footer content: center first, then logo row (Connects | Berlin logos) */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 2rem 1rem 2.5rem;
        text-align: center;
        gap: 1.5rem 1rem;
        max-width: 100%;
    }
    .footer-center {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-top: 0;
    }
    .footer-question {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    .footer-email {
        font-size: 20px;
        margin-bottom: 1rem;
    }
    .footer-copyright {
        width: 100%;
        font-size: 11px;
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    .footer-logo {
        grid-column: 1;
        grid-row: 2;
        padding-top: 0;
        justify-content: center;
        display: flex;
        align-items: center;
        height: auto;
    }
    .footer-logo img {
        max-height: 36px;
        width: auto;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-logos {
        align-items: center;
        padding-top: 0;
    }
    .footer-logos img {
        max-height: 32px;
        width: auto;
    }
}

/* Mobile: up to 768px – exact layout from PNGs */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        grid-template-columns: 1fr auto;
    }
    .nav-menu {
        top: 60px;
        padding: 1rem;
    }
    .hero-section {
        margin-top: 60px;
    }
    .hero-overlay-title {
        font-size: clamp(1rem, 5vw, 1.4rem);
    }
    .hero-bar-mobile .hero-join-bar .banner-join-content {
        min-height: 90px;
        padding: 0 1rem;
    }
    .hero-bar-mobile .hero-register-bar .banner-register-content {
        padding: 12px 1rem;
    }
    .hero-bar-mobile .banner-left h2,
    .banner-center h2 {
        font-size: 14px;
    }
    .hero-bar-mobile .banner-left p,
    .hero-bar-mobile .banner-location,
    .banner-center p {
        font-size: 12px;
    }
    .register-btn {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
    /* Connects: MOBILE HTML only (.connects-section-mobile) – web view uses .connects-section-desktop */
    .connects-section-mobile {
        /*padding: 0 0 1.5rem 0;*/
    }

        .connects-section-mobile .connects-grid {
            flex-direction: column;
            gap: 0;
        }

        .connects-section-mobile .connect-card {
            width: 100% !important;
            min-width: 100% !important;
            border-radius: 0;
            height: auto;
            min-height: auto;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

            .connects-section-mobile .connect-card[data-accordion-item] {
                cursor: pointer;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 0.5rem;
            }

                .connects-section-mobile .connect-card[data-accordion-item] .connect-content {
                    flex: 1;
                    min-width: 0;
                }

                .connects-section-mobile .connect-card[data-accordion-item]:not(.accordion-open) .connect-content {
                    flex-direction: row;
                    align-items: center;
                    gap: 0.5rem;
                }

                .connects-section-mobile .connect-card[data-accordion-item].accordion-open .connect-content {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .connects-section-mobile .connect-card[data-accordion-item].accordion-open {
                    padding: 1.5rem 1.5rem;
                }

                    .connects-section-mobile .connect-card[data-accordion-item].accordion-open .connect-description {
                        margin-top: 0.75rem;
                        display: block !important;
                        opacity: 1 !important;
                        max-width: 100% !important;
                        overflow: visible !important;
                        white-space: normal !important;
                        font-family: 'Clash Display', var(--unnamed-font-family-clash-display);
                        font-size: 14px;
                        font-weight: 500;
                        color: var(--unnamed-color-1c1c1c);
                        line-height: 1.4;
                    }

                .connects-section-mobile .connect-card[data-accordion-item] .connect-description {
                    display: none;
                }

            .connects-section-mobile .connect-card.design-connects .green-block,
            .connects-section-mobile .connect-card.music-connects .white-block {
                display: none;
            }

            .connects-section-mobile .connect-card[data-accordion-item]::after {
                content: none;
                display: none;
            }

        .connects-section-mobile .connect-accordion-arrow {
            flex-shrink: 0;
            margin-left: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease;
        }

            .connects-section-mobile .connect-accordion-arrow img,
            .connects-section .connect-card[data-accordion-item] .connect-accordion-arrow img {
                width: 24px;
                height: 24px;
                display: block;
            }

        .connects-section-mobile .connect-card[data-accordion-item].accordion-open .connect-accordion-arrow,
        .connects-section .connect-card[data-accordion-item].accordion-open .connect-accordion-arrow {
            transform: rotate(180deg);
        }

    .connects-section .connect-card[data-accordion-item]::after {
        content: none;
        display: none;
    }

    .connects-section .connect-card[data-accordion-item] .connect-accordion-arrow {
        flex-shrink: 0;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }

    .connects-section .connect-card[data-accordion-item] {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.5rem;
    }

        .connects-section .connect-card[data-accordion-item] .connect-content {
            flex: 1;
            min-width: 0;
        }
    /* Gallery section mobile */
    .gallery-section {
        padding: 3rem 1.5rem 2rem;
    }
    .gallery-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    .gallery-viewport {
        height: 320px;
    }
    .gallery-slide {
        width: 280px;
        height: 280px;
    }
    .gallery-slide.active {
        width: 320px;
        height: 320px;
    }
    .gallery-controls {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .gallery-cta {
        margin-bottom: 2rem;
    }
    /* Gallery page mobile: hero, Filter by, two-column grid, captions with blue underline */
    .gallery-page-hero {
        margin-top: 70px;
        padding: 1.5rem 1rem 1rem;
    }
    .gallery-page-hero-inner {
        padding: 0 0 1rem;
    }
    .gallery-page-title {
        font-size: 28px;
        margin-bottom: 1.25rem;
    }
    .gallery-page-hero-image-wrap {
        max-height: 55vh;
    }
    .gallery-filter-label {
        display: block;
        padding: 0 1rem;
    }
    .gallery-filter-wrap {
        padding: 0 1rem 1.5rem;
    }
    .gallery-edition-nav {
        gap: 1.5rem;
        margin-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
        padding: 0 1rem;
    }
    .gallery-edition-link {
        font-size: 15px;
        color: #999;
    }
    .gallery-edition-link.is-active {
        color: var(--unnamed-color-1c1c1c);
        font-weight: 700;
        position: relative;
    }
    .gallery-edition-link.is-active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 2px;
        background: var(--unnamed-color-ade1e9);
    }
    .gallery-categories-section {
        padding: 1rem 1rem 3rem;
    }
    .gallery-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.25rem;
    }
    .gallery-category-card {
        aspect-ratio: 4 / 3;
        display: flex;
        flex-direction: column;
    }
    .gallery-category-card .gallery-category-image {
        position: relative;
        aspect-ratio: 4 / 3;
        flex-shrink: 0;
    }
    .gallery-category-card .gallery-category-overlay {
        position: relative;
        opacity: 1;
        transform: none;
        background: transparent;
        padding: 0.5rem 0 0;
        align-items: flex-start;
    }
    .gallery-category-card .gallery-category-label {
        color: var(--unnamed-color-1c1c1c);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    .gallery-category-card .gallery-category-bar {
        background: var(--unnamed-color-ade1e9);
        height: 2px;
        width: 100%;
        max-width: 80px;
    }
    .gallery-category-empty {
        aspect-ratio: 4 / 3;
    }
    /* Gallery album page mobile: header, 3-column grid, footer bars */
    .gallery-album-header {
        margin-top: 70px;
        padding: 2rem 1rem 1.5rem;
    }
    .gallery-album-title {
        font-size: 28px;
        line-height: 1.2;
    }
    .gallery-album-section {
        padding: 0 0.5rem 2.5rem;
    }
    .gallery-album-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
        max-width: 100%;
    }
    .gallery-album-item {
        aspect-ratio: 1;
    }
    .gallery-album-footer .footer-color-bar--album {
        height: 48px;
        margin-top: 0;
    }
    .gallery-album-footer .footer-content {
        padding: 2rem 1rem 3rem;
    }
    /* Hero image / VIDEO section */
    .hero-image-section .hero-image-placeholder {
        height: 280px;
        min-height: 280px;
    }
    .hero-image-section .hero-image-placeholder img {
        height: 280px;
    }
    /* Stats: side by side, 35px Semi bold numbers, 12px Medium labels, Clash Display */
    .stats-section {
        padding: 2rem 1rem;
    }
    .stats-container {
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 1rem 2rem;
    }
    .stat-divider {
        display: block;
        width: 1px;
        height: 20px;
        min-width: 1px;
        flex-shrink: 0;
        background: rgba(28, 28, 28, 0.2);
    }
    .stat-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .stat-number {
        font-family: 'Clash Display';
        font-size: 35px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 4px;
    }

    .stat-label {
        font-family: 'Clash Display';
        font-size: 12px;
        font-weight: 500;
        margin: 0;
    }
    .stats-bars-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    .stats-bar {
        height: 10px;
    }
    .stats-bar-blue {
        width: 88%;
        background: var(--unnamed-color-ade1e9);
    }
    .stats-bar-green {
        width: 55%;
        background: var(--unnamed-color-d2fc59);
    }
    .separator-container:has(.separator-image) {
        margin-top: 1rem;
    }
    /* Workshops mobile: single column, consistent margins */
    .workshops-section {
        padding: 3rem 1.5rem 4rem;
    }
    .workshops-section .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    .workshops-section .section-title br {
        display: none;
    }
    .workshops-grid {
        max-width: 100%;
        margin: 0 auto 2rem;
        gap: 1.5rem;
    }
    .workshop-card {
        max-width: 100%;
    }
    .explore-all-btn {
        width: 100%;
        max-width: 100%;
    }
    /* Experience: lime green, four stacked white cards with badges */
    .experience-section {
        padding: 2rem 1.5rem 3rem;
    }
    .experience-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .experience-grid {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        max-width: 100%;
        margin: 0 auto;
    }
    .experience-card {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        margin-top: 0;
    }
    .experience-card:nth-child(1),
    .experience-card:nth-child(2),
    .experience-card:nth-child(3),
    .experience-card:nth-child(4) {
        width: 100%;
        grid-column: auto;
        grid-row: auto;
    }
    .experience-card h3 {
        font-size: 1.1rem;
        padding: 3rem 1.25rem 0.5rem;
        margin: 0 0 0.5rem 0;
    }
    .experience-card p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
    .card-number {
        font-size: 1rem;
    }
    .card-arrow {
        width: 32px;
        height: 32px;
    }
    /* Testimonials mobile - centered like gallery (same padding, centered viewport) */
    .testimonials-section {
        padding: 3rem 1.5rem 2.5rem;
        text-align: center;
        visibility: visible;
        opacity: 1;
    }
    .testimonials-inner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        visibility: visible;
    }
    .testimonials-header .section-title {
        font-size: 1.35rem;
    }
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    .testimonial-card {
        width: min(100%, 340px);
        margin: 0 auto;
        height: auto;
        min-height: 200px;
        padding: 1.5rem 1.25rem;
    }
    .testimonial-card.active {
        opacity: 1 !important;
    }
    .testimonial-card:not(.active) {
        opacity: 1;
    }
    .testimonial-content {
        height: auto;
    }
    .testimonial-card.active .testimonial-content,
    .testimonial-card.active .testimonial-source,
    .testimonial-card.active .testimonial-title,
    .testimonial-card.active .testimonial-text {
        opacity: 1 !important;
        color: #1c1c1c;
    }
    .testimonial-card.active .testimonial-source {
        color: #5a3d7a;
        font-weight: 600;
    }
    .testimonial-card.active .testimonial-title {
        color: #1c1c1c;
        font-weight: 700;
    }
    .testimonial-card.active .testimonial-text {
        color: #1c1c1c;
        font-weight: 500;
    }
    .testimonial-card.active .quote-mark {
        opacity: 1 !important;
        color: #1c1c1c !important;
    }
    .testimonial-text {
        overflow: visible;
        text-overflow: unset;
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        -webkit-box-orient: unset;
        flex: none;
        padding-left: 2.5rem;
        font-size: 14px;
        line-height: 1.7;
    }
    .quote-mark {
        top: 4.5rem;
        left: 1.25rem;
        font-size: 60px;
    }
    .testimonials-viewport {
        height: auto;
        min-height: 280px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        overflow: visible;
        visibility: visible;
    }
    .testimonials-track {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    .testimonial-nav-btn img {
        width: 40px;
        height: 40px;
    }
}

