nav.fixed > .glass-panel {
    overflow: visible;
}

.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;
}

.curtis-careers .deamon-careers-form-panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.curtis-careers .deamon-careers-form-panel__lead {
  margin: 0 0 1.25rem;
  color: rgba(11, 11, 11, 0.55);
  font-size: 0.95rem;
  line-height: 1.55;
}

.curtis-careers .deamon-careers-form {
  display: grid;
  gap: 0.95rem;
}

.curtis-careers .deamon-careers-field label,
.curtis-careers .deamon-careers-field__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.curtis-careers .deamon-careers-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 44px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.curtis-careers .deamon-careers-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #0B0B0B;
}

.curtis-careers .deamon-careers-check a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.curtis-careers .deamon-careers-field input:not([type="file"]):not([type="checkbox"]),
.curtis-careers .deamon-careers-field textarea,
.curtis-careers .deamon-careers-field select {
  width: 100%;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
}

.curtis-careers .deamon-careers-field input:not([type="file"]):not([type="checkbox"]):focus,
.curtis-careers .deamon-careers-field textarea:focus,
.curtis-careers .deamon-careers-field select:focus {
  outline: none;
  border-color: rgba(11, 11, 11, 0.4);
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}

.curtis-careers .deamon-careers-field__help,
.curtis-careers .deamon-careers-error {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
}

.curtis-careers .deamon-careers-error {
  color: #9f1239;
}

.curtis-careers .deamon-careers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: #0B0B0B;
  color: #F6F1E8;
  font-weight: 600;
  cursor: pointer;
}

.curtis-careers .deamon-careers-btn:hover {
  background: #1a1a1a;
}

.curtis-careers .deamon-careers-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.glass-card.curtis-contact-form-card,
.glass-card:has(.curtis-contact-form) {
  overflow: visible;
}

.glass-card.curtis-contact-form-card:hover,
.glass-card:has(.curtis-contact-form):hover {
  transform: none;
}

