.glass-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(11, 11, 11, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 11, 11, 0.06);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(11, 11, 11, 0.12);
}

.btn-primary {
    background-color: #0B0B0B;
    color: #F6F1E8;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #0B0B0B;
    border: 1px solid rgba(11, 11, 11, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(11, 11, 11, 0.3);
    transform: scale(0.98);
}

/* Custom Styles & Glassmorphism */
body {
    background-color: #F6F1E8;
    color: #0B0B0B;
    overflow-x: hidden;
}

::selection {
    background-color: #0B0B0B;
    color: #F6F1E8;
}

/* Ambient Background Blurs */
.ambient-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Lenis Smooth Scroll */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Horizontal Scroll Container */
.pin-wrap-sticky {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pin-wrap {
    display: flex;
    gap: 2rem;
    padding: 0 5vw;
}

.text-gradient {
    background: linear-gradient(to right, #0B0B0B, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Curtis theme — page-specific */
.filter-btn.active {
            background-color: #0B0B0B;
            color: #F6F1E8;
            border-color: transparent;
        }
        .filter-btn {
            white-space: nowrap;
        }
        .project-card {
            transition: all 0.4s ease;
        }

/* Curtis layout helpers */
.curtis-site { min-height: 100vh; }
.curtis-mobile-nav { display: none; }
.curtis-mobile-nav.is-open { display: flex; }
@media (max-width: 767px) {
  .curtis-desktop-nav { display: none !important; }
  .curtis-mobile-toggle { display: inline-flex !important; }
}
@media (min-width: 768px) {
  .curtis-mobile-toggle { display: none !important; }
  .curtis-mobile-nav { display: none !important; }
}

/* Locale select — matches glass pill header */
.curtis-locale {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.curtis-locale__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.curtis-locale__select {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0.4rem 1.75rem 0.4rem 0.85rem;
  min-width: 6.5rem;
  max-width: 11rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.55);
  color: #0B0B0B;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.curtis-locale__select:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(11, 11, 11, 0.22);
}
.curtis-locale__select:focus {
  outline: none;
  border-color: rgba(11, 11, 11, 0.35);
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}
.curtis-locale__chevron {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(11, 11, 11, 0.55);
  display: inline-flex;
}
.curtis-mobile-nav .curtis-locale {
  width: 100%;
}
.curtis-mobile-nav .curtis-locale__select {
  width: 100%;
  max-width: none;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
}