.curtis-contact-form,
.curtis-contact-form .contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.curtis-contact-form .col-12,
.curtis-contact-form .form-group,
.curtis-contact-form .w-100,
.curtis-contact-form .custom-select,
.curtis-contact-form .curtis-contact-form__control {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.curtis-contact-form .form-group > label,
.curtis-contact-form .contact-form-label {
  display: block;
  width: 100%;
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0B0B0B;
  line-height: 1.35;
}

.curtis-contact-form input:not([type="hidden"]):not([type="checkbox"]):not([type="file"]):not([type="radio"]):not([name="_hp_url"]),
.curtis-contact-form select,
.curtis-contact-form textarea,
.curtis-contact-form input.w-100,
.curtis-contact-form select.w-100,
.curtis-contact-form textarea.w-100,
.curtis-contact-form input.curtis-contact-form__control,
.curtis-contact-form select.curtis-contact-form__control,
.curtis-contact-form textarea.curtis-contact-form__control {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: #0B0B0B;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.curtis-contact-form textarea,
.curtis-contact-form textarea.w-100,
.curtis-contact-form textarea.curtis-contact-form__control {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.5;
}

.curtis-contact-form input:not([type="hidden"]):not([type="checkbox"]):not([type="file"]):not([type="radio"]):not([name="_hp_url"]):focus,
.curtis-contact-form select:focus,
.curtis-contact-form textarea:focus,
.curtis-contact-form input.w-100:focus,
.curtis-contact-form select.w-100:focus,
.curtis-contact-form textarea.w-100:focus,
.curtis-contact-form input.curtis-contact-form__control:focus,
.curtis-contact-form select.curtis-contact-form__control:focus,
.curtis-contact-form textarea.curtis-contact-form__control:focus {
  outline: none;
  border-color: rgba(11, 11, 11, 0.4);
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}

.curtis-contact-form input[name="_hp_url"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.curtis-contact-form .checkbox-inline,
.curtis-contact-form .check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 44px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.curtis-contact-form .checkbox-inline input,
.curtis-contact-form .check-row input,
.curtis-contact-form .contact-form-chip input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #0B0B0B;
}

.curtis-contact-form .contact-form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.curtis-contact-form .contact-form-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.9rem;
  font-size: 0.86rem;
}

.curtis-contact-form .contact-form-file {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(11, 11, 11, 0.2);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.9rem;
  cursor: pointer;
}

.curtis-contact-form .contact-form-file-hint,
.curtis-contact-form .contact-form-privacy {
  display: block;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(11, 11, 11, 0.55);
}

.glass-card .contact-form-error,
.glass-card .contact-form-success,
.curtis-contact-form-card .contact-form-error,
.curtis-contact-form-card .contact-form-success {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.glass-card .contact-form-error,
.curtis-contact-form-card .contact-form-error {
  color: #9f1239;
  background: rgba(159, 18, 57, 0.08);
  border: 1px solid rgba(159, 18, 57, 0.18);
}

.glass-card .contact-form-success,
.curtis-contact-form-card .contact-form-success {
  color: #14532d;
  background: rgba(20, 83, 45, 0.08);
  border: 1px solid rgba(20, 83, 45, 0.16);
}

.glass-card .contact-form-error ul,
.curtis-contact-form-card .contact-form-error ul {
  margin: 0;
  padding-left: 1.1rem;
}

.curtis-contact-form .btn-primary,
.curtis-contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
}

@media (min-width: 640px) {
  .curtis-contact-form .btn-primary,
  .curtis-contact-form button[type="submit"] {
    width: auto;
    min-width: 10rem;
  }
}

@media (max-width: 767px) {
  .curtis-contact-form,
  .curtis-contact-form .contact-form-row,
  .curtis-contact-form .col-12,
  .curtis-contact-form .form-group {
    width: 100%;
    max-width: 100%;
  }

  .curtis-contact-form input:not([type="hidden"]):not([type="checkbox"]):not([type="file"]):not([type="radio"]):not([name="_hp_url"]),
  .curtis-contact-form select,
  .curtis-contact-form textarea {
    font-size: 16px;
  }
}

.curtis-careers-prose h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.curtis-careers-prose ul {
  margin: 0.6rem 0 1rem;
  padding-left: 1.15rem;
}

.curtis-careers-prose li {
  margin: 0.35rem 0;
}

.curtis-careers-prose p {
  margin: 0 0 0.9rem;
}

.curtis-job-card {
  min-height: 100%;
}

.curtis-attachments {
  margin: 0.25rem 0 0;
  padding: 0.85rem 0 0;
  border: 0;
  border-top: 1px solid rgba(11, 11, 11, 0.08);
  display: grid;
  gap: 0.75rem;
}

.curtis-attachments__legend {
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.45);
}

.curtis-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.7rem 0.85rem;
  border: 1px dashed rgba(11, 11, 11, 0.18);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.curtis-dropzone:hover,
.curtis-dropzone.is-dragover {
  border-color: rgba(11, 11, 11, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.06);
}

.curtis-dropzone:has(:focus-visible) {
  border-color: #0B0B0B;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.16);
}

.curtis-dropzone.is-filled {
  border-style: solid;
  border-color: rgba(11, 11, 11, 0.22);
}

.curtis-dropzone__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.curtis-dropzone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 11, 0.14);
  background: rgba(246, 241, 232, 0.9);
  color: #0B0B0B;
}

.curtis-dropzone.is-filled .curtis-dropzone__icon {
  border-color: rgba(11, 11, 11, 0.28);
  background: #0B0B0B;
  color: #F6F1E8;
}

.curtis-dropzone__body {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.curtis-dropzone__title {
  font-size: 0.86rem;
  font-weight: 600;
}

.curtis-dropzone__hint,
.curtis-dropzone__file {
  font-size: 0.75rem;
  color: rgba(11, 11, 11, 0.5);
}

.curtis-dropzone__file:not(:empty) {
  color: #0B0B0B;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.curtis-dropzone__clear {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 0.55rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  color: #0B0B0B;
}

.curtis-legal {
  padding: 8rem 1.5rem 5rem;
}

.curtis-legal__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.curtis-legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.curtis-legal h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.55rem;
}

.curtis-legal p,
.curtis-legal li {
  color: rgba(11, 11, 11, 0.68);
  line-height: 1.65;
}

.curtis-legal ul {
  padding-left: 1.15rem;
  margin: 0.4rem 0 1rem;
}

.curtis-nav-dropdown {
  position: relative;
}

.curtis-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.curtis-nav-chevron {
  transition: transform 0.2s ease;
}

.curtis-nav-dropdown.is-open .curtis-nav-chevron,
.curtis-nav-dropdown:hover .curtis-nav-chevron,
.curtis-nav-dropdown:focus-within .curtis-nav-chevron,
.curtis-nav-disclosure[open] .curtis-nav-chevron {
  transform: rotate(180deg);
}

.curtis-nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 11.5rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 70;
}

.curtis-nav-dropdown.is-open .curtis-nav-dropdown__menu,
.curtis-nav-dropdown:hover .curtis-nav-dropdown__menu,
.curtis-nav-dropdown:focus-within .curtis-nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.curtis-nav-dropdown__link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.curtis-nav-dropdown__link:hover {
  background: rgba(11, 11, 11, 0.05);
}

.curtis-nav-disclosure {
  width: 100%;
}

.curtis-nav-disclosure__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}

.curtis-nav-disclosure__summary::-webkit-details-marker {
  display: none;
}

.curtis-nav-disclosure__panel {
  display: flex;
  flex-direction: column;
  padding-left: 0.75rem;
}

.curtis-careers-filter {
  position: relative;
}

.curtis-careers-filter__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #0B0B0B;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.curtis-careers-filter__badge {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #0B0B0B;
  color: #F6F1E8;
  font-size: 0.7rem;
  line-height: 1.15rem;
  text-align: center;
}

.curtis-careers-filter__panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(22rem, calc(100vw - 2.5rem));
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  z-index: 40;
  display: grid;
  gap: 1rem;
}

.curtis-careers-filter__panel[hidden],
.curtis-combobox__menu[hidden] {
  display: none !important;
}

.curtis-careers-filter__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.45);
}

.curtis-careers-filter__clear {
  border: 0;
  background: none;
  padding: 0.35rem 0 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  color: #0B0B0B;
}

.curtis-combobox {
  position: relative;
}

.curtis-combobox__trigger,
.curtis-combobox__search {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(246, 241, 232, 0.55);
  font: inherit;
  font-size: 0.9rem;
}

.curtis-combobox__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left;
}

.curtis-combobox__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  padding: 0.45rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.curtis-combobox__list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  max-height: 11rem;
  overflow: auto;
}

.curtis-combobox__list button {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  padding: 0.5rem 0.6rem;
  border-radius: 0.6rem;
  font: inherit;
  cursor: pointer;
}

.curtis-combobox__list button:hover,
.curtis-combobox__list button.is-active {
  background: rgba(11, 11, 11, 0.06);
}

.curtis-combobox__empty {
  margin: 0.4rem 0.2rem 0;
  font-size: 0.8rem;
  color: rgba(11, 11, 11, 0.5);
}

.curtis-range__values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.curtis-range__slider {
  position: relative;
  height: 44px;
}

.curtis-range__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.12);
}

.curtis-range__fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 999px;
  background: #0B0B0B;
}

.curtis-range__slider input[type="range"] {
  position: absolute;
  left: 0;
  width: 100%;
  top: 12px;
  height: 20px;
  margin: 0;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.curtis-range__slider input[type="range"]:last-of-type {
  z-index: 2;
}

.curtis-range__slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B0B0B;
  border: 2px solid #F6F1E8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.curtis-range__slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B0B0B;
  border: 2px solid #F6F1E8;
  cursor: pointer;
}

@media (max-width: 767px) {
  .curtis-careers {
    padding-top: 7.5rem;
  }
}
